/* General Reset */
* {
    margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif;
}
body { background-color: #0b0d0f; color: #fff; line-height: 1.6; overflow-x: hidden; }

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 8%; background: #16191c; position: sticky; top: 0; z-index: 1000;
    border-bottom: 2px solid #ff9900;
}
.logo { font-size: 26px; font-weight: 900; color: #ff9900; text-transform: uppercase; }
.logo span { color: #fff; }
.nav-links { list-style: none; display: flex; gap: 25px; }
.nav-links a { color: #fff; text-decoration: none; font-weight: 500; }
.btn-login { background: #ff9900; border: none; padding: 10px 25px; border-radius: 5px; cursor: pointer; font-weight: bold; }

/* Hero Section */
.hero { display: flex; align-items: center; justify-content: space-between; padding: 60px 8%; background: #0b0d0f; }
.hero-content h1 { font-size: 3rem; margin-bottom: 20px; }
.hero-content span { color: #ff9900; }
.btn-wa { background: #25d366; color: white; padding: 15px 30px; text-decoration: none; border-radius: 5px; font-weight: bold; display: inline-block; }
.hero-image img { width: 100%; max-width: 450px; border-radius: 15px; }

/* HERO LOGO ONLY SECTION */
.hero-logo-only {
    height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    max-width: 280px;
    width: 80%;
    animation: fadeZoom 2s ease-in-out infinite alternate;
}

@keyframes fadeZoom {
    from {
        transform: scale(1);
        opacity: 0.8;
    }
    to {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Features Bar */
.features-bar {
    display: flex; justify-content: center; align-items: center; gap: 50px;
    padding: 25px 8%; background: #16191c; border-bottom: 1px solid #333;
}
.feature-item { display: flex; align-items: center; gap: 10px; color: #ff9900; font-weight: bold; }

/* Full Size Promo Image Section */
.full-promo-banner {
    width: 100%;
    padding: 20px 8%; /* Centers it with the rest of the layout */
    text-align: center;
}
.full-promo-banner img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

/* Games Section */
.games-section { padding: 60px 8%; text-align: center; }
.game-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; margin-top: 30px; }
.game-card { background: #1a1e23; padding: 15px; border-radius: 12px; border: 1px solid #333; transition: 0.3s; }
.game-card:hover { border-color: #ff9900; transform: translateY(-5px); }
.game-card img { width: 100%; border-radius: 8px; margin-bottom: 15px; }
.game-card button { width: 100%; padding: 10px; background: #ff9900; border: none; font-weight: bold; cursor: pointer; border-radius: 5px; }

/* About Content Area */
.about-content-area {
    padding: 60px 8%;
    background: #111418;
}
.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #1a1e23;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #ff9900;
}
.about-content-area h2 {
    color: #ff9900;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
}
.about-content-area p {
    margin-bottom: 20px;
    color: #ccc;
    font-size: 1.1rem;
    text-align: justify;
}

/* Full-screen overlay */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff; /* Change to match your site's theme */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensures it stays on top */
    transition: opacity 0.5s ease; /* Smooth fade out */
}

/* Size of your animation */
#loading-screen img {
    width: 500px; /* Adjust based on your image size */
    height: auto;
}

/* Hide content initially (Optional) */
#main-content {
    display: none;
}

/* Telegram Section */
.social-join { padding: 50px 8%; text-align: center; }
.social-container { display: flex; justify-content: center; gap: 20px; margin-top: 20px; }
.social-card { padding: 15px 30px; border-radius: 8px; text-decoration: none; color: #fff; font-weight: bold; display: flex; align-items: center; gap: 10px; }
.telegram-channel { background: #0088cc; }
.telegram-group { background: #00a2ed; }
.whatsapp-channel { background: #25d366;}
.instagram { background: #AA336A;}

/* WhatsApp Fixed Pill Button */
.whatsapp-fixed-pill {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-fixed-pill i {
    font-size: 26px;
}

.whatsapp-fixed-pill:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .whatsapp-fixed-pill {
        bottom: 20px;
        right: 15px;
        font-size: 16px;
        padding: 12px 18px;
    }

    .whatsapp-fixed-pill i {
        font-size: 22px;
    }
}

/* WhatsApp Fixed */
.whatsapp-fixed {
    position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white;
    width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.4); z-index: 1000; text-decoration: none;
}
.whatsapp-fixed .tooltip {
    position: absolute; right: 75px; background: #fff; color: #000; padding: 5px 10px;
    border-radius: 5px; font-size: 14px; font-weight: bold; opacity: 0; transition: 0.3s;
}
.whatsapp-fixed:hover .tooltip { opacity: 1; }

footer { text-align: center; padding: 25px; background: #16191c; border-top: 1px solid #333; }

/* Support Section */
.support-section {
    padding: 60px 8%;
    background: #0b0d0f;
}

.support-box {
    max-width: 850px;
    margin: 0 auto;
    background: linear-gradient(135deg, #16191c, #1a1e23);
    border: 1px solid #ff9900;
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,0.55);
}

/* Heading */
.support-centre {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.support-title {
    color: #ff9900;
    font-weight: 900;
    letter-spacing: 1.2px;
    font-size: 1.05rem;
}

.support-subtitle {
    color: #ccc;
    font-size: 1rem;
}

/* Contact Area */
.support-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* Phone */
.support-phone {
    color: #25d366;
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.support-phone i {
    font-size: 1.2rem;
}

/* Email */
.support-email {
    color: #ff9900;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.support-email i {
    font-size: 1.1rem;
}

/* Availability Badge */
.support-availability {
    margin-top: 6px;
    background: #1a1e23;
    color: #aaa;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid #333;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .support-phone {
        font-size: 1.3rem;
    }

    .support-email {
        font-size: 0.95rem;
    }
}


/* FOOTER */
.main-footer {
    background: #16191c;
    padding: 60px 8% 25px;
    border-top: 2px solid #ff9900;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: #ff9900;
    font-weight: 900;
}

.footer-brand h3 span {
    color: #ffffff;
}

.footer-brand p {
    margin-top: 15px;
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: #ff9900;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #ccc;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff9900;
    padding-left: 5px;
}

.footer-contact p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #25d366;
}

/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid #333;
    color: #777;
    font-size: 0.85rem;
}

/* HAMBURGER ICON */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ff9900;
    border-radius: 2px;
}
/* HIDE MOBILE BUTTON BY DEFAULT (DESKTOP) */
.mobile-btn {
    display: none;
}



/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }
    .desktop-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #16191c;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 25px 0;
        display: none;
        border-bottom: 2px solid #ff9900;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        list-style: none;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .mobile-btn {
        display: block;
        width: 160px;
    }

}