:root {
    --bg-primary: #030414;
    --bg-secondary: #07112b;
    --accent-green: #4effc8;
    --accent-cyan: #2ae0ff;
    --accent-blue: #3456ff;
    --card-gradient: linear-gradient(135deg, rgba(4, 18, 56, 0.95), rgba(17, 52, 110, 0.75));
    --card-border: linear-gradient(120deg, rgba(74, 255, 196, 0.8), rgba(60, 132, 255, 0.75));
    --text-primary: #f2f6ff;
    --text-secondary: rgba(209, 220, 255, 0.72);
    --shadow-heavy: 0 22px 65px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(120% 140% at 10% 10%, rgba(46, 82, 255, 0.22) 0%, transparent 65%),
                radial-gradient(90% 140% at 90% 10%, rgba(74, 255, 200, 0.16) 0%, transparent 70%),
                radial-gradient(120% 140% at 50% 110%, rgba(18, 60, 140, 0.42) 0%, transparent 65%),
                var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.78)),
        repeating-linear-gradient(90deg,
            rgba(67, 239, 202, 0.08) 0px,
            rgba(67, 239, 202, 0.08) 3px,
            transparent 3px,
            transparent 14px);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background:
        repeating-linear-gradient(90deg,
            transparent 0,
            transparent 18px,
            rgba(12, 46, 86, 0.9) 18px,
            rgba(12, 46, 86, 0.9) 24px);
    opacity: 0.35;
    transform: skewY(-6deg);
    animation: equalizer 10s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.page-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    width: 100%;
    padding: 3rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
    backdrop-filter: blur(6px);
}

.brand img {
    width: min(260px, 60vw);
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.25));
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: min(1200px, 100%);
}

.player-card {
    position: relative;
    width: min(1200px, 100%);
    padding: 1.25rem;
    border-radius: 22px;
    background: rgba(6, 16, 39, 0.72);
    border: 1px solid rgba(66, 221, 255, 0.22);
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
}

.player-card::before,
.player-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: var(--card-gradient);
    z-index: 0;
}

.player-card::after {
    position: absolute;
    inset: -30%;
    border-radius: 50%;
    background: radial-gradient(circle at 20% 20%, rgba(74, 255, 200, 0.35), transparent 55%),
                radial-gradient(circle at 80% 40%, rgba(52, 120, 255, 0.35), transparent 60%);
    opacity: 0.45;
    filter: blur(18px);
}

.player-card iframe {
    position: relative;
    z-index: 1;
    box-shadow: 0 18px 40px rgba(0, 25, 70, 0.45);
}

.message h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    margin: 0 0 0.6rem;
}

.message p {
    margin: 0;
    max-width: 640px;
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 2.4vw, 1.1rem);
    line-height: 1.6;
}

.social {
    width: 100%;
}

.social h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    font-weight: 600;
    letter-spacing: 0.03em;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    width: 100%;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 0.95rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 12px 28px rgba(1, 7, 22, 0.4);
}

.social-links a:hover,
.social-links a:focus-visible {
    transform: translateY(-6px);
    background: linear-gradient(120deg, rgba(64, 255, 176, 0.35), rgba(0, 194, 255, 0.28));
    box-shadow: 0 20px 40px rgba(0, 22, 60, 0.6);
}

.social-links .icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(64, 255, 176, 0.25), rgba(0, 185, 255, 0.3));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-note {
    margin-top: auto;
    font-size: 0.85rem;
    color: rgba(220, 230, 255, 0.5);
}

.footer-note p {
    margin: 0;
    letter-spacing: 0.04em;
}

@keyframes equalizer {
    0% {
        transform: skewY(-6deg) translateX(0);
    }
    100% {
        transform: skewY(-6deg) translateX(-24px);
    }
}

@media (max-width: 720px) {
    .page-wrapper {
        padding: 2.5rem 1rem 1.5rem;
    }

    .player-card {
        padding: 0.9rem;
    }

    .social-links {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

