body {
    background:
        radial-gradient(circle at 20% 20%, rgba(90, 12, 16, 0.18) 0%, rgba(90, 12, 16, 0.12) 18%, rgba(90, 12, 16, 0.06) 34%, transparent 55%),
        radial-gradient(circle at 80% 30%, rgba(50, 70, 110, 0.08) 0%, rgba(50, 70, 110, 0.05) 18%, rgba(50, 70, 110, 0.02) 32%, transparent 52%),
        linear-gradient(180deg, #0b0f14 0%, #0d1117 100%);
}

.hero,
.reasons-section,
.about-section,
.faq-section,
.staff-section,
.social-section {
    position: relative;
}

.hero {
    min-height: 100vh;
    padding: 140px 0 70px;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 210px);
}

.hero__content {
    max-width: 820px;
    margin: 0 auto;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(179, 18, 23, 0.12);
    border: 1px solid rgba(179, 18, 23, 0.24);
    color: #d85a5d;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 18px;
    font-size: clamp(3.4rem, 8vw, 6rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.hero__text {
    max-width: 720px;
    margin: 0 auto;
    color: #aeb7c2;
    font-size: 1.08rem;
    line-height: 1.95;
}

.hero__highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 180px));
    justify-content: center;
    gap: 18px;
    margin-top: 34px;
}

.hero__highlight {
    padding: 22px 18px;
    border-radius: 20px;
    background: rgba(17, 22, 29, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__highlight strong {
    display: block;
    margin-bottom: 8px;
    color: #f5f7fa;
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 900;
}

.hero__highlight span {
    color: #97a3b2;
    font-size: 0.88rem;
    font-weight: 700;
}

.hero__subtext {
    margin-top: 18px;
    color: #d13b40;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.hero__scroll {
    margin-top: 42px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #8995a6;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__scroll i {
    color: #c3cad4;
    font-size: 1rem;
}

.reasons-section {
    padding: 20px 0 110px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.reason-card {
    position: relative;
    padding: 34px 28px;
    border-radius: 24px;
    background: rgba(17, 22, 29, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.reason-card:hover {
    transform: translateY(-6px);
}

.reason-card__icon {
    position: relative;
    z-index: 2;
    width: 84px;
    height: 84px;
    margin: 0 auto 26px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
}

.reason-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.3;
    font-weight: 900;
}

.reason-card p {
    position: relative;
    z-index: 2;
    color: #aeb7c2;
    font-size: 0.98rem;
    line-height: 1.9;
}

.reason-card--green .reason-card__icon {
    background: linear-gradient(135deg, #39f19a 0%, #29cb7f 100%);
}

.reason-card--green:hover {
    border-color: rgba(57, 241, 154, 0.25);
    box-shadow: 0 0 0 1px rgba(57, 241, 154, 0.08), 0 16px 40px rgba(10, 20, 16, 0.22);
}

.reason-card--green-dark .reason-card__icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.reason-card--green-dark:hover {
    border-color: rgba(34, 197, 94, 0.25);
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.08), 0 16px 40px rgba(10, 20, 16, 0.22);
}

.reason-card--blue .reason-card__icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.reason-card--blue:hover {
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.08), 0 16px 40px rgba(15, 20, 35, 0.22);
}

.reason-card--purple .reason-card__icon {
    background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%);
}

.reason-card--purple:hover {
    border-color: rgba(168, 85, 247, 0.25);
    box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.08), 0 16px 40px rgba(22, 15, 35, 0.22);
}

.reason-card--orange .reason-card__icon {
    background: linear-gradient(135deg, #ff8a1f 0%, #ff6b00 100%);
}

.reason-card--orange:hover {
    border-color: rgba(255, 138, 31, 0.25);
    box-shadow: 0 0 0 1px rgba(255, 138, 31, 0.08), 0 16px 40px rgba(35, 20, 12, 0.22);
}

.reason-card--red .reason-card__icon {
    background: linear-gradient(135deg, #ff4545 0%, #ef2c2c 100%);
}

.reason-card--red:hover {
    border-color: rgba(255, 69, 69, 0.25);
    box-shadow: 0 0 0 1px rgba(255, 69, 69, 0.08), 0 16px 40px rgba(35, 15, 15, 0.22);
}

.about-section {
    padding: 0 0 110px;
}

.about-box {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 28px;
    padding: 34px;
    border-radius: 28px;
    background: rgba(17, 22, 29, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.about-box__left {
    position: relative;
    z-index: 2;
}

.about-box__left h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.about-box__left p {
    color: #aeb7c2;
    font-size: 1rem;
    line-height: 1.9;
}

.about-box__right {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-content: start;
}

.about-mini-card {
    position: relative;
    padding: 24px 18px;
    border-radius: 20px;
    background: rgba(12, 17, 23, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    overflow: hidden;
}

.about-mini-card strong {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 10px;
    color: #f5f7fa;
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
}

.about-mini-card span {
    position: relative;
    z-index: 2;
    color: #97a3b2;
    font-size: 0.92rem;
    font-weight: 700;
}

.faq-section {
    padding: 0 0 110px;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.faq-card {
    position: relative;
    padding: 24px 24px 22px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(18, 23, 31, 0.92) 0%, rgba(13, 18, 25, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.faq-card:hover {
    
    border-color: rgba(179, 18, 23, 0.18);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.faq-card__top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.faq-card__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(179, 18, 23, 0.14);
    color: #d85a5d;
    font-size: 1rem;
}

.faq-card h3 {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 800;
}

.faq-card p {
    position: relative;
    z-index: 2;
    color: #aeb7c2;
    font-size: 0.96rem;
    line-height: 1.85;
}

.staff-section {
    padding: 0 0 110px;
}

.staff-lead {
    display: flex;
    justify-content: center;
    margin-bottom: 26px;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.staff-card {
    position: relative;
    padding: 28px 20px;
    border-radius: 22px;
    background: rgba(17, 22, 29, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.staff-card:hover {
    
    border-color: rgba(179, 18, 23, 0.18);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.staff-card--founder {
    width: min(100%, 340px);
    padding-top: 24px;
    border-color: rgba(255, 189, 89, 0.2);
    box-shadow: 0 0 0 1px rgba(255, 189, 89, 0.05), 0 16px 36px rgba(0, 0, 0, 0.18);
}

.staff-card__badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 189, 89, 0.14);
    border: 1px solid rgba(255, 189, 89, 0.22);
    color: #ffd27a;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.staff-card__avatar {
    position: relative;
    z-index: 2;
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
}

.staff-card__avatar--founder {
    background: linear-gradient(135deg, #ffcc66 0%, #ffb347 100%);
    box-shadow: 0 14px 28px rgba(255, 188, 87, 0.24);
}

.staff-card__avatar--developer {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 14px 28px rgba(59, 130, 246, 0.2);
}

.staff-card__avatar--staff {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 14px 28px rgba(34, 197, 94, 0.2);
}

.staff-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 900;
}

.staff-card span {
    position: relative;
    z-index: 2;
    color: #9eabb9;
    font-size: 0.9rem;
    font-weight: 700;
}

.social-section {
    padding: 0 0 120px;
}

.social-buttons {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.social-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 132px;
    border-radius: 20px;
    background: rgba(17, 22, 29, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #ffffff;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.social-btn i,
.social-btn strong,
.social-btn span {
    position: relative;
    z-index: 2;
}

.social-btn i {
    font-size: 1.7rem;
}

.social-btn strong {
    font-size: 0.96rem;
    font-weight: 800;
}

.social-btn span {
    color: #aeb7c2;
    font-size: 0.82rem;
    font-weight: 600;
}

.social-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.social-btn:hover {
    transform: translateY(-5px);
}

.social-btn:hover::before {
    opacity: 1;
}

.social-btn--tiktok::before {
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.22), rgba(255, 45, 117, 0.18));
}

.social-btn--tiktok:hover {
    border-color: rgba(255, 0, 80, 0.22);
}

.social-btn--youtube::before {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(204, 0, 0, 0.16));
}

.social-btn--youtube:hover {
    border-color: rgba(255, 0, 0, 0.22);
}

.social-btn--instagram::before {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.18), rgba(253, 29, 29, 0.14), rgba(252, 176, 69, 0.12));
}

.social-btn--instagram:hover {
    border-color: rgba(253, 29, 29, 0.18);
}

.social-btn--discord::before {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2), rgba(64, 78, 237, 0.16));
}

.social-btn--discord:hover {
    border-color: rgba(88, 101, 242, 0.22);
}

.mouse-smoke {
    position: relative;
    overflow: hidden;
}

.mouse-smoke::after {
    content: "";
    position: absolute;
    left: var(--mx, 50%);
    top: var(--my, 50%);
    width: 240px;
    height: 240px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(179, 18, 23, 0.18) 0%, rgba(179, 18, 23, 0.08) 28%, transparent 68%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.mouse-smoke:hover::after {
    opacity: 1;
}

@media (max-width: 1200px) {
    .staff-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .reasons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-box {
        grid-template-columns: 1fr;
    }

    .faq-list {
        grid-template-columns: 1fr;
    }

    .social-buttons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 150px 0 90px;
    }

    .hero__container {
        min-height: auto;
    }

    .reasons-section,
    .about-section,
    .faq-section,
    .staff-section,
    .social-section {
        padding-bottom: 80px;
    }

    .reasons-grid,
    .social-buttons,
    .about-box__right,
    .staff-grid,
    .hero__highlights {
        grid-template-columns: 1fr;
    }

    .reason-card,
    .faq-card,
    .social-btn,
    .about-box,
    .about-mini-card,
    .staff-card,
    .hero__highlight {
        border-radius: 18px;
    }

    .reason-card {
        padding: 28px 22px;
    }

    .about-box {
        padding: 26px;
    }

    .staff-card--founder {
        width: 100%;
    }
}

.servers-section {
    padding: 0 0 110px;
}

.servers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.server-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(17, 22, 29, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.server-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.server-card__content {
    padding: 28px 20px;
}

.server-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.server-card__badge.is-online {
    background: rgba(49, 196, 108, 0.10);
    border: 1px solid rgba(49, 196, 108, 0.24);
    color: #74e59f;
}

.server-card__badge.is-offline {
    background: rgba(179, 18, 23, 0.10);
    border: 1px solid rgba(179, 18, 23, 0.24);
    color: #ff7a7f;
}

.server-card h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 14px;
}

.server-card__desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 720px;
    margin-bottom: 24px;
}

.server-card__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.server-stat {
    padding: 20px;
    border-radius: 18px;
    background: rgba(17, 22, 29, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
}

.server-stat strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
    word-break: break-word;
}

.server-stat span {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.server-card__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.server-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(17, 22, 29, 0.9);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.server-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.server-details-box {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, margin-top 0.35s ease;
}

.server-details-box.is-open {
    max-height: 700px;
    margin-top: 18px;
    overflow: auto;
}

.server-details-box__inner {
    padding: 20px;
    border-radius: 18px;
    background: rgba(17, 22, 29, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .servers-section {
        padding: 0 0 80px;
    }

    .server-card__content {
        padding: 24px 18px;
    }

    .server-card__stats {
        grid-template-columns: 1fr;
    }

    .server-btn {
        width: 100%;
    }
}

.server-details-box__inner {
    padding: 20px;
    border-radius: 18px;
    background: rgba(17, 22, 29, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    line-height: 1.8;
}

.server-details-group + .server-details-group {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.server-details-group h4 {
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
}

.server-details-group ul {
    margin: 0;
    padding-left: 18px;
}

.server-details-group li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.server-details-group code {
    padding: 3px 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.92rem;
}

.server-details-box.is-open {
    max-height: 700px;
    margin-top: 18px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.10) transparent;
}

.server-details-box.is-open::-webkit-scrollbar {
    width: 6px;
}

.server-details-box.is-open::-webkit-scrollbar-track {
    background: transparent;
}

.server-details-box.is-open::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.10);
    border-radius: 999px;
}

.server-details-box.is-open::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.16);
}

.wipe-countdown {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
}