@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
    background: #020617;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 10% 10%, #7c3aed 0%, transparent 28%),
        radial-gradient(circle at 90% 80%, #06b6d4 0%, transparent 32%),
        radial-gradient(circle at 50% 50%, #1e40af 0%, transparent 28%),
        linear-gradient(135deg, #020617, #0f172a, #020617);
    z-index: -3;
    animation: bgMove 12s ease-in-out infinite alternate;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 42px 42px;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
    z-index: -2;
}

.wrapper {
    width: 100%;
    padding: 60px 20px 30px;
}

.title-card {
    max-width: 620px;
    margin: 0 auto 55px;
    padding: 32px 30px;
    text-align: center;
    border-radius: 30px;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow:
        0 0 35px rgba(56, 189, 248, 0.22),
        inset 0 0 25px rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    animation: turun 1s ease forwards;
    animation: fadeDown 1s ease forwards;
}

.title-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(120deg, #38bdf8, #a855f7, #facc15, #38bdf8);
    background-size: 300%;
    z-index: -1;
    filter: blur(14px);
    opacity: 0.65;
    animation: borderGlow 5s linear infinite;
}

/* .title-card h1 {
    font-size: 46px;
    font-weight: 900;
    letter-spacing: 9px;
    background: linear-gradient(90deg, #facc15, #67e8f9, #818cf8, #f472b6);
    background-size: 300%;
    -webkit-text-fill-color: transparent;
    animation: textGlow 4s linear infinite;
    text-shadow: 0 0 25px rgba(56, 189, 248, 0.25);
} */

.container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 45px;
}

.card {
    width: 355px;
    min-height: 610px;
    padding: 34px;
    border-radius: 34px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.16),
        rgba(15, 23, 42, 0.76)
    );
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.45),
        inset 0 0 30px rgba(255, 255, 255, 0.04);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.5s ease;
    animation: muncul 1s ease forwards;
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    animation: fadeUp 0.8s ease forwards;
}

.card::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    top: -85px;
    right: -85px;
    border-radius: 50%;
    background: linear-gradient(135deg, #38bdf8, #8b5cf6, #ec4899);
    opacity: 0.5;
    transition: 0.6s ease;
}

.card::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 34px;
    background: linear-gradient(120deg, transparent, rgba(56,189,248,0.45), transparent);
    transform: translateX(-120%);
    transition: 0.8s ease;
}

.card:hover {
    transform: translateY(-20px) scale(1.035);
    box-shadow:
        0 35px 95px rgba(56, 189, 248, 0.35),
        0 0 55px rgba(168, 85, 247, 0.25);
        transform: translateY(-20px) scale(1.05);
}

.card:hover::before {
    transform: scale(1.5) rotate(45deg);
    opacity: 0.75;
}

.card:hover::after {
    transform: translateX(120%);
}

.card img {
    width: 165px;
    height: 165px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.92);
    box-shadow:
        0 0 25px rgba(56, 189, 248, 0.95),
        0 0 55px rgba(168, 85, 247, 0.45);
    position: relative;
    z-index: 2;
    transition: 0.5s ease;
    animation: floatFoto 4s ease-in-out infinite;
}

.card:hover img {
    transform: scale(1.12) rotate(4deg);
    box-shadow:
        0 0 35px rgba(250, 204, 21, 0.95),
        0 0 70px rgba(56, 189, 248, 0.8);
}

.card h3 {
    margin: 26px 0 22px;
    font-size: 23px;
    font-weight: 800;
    color: #f8fafc;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

.info {
    text-align: left;
    position: relative;
    z-index: 2;
}

.info p {
    margin: 14px 0;
    padding: 13px 15px;
    border-radius: 17px;
    font-size: 14px;
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.025);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.info p::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(56,189,248,0.25), transparent);
    opacity: 0;
    transition: 0.35s ease;
}

.info p:hover {
    transform: translateX(10px) scale(1.02);
    border-color: rgba(56, 189, 248, 0.55);
    box-shadow: 0 0 22px rgba(56, 189, 248, 0.18);
}

.info p:hover::before {
    opacity: 1;
}

.info i {
    width: 28px;
    margin-right: 9px;
    font-size: 18px;
    color: #38bdf8;
    transition: 0.38s ease;
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.75));
    position: relative;
    z-index: 2;
}

.info p:hover i {
    color: #facc15;
    transform: rotate(360deg) scale(1.28);
    filter: drop-shadow(0 0 10px rgba(250, 204, 21, 0.85));
}

.info b,
.info span {
    position: relative;
    z-index: 2;
}

.info b {
    color: #ffffff;
}
.btn-back {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 30px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: #020617;
    background: linear-gradient(135deg, #facc15, #38bdf8, #a78bfa);
    background-size: 250%;
    animation: tombolGlow 3s linear infinite;
    transition: 0.3s ease;
}

.btn-back:hover {
    transform: translateY(-5px) scale(1.05);
}

@keyframes muncul {
    from {
        opacity: 0;
        transform: translateY(55px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes turun {
    from {
        opacity: 0;
        transform: translateY(-45px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bgMove {
    from {
        filter: hue-rotate(0deg);
        transform: scale(1);
    }
    to {
        filter: hue-rotate(25deg);
        transform: scale(1.08);
    }
}

@keyframes borderGlow {
    from {
        background-position: 0%;
    }
    to {
        background-position: 300%;
    }
}

@keyframes textGlow {
    from {
        background-position: 0%;
    }
    to {
        background-position: 300%;
    }
}

@keyframes floatFoto {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
}

@keyframes tombolGlow {
    from {
        background-position: 0%;
    }
    to {
        background-position: 250%;
    }
}
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .title-card {
        max-width: 92%;
        padding: 25px 18px;
    }

    .title-card h1 {
        font-size: 32px;
        letter-spacing: 5px;
    }

    .card {
        width: 92%;
        min-height: auto;
    }

    .container {
        gap: 32px;
    }
}
.music-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 120px;
    height: 120px;
    z-index: 9999;
    cursor: pointer;
    animation: zoomIn 1s ease forwards;
    opacity: 0;
}

@keyframes zoomIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


.disc {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        conic-gradient(
            from 0deg,
            #050505,
            #222,
            #050505,
            #111,
            #333,
            #050505
        );
    box-shadow: 0 0 30px #38bdf8;
    animation: spin 2s linear infinite;
}
.disc::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background: #38bdf8;
    border-radius: 50%;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px #38bdf8;
}

.disc::after {
    content: "";
    position: absolute;
    width: 55px;
    height: 6px;
    background: linear-gradient(90deg, #facc15, #38bdf8);
    border-radius: 999px;
    top: 35px;
    left: 25px;
    transform: rotate(35deg);
    box-shadow: 0 0 12px #38bdf8;
}

.center {
    position: absolute;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #facc15, #38bdf8);
    border-radius: 50%;
    top: 44px;
    left: 44px;
    box-shadow: 0 0 15px #38bdf8;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.card:nth-child(1) {
    animation-delay: 0.3s;
}

.card:nth-child(2) {
    animation-delay: 0.6s;
}

.card:nth-child(3) {
    animation-delay: 0.9s;
}
