/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0c0f;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Grid background effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: rgba(10, 12, 15, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid #00ffff20;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 8px #00ffff80);
}

.logo a {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ffff;
    text-decoration: none;
    text-shadow: 0 0 10px #00ffff80;
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s, text-shadow 0.3s;
    font-size: 1.1rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00ffff;
    text-shadow: 0 0 8px #00ffff;
}

.discord-link {
    background-color: #5865F2;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    color: white !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 15px #5865F280;
}

.discord-link:hover {
    background-color: #4752c4;
    transform: scale(1.05);
    box-shadow: 0 0 25px #5865F2;
    color: white !important;
}

.discord-link i {
    font-size: 1.2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #00ffff;
    margin: 3px 0;
    border-radius: 3px;
    transition: 0.3s;
}

/* ===== FOOTER ===== */
footer {
    margin-top: auto;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #00ffff20;
    color: #777;
}

/* ===== HOME PAGE SPECIFIC ===== */
.hero {
    padding: 4rem 0 3rem;
    text-align: center;
}

.badge {
    display: inline-block;
    background: linear-gradient(145deg, #00ffff20, #00ffff05);
    border: 1px solid #00ffff60;
    color: #00ffff;
    font-weight: 700;
    font-size: 2rem;
    padding: 0.8rem 2rem;
    border-radius: 60px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 20px #00ffff40;
    backdrop-filter: blur(5px);
}

.ip-copy {
    background-color: #1a1e24;
    border: 2px solid #00ffff;
    border-radius: 50px;
    padding: 1rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem auto;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 15px #00ffff30;
}

.ip-copy:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px #00ffff70;
}

.ip-copy .ip {
    color: #00ffff;
    letter-spacing: 1px;
}

.ip-copy .copy-hint {
    background-color: #00ffff20;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-size: 1rem;
    color: #00ffff;
    border: 1px solid #00ffff60;
}

.crossplay {
    font-size: 1.3rem;
    color: #aaa;
    margin: 2rem 0;
}

.crossplay span {
    color: #00ffff;
    font-weight: 600;
}

.server-status {
    background: linear-gradient(145deg, #00ffff08, #00000030);
    border: 1px solid #00ffff30;
    border-radius: 20px;
    padding: 1.5rem;
    margin: 3rem 0;
    text-align: center;
    backdrop-filter: blur(4px);
}

.status-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: #00ffff;
    margin-bottom: 1rem;
}

.player-count {
    font-size: 3rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff;
}

.game-modes {
    display: flex;
    gap: 2rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.mode-card {
    flex: 1 1 250px;
    background: #12161c;
    border: 1px solid #00ffff30;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px #00ffff20;
    border-color: #00ffff;
}

.mode-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
}

.mode-card p {
    color: #bbb;
}

.updates {
    background: #0e1217;
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    border: 1px solid #00ffff20;
}

.updates h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
}

.updates ul {
    list-style: none;
}

.updates li {
    padding: 1rem 0;
    border-bottom: 1px solid #00ffff20;
    display: flex;
    gap: 1rem;
}

.update-date {
    color: #00ffff;
    font-weight: 600;
    min-width: 100px;
}

/* ===== STORE PAGE SPECIFIC ===== */
.store-header {
    text-align: center;
    padding: 3rem 0 1rem;
}

.store-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff;
}

.store-header p {
    color: #aaa;
    font-size: 1.2rem;
}

.rank-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    justify-content: center;
}

.rank-card {
    flex: 1 1 250px;
    background: #12161c;
    border: 1px solid #00ffff30;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.rank-card:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 10px 30px #00ffff20;
}

.rank-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.rank-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 1rem 0;
    background: #00ffff10;
    padding: 0.5rem;
    border-radius: 40px;
}

.perks-list {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
    text-align: left;
}

.perks-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #00ffff10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check {
    color: #00ffff;
    font-weight: 700;
    font-size: 1.3rem;
}

.dash {
    color: #777;
    font-weight: 700;
    font-size: 1.3rem;
}

.pay-btn {
    background: linear-gradient(145deg, #00ffff, #00ccff);
    border: none;
    color: #0a0c0f;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    border-radius: 40px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 1rem;
    border: 1px solid #00ffff;
    box-shadow: 0 0 15px #00ffff80;
}

.pay-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #00ffff;
}

/* ===== RULES PAGE SPECIFIC ===== */
.rules-header {
    text-align: center;
    padding: 3rem 0 1rem;
}

.rules-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff;
}

/* ===== DISCORD PAGE SPECIFIC ===== */
.discord-widget-container {
    max-width: 450px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px #00ffff30;
    border: 1px solid #00ffff40;
    background: #0e1217;
    padding: 5px;
}

.discord-widget-container iframe {
    display: block;
    border-radius: 15px;
    background: transparent;
    width: 100%;
}

/* ===== RESPONSIVE (Mobile) ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #0a0c0f;
        border-bottom: 1px solid #00ffff40;
        padding: 2rem;
        gap: 1.5rem;
        z-index: 99;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero .badge {
        font-size: 1.5rem;
    }

    .ip-copy {
        flex-direction: column;
        gap: 1rem;
        font-size: 1.2rem;
    }

    .game-modes {
        flex-direction: column;
    }
}