/* ================= GLOBAL ================= */
* {
    cursor: url("https://cdn-icons-png.flaticon.com/512/32/32339.png") 16 16, auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #181818;
    color: #fff;
}

/* ================= NAVBAR ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%;
    height: 72px;
    background: linear-gradient(180deg, #222, #1a1a1a);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.site-logo {
    height: 190px;        /* 🔥 size increase */
    width: auto;
}


.site-logo:hover {
    transform: scale(1.06);
}

.nav-left span {
    font-size: 15px;
    font-weight: 600;
}

.nav-center a {
    margin: 0 12px;
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
}

.nav-center .active {
    background: #2196f3;
    padding: 8px 18px;
    border-radius: 10px;
    color: #fff;
}

.nav-center .play {
    border: 1px solid #2196f3;
    padding: 8px 18px;
    border-radius: 10px;
    color: #2196f3;
}

.online {
    background: #0f5132;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
}

/* ===== NAVBAR BASE (ensure relative) ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* ===== GLOW STRIP ===== */
.navbar::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        #ff004c,
        #8a2be2,
        #ff004c
    );
    opacity: 0;
    box-shadow:
        0 0 10px rgba(255, 0, 76, 0.8),
        0 0 20px rgba(138, 43, 226, 0.9);
    transition: opacity 0.3s ease;
}

/* ===== ACTIVATE ON HOVER ===== */
.navbar:hover::after {
    opacity: 1;
}


/* ================= HERO ================= */
.hero {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    padding: 0 6%;
    background: url("image/bg.jpg") center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.25)
    );
}

.hero-text {
    position: relative;
    max-width: 520px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
}

.hero-text p {
    margin: 20px 0;
    color: #bbb;
}

.hero-text button {
    padding: 14px 32px;
    background: #2196f3;
    border: none;
    color: #fff;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
}

.hero-text button:hover {
    background: #1b7cd6;
}


/* ================= GALLERY ================= */
.gallery {
    padding: 80px 6%;
    background: #202020;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    transition: 0.4s;
}

.grid img:hover {
    transform: scale(1.06);
}

/* ================= VEHICLE ================= */
.vehicle-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    text-align: center;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.vehicle-card {
    background: rgba(0,0,0,0.25);
    border-radius: 22px;
    padding: 30px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-10px);
}

.vehicle-card img {
    width: 100%;
    max-width: 460px;
    filter: drop-shadow(0 20px 45px rgba(0,0,0,0.45));
}

/* ================= FEATURES ================= */
.features {
    padding: 80px 6%;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.card {
    background: #222;
    padding: 32px;
    border-radius: 18px;
}

/* ================= START JOURNEY ================= */
.journey {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 8%;
    background: linear-gradient(135deg, #2e90e5, #1c3c63);
    gap: 60px;
}

.journey-left {
    max-width: 520px;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.journey-left h2 {
    font-size: 44px;
    margin: 20px 0;
    font-weight: 800;
}

.journey-left p {
    color: #e5e7eb;
    line-height: 1.6;
}

.highlight {
    color: #ffd54f;
    font-weight: 700;
}

.journey-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 30px;
    background: #fff;
    color: #1e3a8a;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.journey-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* 🔥 IMAGE SIZE CONTROL (IMPORTANT FIX) */
.journey-right img {
    max-width: 360px;      /* ✅ NOT TOO BIG */
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 45px rgba(0,0,0,0.4));
}

/* ================= HOW TO PLAY MODAL ================= */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.modal-box {
    width: 420px;
    background: #121212;
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 22px;
    cursor: pointer;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
    .journey {
        flex-direction: column;
        text-align: center;
    }

    .journey-right img {
        max-width: 260px;   /* 📱 Mobile perfect size */
        margin-top: 40px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= HOW TO PLAY MODAL ================= */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-box {
    width: 460px;
    background: linear-gradient(180deg, #0f172a, #020617);
    border-radius: 22px;
    padding: 32px;
    position: relative;
    box-shadow: 0 40px 120px rgba(0,0,0,0.6);
    animation: pop 0.3s ease;
}

@keyframes pop {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-box h2 {
    font-size: 28px;
    margin-bottom: 22px;
}

.close-btn {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 26px;
    cursor: pointer;
    color: #94a3b8;
}

.step-card {
    display: flex;
    gap: 14px;
    background: rgba(255,255,255,0.04);
    padding: 18px;
    border-radius: 16px;
    margin-bottom: 16px;
}

.step-num {
    min-width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.step-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.step-card p {
    font-size: 13px;
    color: #cbd5f5;
}

.blue-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.ip-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.4);
    padding: 12px 14px;
    border-radius: 14px;
    margin-top: 10px;
}

.ip-box span {
    font-family: monospace;
    font-size: 14px;
}

.ip-box button {
    background: #3b82f6;
    border: none;
    padding: 6px 14px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
}
* {
    transition: background-color 0.3s ease,
                color 0.3s ease,
                transform 0.3s ease,
                box-shadow 0.3s ease;
}
.hero-text button,
.journey-btn {
    position: relative;
    overflow: hidden;
}

.hero-text button::after,
.journey-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
}

.hero-text button:hover::after,
.journey-btn:hover::after {
    left: 100%;
    transition: 0.6s;
}
section {
    opacity: 0;
    transform: translateY(60px);
    animation: sectionFade 1s ease forwards;
    animation-delay: 0.2s;
}

@keyframes sectionFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
a,
button,
.play,
.nav-center a,
.journey-btn {
    cursor: pointer !important;
}
a:hover,
button:hover {
    cursor: pointer;
}
/* ================= CINEMATIC FORUM BUTTON ================= */

.nav-center a {
    position: relative;
    padding: 8px 18px;
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: 
        color 0.3s ease,
        transform 0.3s ease;
    cursor: pointer;
}

/* ✨ MAIN HOVER EFFECT */
.nav-center a:hover {
    color: #7dd3fc;
    transform: translateY(-1px);
    text-shadow:
        0 0 6px rgba(125,211,252,0.9),
        0 0 14px rgba(56,189,248,0.8),
        0 0 28px rgba(37,99,235,0.6);
}

/* 🔥 UNDERLINE NEON BAR */
.nav-center a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #38bdf8,
        #60a5fa,
        #38bdf8,
        transparent
    );
    box-shadow:
        0 0 10px #38bdf8,
        0 0 20px rgba(56,189,248,0.8);
    transform: translateX(-50%);
    transition: width 0.35s ease;
}

.nav-center a:hover::after {
    width: 80%;
}

/* 🌊 SOFT GLOW BACK PLATE */
.nav-center a::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 12px;
    background: radial-gradient(
        circle at center,
        rgba(56,189,248,0.18),
        transparent 70%
    );
    opacity: 0;
    filter: blur(14px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-center a:hover::before {
    opacity: 1;
}

/* ⚡ SUBTLE PULSE ANIMATION */
@keyframes neonPulse {
    0% {
        box-shadow: 0 0 6px rgba(56,189,248,0.6);
    }
    50% {
        box-shadow: 0 0 14px rgba(56,189,248,1);
    }
    100% {
        box-shadow: 0 0 6px rgba(56,189,248,0.6);
    }
}

.nav-center a:hover {
    animation: neonPulse 1.6s infinite ease-in-out;
}
/* ================= davil FEATURES ================= */

.features-zenith {
    padding: 90px 6%;
    background: radial-gradient(circle at top, #1c1f26, #0f1115);
}

.features-zenith h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
    color: #e5e7eb;
}

.zenith-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card */
.zenith-card {
    position: relative;
    background: linear-gradient(180deg, #1b1f27, #14171d);
    border-radius: 18px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    transition: all 0.35s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Hover glow */
.zenith-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 0 1px rgba(79,195,255,0.35),
        0 25px 60px rgba(0,0,0,0.8);
}

/* Active (blue highlighted like davil) */
.zenith-card.active {
    box-shadow:
        0 0 0 1px rgba(79,195,255,0.8),
        0 0 25px rgba(79,195,255,0.35);
}

/* Text */
.zenith-text {
    max-width: 65%;
}

.zenith-text h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
}

.zenith-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #b6bcc8;
}

/* Image */
.zenith-card img {
    max-width: 120px;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.7));
    transition: transform 0.4s ease;
}

.zenith-card:hover img {
    transform: scale(1.08);
}

/* Mobile */
@media (max-width: 900px) {
    .zenith-grid {
        grid-template-columns: 1fr;
    }

    .zenith-card {
        flex-direction: column;
        text-align: center;
    }

    .zenith-text {
        max-width: 100%;
    }

    .zenith-card img {
        margin-top: 20px;
    }
}
/* ===== STEP CARD ===== */
.step {
    position: relative;
    background: linear-gradient(145deg, #0c142a, #0a1020);
    border-radius: 14px;
    padding: 22px 18px 18px;
    margin-bottom: 16px;
    border: 1px solid rgba(80, 150, 255, 0.15);
    box-shadow: inset 0 0 20px rgba(0, 140, 255, 0.08);
}

/* ===== STEP OVAL NUMBER BAR ===== */
.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;              /* 🔥 FIX WIDTH */
    height: 26px;
    background: linear-gradient(90deg, #2f9cff, #6a5cff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(90, 150, 255, 0.6);
}

/* ===== STEP TITLE ===== */
.step h4 {
    margin-top: 18px;          /* 🔥 FIX SPACING */
    margin-bottom: 6px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
}

/* ===== STEP DESCRIPTION ===== */
.step p {
    text-align: center;
    font-size: 13px;
    opacity: 0.85;
    line-height: 1.5;
}

/* ===== SERVER IP BOX ===== */
.server-ip {
    margin-top: 12px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: monospace;
    font-size: 13px;
}

/* ===== COPY BUTTON ===== */
.copy-btn {
    background: linear-gradient(135deg, #3aa0ff, #6a5cff);
    border: none;
    color: #fff;
    padding: 7px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.25s;
}

.copy-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 0 14px rgba(100, 160, 255, 0.9);
}
/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(180deg, #141414, #0c0c0c);
    padding: 26px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #bfbfbf;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* LEFT */
.footer-left span {
    color: #5aa9ff;
    font-weight: 500;
}

/* CENTER */
.footer-center {
    text-align: center;
    line-height: 1.6;
}

.footer-center a {
    color: #5aa9ff;
    text-decoration: none;
}

.footer-center a:hover {
    text-decoration: underline;
}

/* RIGHT */
.footer-right a {
    margin-left: 18px;
    color: #bfbfbf;
    text-decoration: none;
    transition: 0.3s;
}

.footer-right a:hover {
    color: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .site-footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-right a {
        margin-left: 10px;
        margin-right: 10px;
    }
}
/* ===== SOCIAL ICONS ===== */
.footer-socials {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-bottom: 8px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bfbfbf;
    font-size: 16px;
    transition: 0.3s;
}


/* Discord */
.footer-socials a.discord:hover {
    color: #fff;
    background: #5865F2;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.8);
}

/* Instagram */
.footer-socials a.instagram:hover {
    color: #fff;
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    box-shadow: 0 0 15px rgba(221, 42, 123, 0.7);
}

/* MOBILE FIX */
@media (max-width: 900px) {
    .footer-socials {
        justify-content: center;
    }
}

.nav-left:hover .site-logo {
    transform: scale(1.08);
    filter:
        drop-shadow(0 0 6px rgba(255, 0, 120, 0.8))
        drop-shadow(0 0 14px rgba(140, 60, 255, 0.9));
}

.nav-left:hover .brand-text {
    color: #ffffff;
    text-shadow:
        0 0 6px rgba(255, 0, 120, 0.8),
        0 0 14px rgba(140, 60, 255, 0.9);
}
.navbar {
    background: linear-gradient(
        180deg,
        rgba(10,10,10,0.95),
        rgba(10,10,10,0.75)
    );
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}
.nav-center a {
    position: relative;
}

.nav-center a.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 22px;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, #ff004c, #8a2be2);
}
.hero-text button {
    background: linear-gradient(135deg, #ff004c, #8a2be2);
    box-shadow:
        0 0 20px rgba(255, 0, 120, 0.6),
        0 0 40px rgba(140, 60, 255, 0.4);
    transition: 0.3s ease;
}

.hero-text button:hover {
    transform: scale(1.08);
    box-shadow:
        0 0 30px rgba(255, 0, 120, 0.9),
        0 0 60px rgba(140, 60, 255, 0.8);
}
/* ===== SERVER STATUS ===== */
.server-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.5);
    font-size: 13px;
    color: #b6ffb6;
    box-shadow: inset 0 0 10px rgba(0,255,0,0.15);
}

/* GREEN DOT */
.server-status .dot {
    width: 8px;
    height: 8px;
    background: #00ff6a;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,255,100,0.9);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}



