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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #070812;
    color: #fff;
    overflow-x: hidden;
}

button,
a {
    font-family: inherit;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    background: rgba(7, 8, 18, .92);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    z-index: 1000;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: .9;
    min-width: 150px;
}

.logo span {
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 700;
    opacity: .65;
}

.logo strong {
    font-size: 23px;
    letter-spacing: 2px;
    background: linear-gradient(90deg,#8d7cff,#5ee7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navbar nav a {
    color: #d7d8e5;
    font-size: 14px;
    font-weight: 600;
    transition: .25s;
}

.navbar nav a:hover {
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.small-button,
.login-button {
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    color: #fff;
    border-radius: 10px;
    padding: 10px 13px;
    font-size: 12px;
    font-weight: 700;
    transition: .25s;
}

.small-button:hover,
.login-button:hover {
    background: rgba(255,255,255,.11);
}

.login-button {
    background: linear-gradient(135deg,#5865f2,#7657ff);
    border: none;
    padding: 11px 16px;
}

.mobile-menu-button {
    display: none;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 27px;
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 150px 8% 90px;
    overflow: hidden;
    background:
        radial-gradient(circle at 75% 35%,rgba(91,77,255,.25),transparent 35%),
        radial-gradient(circle at 20% 70%,rgba(44,211,255,.12),transparent 30%),
        #070812;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(7,8,18,1),
        rgba(7,8,18,.72),
        rgba(7,8,18,.35)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.online {
    display: inline-flex;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(66,255,150,.08);
    border: 1px solid rgba(66,255,150,.18);
    color: #5effa4;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(60px,10vw,125px);
    line-height: .85;
    letter-spacing: -6px;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(90deg,#8c7cff,#5de4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 span {
    background: linear-gradient(90deg,#fff,#bcb5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content > p {
    max-width: 600px;
    color: #a8a9b9;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.primary-button {
    border: none;
    padding: 14px 22px;
    border-radius: 12px;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    background: linear-gradient(135deg,#6d5dfc,#4bbdf7);
    box-shadow: 0 10px 30px rgba(83,92,255,.22);
    transition: .25s;
}

.primary-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.12);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 12px;
    color: #fff;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    font-weight: 800;
    font-size: 14px;
}

.stats {
    display: flex;
    gap: 50px;
    margin-top: 55px;
}

.stats div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stats strong {
    font-size: 24px;
}

.stats span {
    color: #77798a;
    font-size: 12px;
}

.section {
    padding: 110px 7%;
}

.dark-section {
    background: #0a0b16;
}

.section-title {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-title > span {
    color: #8176ff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
}

.section-title h2 {
    font-size: clamp(32px,5vw,55px);
    margin: 14px 0 18px;
    letter-spacing: -2px;
}

.section-title p {
    color: #9294a6;
    font-size: 15px;
    line-height: 1.7;
}

.features {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.feature-card {
    padding: 32px;
    border-radius: 20px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.08);
    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(128,115,255,.35);
}

.feature-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(116,100,255,.12);
    font-size: 25px;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: #8f91a3;
    line-height: 1.65;
    font-size: 14px;
}

.center-button {
    display: flex;
    justify-content: center;
}

.shop-section {
    background:
        radial-gradient(circle at 50% 0%,rgba(100,83,255,.08),transparent 35%);
}

.vip-grid {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5,minmax(0,1fr));
    gap: 14px;
}

.vip-card {
    position: relative;
    padding: 28px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.08);
    transition: .3s;
}

.vip-card:hover {
    transform: translateY(-6px);
}

.vip-icon {
    font-size: 35px;
    margin-bottom: 15px;
}

.vip-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.vip-price {
    font-size: 29px;
    font-weight: 900;
    margin-bottom: 14px;
}

.vip-card > p {
    min-height: 48px;
    color: #9092a3;
    font-size: 13px;
    line-height: 1.5;
}

.vip-card ul {
    list-style: none;
    margin: 22px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vip-card li {
    color: #c3c4d0;
    font-size: 12px;
}

.vip-card li::before {
    content: "✓";
    color: #62e7a0;
    font-weight: 900;
    margin-right: 8px;
}

.vip-buy-button {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-weight: 800;
}

.aurora-vip {
    border-color: rgba(154,111,255,.55);
    background: linear-gradient(
        160deg,
        rgba(126,96,255,.13),
        rgba(40,203,255,.04)
    );
}

.aurora-badge {
    display: inline-block;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(137,110,255,.15);
    color: #b9aaff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.aurora-button {
    background: linear-gradient(135deg,#715bff,#b35cff);
    border: none;
}

.battle-section {
    position: relative;
    overflow: hidden;
    min-height: 440px;
    padding: 100px 8%;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 80% 50%,rgba(102,74,255,.25),transparent 35%),
        #080914;
}

.battle-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.battle-content > span {
    color: #8b7cff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
}

.battle-content h2 {
    font-size: clamp(40px,6vw,70px);
    letter-spacing: -3px;
    margin: 12px 0 18px;
}

.battle-content p {
    color: #9799aa;
    line-height: 1.7;
    max-width: 550px;
    margin-bottom: 25px;
}

.level-number {
    position: absolute;
    right: 7%;
    font-size: clamp(150px,25vw,350px);
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.025);
}

.cta {
    text-align: center;
    padding: 120px 7%;
    background:
        radial-gradient(circle at center,rgba(90,77,255,.15),transparent 55%);
}

.cta h2 {
    font-size: clamp(35px,5vw,60px);
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.cta p {
    color: #9496a8;
    margin-bottom: 28px;
}

footer {
    padding: 45px 7%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    background: #05060d;
    border-top: 1px solid rgba(255,255,255,.06);
}

footer strong {
    font-size: 16px;
}

footer p {
    color: #77798a;
    font-size: 11px;
    line-height: 1.6;
}

footer > p {
    text-align: center;
}

.footer-note {
    text-align: right;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(8px);
}

.modal.active {
    display: flex;
}

.modal-box {
    position: relative;
    width: 100%;
    max-width: 480px;
    padding: 35px;
    border-radius: 22px;
    background: #10111e;
    border: 1px solid rgba(255,255,255,.1);
    text-align: center;
}

.modal-box h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.modal-box p {
    color: #9b9dad;
    line-height: 1.6;
    margin-bottom: 25px;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 17px;
    width: 35px;
    height: 35px;
    border: none;
    background: rgba(255,255,255,.06);
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
}

@media (max-width:1100px) {

    .navbar {
        padding: 0 4%;
    }

    .navbar nav {
        gap: 16px;
    }

    .vip-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .aurora-vip {
        grid-column: span 3;
    }
}

@media (max-width:850px) {

    .navbar nav {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        width: 100%;
        padding: 25px;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        background: #090a14;
    }

    .navbar nav.active {
        display: flex;
    }

    .mobile-menu-button {
        display: block;
    }

    .login-button {
        display: none;
    }

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

    .vip-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .aurora-vip {
        grid-column: span 2;
    }

    footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    footer > p,
    .footer-note {
        text-align: center;
    }
}

@media (max-width:600px) {

    .navbar {
        height: 70px;
        padding: 0 18px;
    }

    .logo strong {
        font-size: 18px;
    }

    .small-button {
        padding: 8px 9px;
        font-size: 10px;
    }

    .hero {
        min-height: 850px;
        padding: 140px 22px 70px;
    }

    .hero h1 {
        font-size: 62px;
        letter-spacing: -4px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons button,
    .hero-buttons a {
        width: 100%;
    }

    .stats {
        gap: 22px;
        justify-content: space-between;
    }

    .section {
        padding: 80px 20px;
    }

    .section-title h2 {
        font-size: 35px;
    }

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

    .aurora-vip {
        grid-column: auto;
    }

    .battle-section {
        padding: 80px 22px;
    }

    .level-number {
        right: -30px;
        font-size: 220px;
    }

    .cta {
        padding: 90px 20px;
    }

    footer {
        padding: 40px 20px;
    }
   }
