* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand: #00c7b7;
    --brand-soft: #22d3ee;
    --brand-deep: #075e58;
    --accent: #61cb2b;
    --danger: #ff315e;
    --paper: #ffffff;
    --dark-bg: #030706;
    --panel: rgba(7, 15, 14, 0.78);
    --panel-strong: rgba(8, 18, 17, 0.9);
    --text-primary: #ffffff;
    --text-secondary: #b9c9c6;
    --border: rgba(0, 199, 183, 0.24);
    --shadow: 0 10px 34px rgba(0, 0, 0, 0.48);
    --gradient: linear-gradient(135deg, var(--brand) 0%, var(--brand-soft) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    min-height: 100vh;
    color: var(--text-primary);
    background: var(--dark-bg);
    overflow-x: hidden;
}

.animated-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background-image: url("images/background.png?v=20260430");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.animated-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 7, 6, 0.62) 0%, rgba(3, 7, 6, 0.76) 52%, rgba(3, 7, 6, 0.9) 100%),
        radial-gradient(circle at 50% 0%, rgba(0, 199, 183, 0.14), transparent 44%);
    backdrop-filter: blur(1px);
    z-index: 1;
}

.gradient-layer {
    position: absolute;
    width: 150%;
    height: 150%;
    left: -25%;
    top: -25%;
    background:
        radial-gradient(circle at 20% 35%, rgba(0, 199, 183, 0.16) 0%, transparent 38%),
        radial-gradient(circle at 78% 70%, rgba(97, 203, 43, 0.1) 0%, transparent 34%),
        radial-gradient(circle at 58% 18%, rgba(255, 49, 94, 0.08) 0%, transparent 30%);
    animation: drift 20s ease-in-out infinite;
    z-index: 2;
}

.particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.12) 0%, transparent 1.6%),
        radial-gradient(circle at 84% 74%, rgba(255, 255, 255, 0.08) 0%, transparent 1.8%),
        radial-gradient(circle at 44% 42%, rgba(0, 199, 183, 0.14) 0%, transparent 1.4%),
        radial-gradient(circle at 74% 16%, rgba(97, 203, 43, 0.1) 0%, transparent 1.7%);
    opacity: 0.85;
    z-index: 3;
}

@keyframes drift {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(3%, -2%, 0) rotate(2deg);
    }
}

.container {
    position: relative;
    z-index: 1;
    width: min(100%, 840px);
    margin: 0 auto;
    padding: 2rem 1.2rem 0;
}

.hero {
    text-align: center;
    padding: 1.4rem 0 0.6rem;
}

.profile-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.4rem;
}

.profile-image {
    width: 148px;
    height: 148px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid transparent;
    background:
        linear-gradient(var(--dark-bg), var(--dark-bg)) padding-box,
        var(--gradient) border-box;
    box-shadow:
        0 0 34px rgba(0, 199, 183, 0.48),
        0 0 72px rgba(0, 199, 183, 0.18);
    animation: logoGlow 3.2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%,
    100% {
        box-shadow:
            0 0 34px rgba(0, 199, 183, 0.48),
            0 0 72px rgba(0, 199, 183, 0.18);
    }

    50% {
        box-shadow:
            0 0 44px rgba(34, 211, 238, 0.58),
            0 0 88px rgba(0, 199, 183, 0.26);
    }
}

.status-indicator {
    position: absolute;
    right: 4px;
    bottom: 12px;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.34rem 0.72rem;
    border-radius: 999px;
    color: var(--paper);
    background: #2f3433;
    box-shadow: 0 5px 18px rgba(47, 52, 51, 0.45);
    font-size: 0.74rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.status-indicator:focus-visible {
    outline: 2px solid var(--paper);
    outline-offset: 3px;
}

.status-indicator.is-live {
    background: linear-gradient(135deg, #ff0048 0%, var(--danger) 100%);
    box-shadow: 0 5px 18px rgba(255, 49, 94, 0.55);
}

.status-indicator.is-offline {
    background: #2f3433;
    box-shadow: 0 5px 18px rgba(47, 52, 51, 0.45);
}

.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--paper);
}

.status-indicator.is-live .pulse {
    animation: pulse 1.4s ease-in-out infinite;
}

.status-indicator.is-offline .pulse {
    opacity: 0.5;
    animation: none;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.58;
        transform: scale(0.82);
    }
}

.name {
    margin-bottom: 0.42rem;
    font-size: 2.48rem;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.section-title {
    position: relative;
    margin: 1.15rem 0 1.15rem;
    padding-bottom: 0.76rem;
    color: var(--paper);
    text-align: center;
    font-size: 1.45rem;
    line-height: 1.2;
    font-weight: 800;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 68px;
    height: 3px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: var(--gradient);
    box-shadow: 0 0 16px rgba(0, 199, 183, 0.42);
}

.section-title:empty {
    margin: 0.65rem 0 0.75rem;
    padding-bottom: 0;
}

.section-title:empty::after {
    display: none;
}

.links-grid {
    display: grid;
    gap: 0.78rem;
}

.link-card,
.metric-card,
.sponsor-card,
.contact-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.link-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-height: 68px;
    padding: 0.88rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.link-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 -120%;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 199, 183, 0.12), transparent);
    transition: left 0.45s ease;
}

.link-card:hover::before,
.link-card:focus-visible::before {
    left: 120%;
}

.link-card:hover,
.link-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(0, 199, 183, 0.58);
    box-shadow: 0 12px 38px rgba(0, 199, 183, 0.22);
    outline: none;
}

.link-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    font-size: 1.26rem;
    background: rgba(255, 255, 255, 0.06);
}

.link-card.discord .link-icon {
    color: #5865f2;
    background: rgba(88, 101, 242, 0.18);
}

.link-card.kick .link-icon {
    color: #61cb2b;
    background: rgba(97, 203, 43, 0.18);
}

.link-card.twitch .link-icon {
    color: #9146ff;
    background: rgba(145, 70, 255, 0.18);
}

.link-card.instagram .link-icon {
    color: #e1306c;
    background: rgba(225, 48, 108, 0.18);
}

.link-card.twitter .link-icon {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.11);
}

.link-card.youtube .link-icon {
    color: #ff0033;
    background: rgba(255, 0, 51, 0.17);
}

.link-card.reddit .link-icon {
    color: #ff4500;
    background: rgba(255, 69, 0, 0.17);
}

.link-content {
    flex: 1;
    min-width: 0;
}

.link-content h3 {
    margin-bottom: 0.12rem;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 800;
}

.link-content p {
    color: var(--text-secondary);
    font-size: 0.86rem;
    line-height: 1.35;
}

.link-arrow {
    color: var(--text-secondary);
    font-size: 1rem;
    opacity: 0.58;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.link-card:hover .link-arrow,
.link-card:focus-visible .link-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.section-separator {
    width: min(100%, 520px);
    height: 1px;
    margin: 1.45rem auto 0.85rem;
    background: linear-gradient(90deg, transparent, rgba(0, 199, 183, 0.78), transparent);
    box-shadow: 0 0 16px rgba(0, 199, 183, 0.28);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.45rem;
}

.metric-card {
    position: relative;
    padding: 1.45rem 1rem;
    text-align: center;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.metric-card::before {
    content: "";
    position: absolute;
    inset: -60% -30%;
    background: radial-gradient(circle, rgba(0, 199, 183, 0.12) 0%, transparent 62%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 199, 183, 0.52);
    box-shadow: 0 12px 38px rgba(0, 199, 183, 0.2);
}

.metric-card:hover::before {
    opacity: 1;
}

.metric-icon {
    position: relative;
    margin-bottom: 0.85rem;
    color: var(--brand-soft);
    font-size: 2rem;
    filter: drop-shadow(0 0 10px currentColor);
}

.metric-card[data-platform="followers"] .metric-icon {
    color: var(--accent);
}

.metric-card[data-platform="viewers"] .metric-icon {
    color: var(--brand-soft);
}

.metric-value {
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.24rem;
    margin-bottom: 0.42rem;
    font-size: 2.1rem;
    line-height: 1;
    font-weight: 800;
}

.counter {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.suffix {
    color: var(--text-secondary);
    font-size: 1.36rem;
    font-weight: 800;
}

.metric-label {
    position: relative;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.3;
    font-weight: 700;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.45rem;
}

.sponsor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.15rem;
    padding: 1.5rem 1.25rem;
    color: var(--text-primary);
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.sponsor-card:hover,
.sponsor-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(97, 203, 43, 0.72);
    box-shadow: 0 12px 38px rgba(97, 203, 43, 0.2);
    outline: none;
}

.sponsor-card {
    background: linear-gradient(135deg, rgba(97, 203, 43, 0.08) 0%, var(--panel-strong) 100%);
}

.sponsor-logo {
    width: 94px;
    height: 94px;
    min-width: 94px;
    display: grid;
    place-items: center;
    padding: 14px;
    border: 2px solid rgba(0, 199, 183, 0.48);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.36);
    overflow: hidden;
}

.sponsor-card.featured .sponsor-logo {
    width: 112px;
    height: 112px;
    min-width: 112px;
    border-color: rgba(97, 203, 43, 0.62);
}

.sponsor-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.08) contrast(1.12) drop-shadow(0 0 3px rgba(255, 255, 255, 0.35));
}

.sponsor-logo--wraith {
    padding: 18px;
}

.sponsor-logo--wraith img {
    width: 92%;
    height: 92%;
    object-fit: contain;
    object-position: center;
}

.sponsor-logo--oyuneks {
    width: 94px;
    height: 94px;
    min-width: 94px;
    padding: 14px;
    border-radius: 50%;
}

.sponsor-logo--oyuneks img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.04) contrast(1.04);
}

.sponsor-logo--adsquad {
    padding: 12px;
}

.sponsor-info {
    flex: 1;
    min-width: 0;
}

.sponsor-info h3 {
    margin-bottom: 0.44rem;
    color: var(--paper);
    font-size: 1.24rem;
    line-height: 1.2;
    font-weight: 800;
}

.sponsor-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.58;
}

.sponsor-info .highlight {
    color: var(--accent);
    font-weight: 800;
}

.contact-card {
    padding: 1.7rem 1.25rem;
    text-align: center;
}

.contact-card p {
    margin-bottom: 1.1rem;
    color: var(--text-secondary);
    font-size: 0.96rem;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.68rem;
    min-height: 48px;
    padding: 0.86rem 1.6rem;
    color: var(--paper);
    background: var(--gradient);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 199, 183, 0.34);
    font-size: 0.94rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-button:hover,
.contact-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 199, 183, 0.44);
    outline: none;
}

.footer {
    margin-top: 3.25rem;
    padding: 2.25rem 0 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.84rem;
    opacity: 0.72;
}

::selection {
    color: var(--paper);
    background: rgba(0, 199, 183, 0.36);
}

@media (min-width: 769px) {
    .sponsors-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1.15rem;
    }

    .sponsor-card.featured:nth-child(1) {
        grid-column: 1 / 4;
    }

    .sponsor-card.featured:nth-child(2) {
        grid-column: 4 / 7;
    }

    .sponsor-card:nth-child(3) {
        grid-column: 1 / 4;
    }

    .sponsor-card:nth-child(4) {
        grid-column: 4 / 7;
    }

    .sponsor-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        min-height: 172px;
    }

    .sponsor-card .sponsor-logo {
        width: 112px;
        height: 112px;
        min-width: 112px;
        border-color: rgba(97, 203, 43, 0.62);
    }

    .sponsor-card .sponsor-info {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1.55rem 1rem 0;
    }

    .name {
        font-size: 2.08rem;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.34rem;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 1.3rem 0.86rem 0;
    }

    .hero {
        padding-top: 1.15rem;
    }

    .profile-image {
        width: 124px;
        height: 124px;
    }

    .status-indicator {
        right: -1px;
        bottom: 7px;
        padding: 0.3rem 0.62rem;
        font-size: 0.68rem;
    }

    .name {
        font-size: 1.88rem;
    }

    .links-grid {
        gap: 0.7rem;
    }

    .link-card {
        min-height: 64px;
        padding: 0.78rem 0.86rem;
        gap: 0.72rem;
    }

    .link-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.16rem;
    }

    .link-content h3 {
        font-size: 0.96rem;
    }

    .link-content p {
        font-size: 0.8rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .metric-value {
        font-size: 1.82rem;
    }

    .sponsor-card {
        padding: 1.35rem 1rem;
    }

    .sponsor-card.featured .sponsor-logo,
    .sponsor-logo {
        width: 92px;
        height: 92px;
        min-width: 92px;
    }

    .sponsor-logo--oyuneks {
        width: 92px;
        height: 92px;
        min-width: 92px;
    }

    .contact-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
