/* --- RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Red Hat Display', sans-serif;
    background-color: #fff;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scrollbar on mobile */
}

/* --- HEADER STYLES --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    height: 95px;
}

.company-name {
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.1;
    color: #e63900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15); 
}

.nav-link {
    text-decoration: none;
    color: #e63900;
    font-weight: 700;
    font-size: 1.2rem;
    margin-left: 30px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #bf0000;
}

/* --- HERO / SLIDER SECTION --- */
.hero-section {
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at 50% 50%, #e9ad13, #bf0000);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; 
    padding-top: 160px;
    overflow: hidden;
    position: relative; /* Crucial for positioning arrows on mobile */
}

.slider-container {
    max-width: 1200px; 
    overflow: hidden;
    display: flex;
    padding: 60px 40px; 
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

.slider-track {
    display: flex;
    gap: 50px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0; 
}

/* Slider Arrows (Desktop Default) */
.slider-arrow {
    background: #f0f0f0;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: transform 0.2s;
    z-index: 10;
    flex-shrink: 0;
    margin-top: -80px; 
}

.slider-arrow:hover {
    transform: scale(1.1);
}

/* Game Card Area */
.game-showcase {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.game-artwork-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.game-artwork-link:hover .game-image {
    transform: scale(1.02);
    filter: brightness(1.05);
    transition: all 0.3s ease;
}

.game-image {
    width: 350px;
    height: 350px;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    object-fit: cover;
    animation: float 3s ease-in-out infinite; 
    transition: all 0.3s ease;
}

.game-image:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
}

.playstore-link img {
    height: 80px;
    transition: transform 0.2s;
}

.playstore-link img:hover {
    transform: scale(1.05);
}

/* --- FOOTER STYLES --- */
footer {
    width: 100%;
    background-color: #fff;
    padding: 30px 50px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
}

.social-icons {
    position: absolute;
    right: 0;
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #e63900;
    font-size: 2rem;
    transition: transform 0.2s;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

/* --- ANIMATIONS --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --- PRIVACY PAGE SPECIFIC STYLES --- */
.content-container {
    padding-top: 120px;
    padding-bottom: 50px;
    background-color: #f9f9f9;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.policy-text {
    max-width: 800px;
    width: 90%;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.policy-text h1 {
    color: #e63900;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.last-updated {
    color: #666;
    margin-bottom: 20px;
}

.divider {
    border: none;
    border-top: 2px solid #eee;
    margin: 20px 0;
}

.policy-text h2 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #e63900;
    padding-left: 15px;
}

.policy-text p, .policy-text li {
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.policy-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-text a {
    color: #e63900;
    font-weight: 700;
    text-decoration: none;
}

.policy-text a:hover {
    text-decoration: underline;
}

.contact-box {
    background-color: #fff5f2;
    padding: 20px;
    border-radius: 10px;
    border: 1px dashed #e63900;
    margin-top: 20px;
}

/* --- COMING SOON BADGE --- */
.coming-soon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    color: #ffffff;
    height: 80px;
    width: 200px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s;
    cursor: default;
}

/* --- UNIVERSAL MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .navbar {
        padding: 0 15px;
        height: 80px;
    }

    .logo-icon {
        height: 50px;
    }

    .company-name {
        font-size: 1.1rem;
    }

    .nav-link {
        font-size: 0.9rem;
        margin-left: 10px;
    }

    .hero-section {
        padding-top: 100px;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    /* FLUID CONTAINER: Scales with the screen */
    .slider-container {
        /* This says: Be 75% of screen width, but min 250px and max 350px */
        width: clamp(250px, 75vw, 350px); 
        padding: 60px 0 !important; 
        margin: 0 auto;
        overflow: visible !important; 
        display: block;
        position: relative;
    }

    .slider-track {
        gap: 50px; /* Consistent spacing between cards */
        display: flex;
    }

    .game-showcase {
        /* Force the card to match the fluid container width */
        flex: 0 0 100%; 
        width: 100%;
        margin: 0;
        overflow: visible; 
    }

    .game-image {
        /* Image fills the fluid card width */
        width: 100%; 
        max-width: 320px;
        height: auto;
        aspect-ratio: 1 / 1; /* Keeps it a perfect square */
        border-radius: 30px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2); 
    }
    
    .slider-arrow {
        position: absolute !important;
        top: 60% !important; 
        transform: translateY(-50%) !important;
        width: 45px;
        height: 45px;
        /* FIX: Changed from 1000 to 900 to sit below the Navbar */
        z-index: 900; 
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid #ddd;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    #prevBtn {
        left: 15px !important;
    }

    #nextBtn {
        right: 15px !important;
    }

    .playstore-link img, .coming-soon {
        height: 48px;
        width: 140px;
        font-size: 0.85rem;
        margin-top: 10px;
    }

    /* Footer adjustments */
    footer { padding: 30px 20px; }
    .footer-content { flex-direction: column; gap: 20px; }
    .footer-links { flex-direction: column; align-items: center; gap: 12px; }
    .social-icons { position: static; margin-top: 5px; }
}