/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000;
    z-index: 1000;
    padding: 20px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-left {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link.active {
    color: #00ff88;
}

.nav-link:hover {
    color: #00ff88;
}

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

.logo-icon {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
}

.logo-sub {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #fff;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    border-radius: 3px;
    text-decoration: none;
}

.social-icon:hover {
    color: #00ff88;
}

.subscribe-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.subscribe-btn:hover {
    background-color: #fff;
    color: #000;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Hero Background Styles */
.wheel-world-bg {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 50%, rgba(15, 52, 96, 0.8) 100%), 
                url('img/Wheel World.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.morsels-bg {
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.8) 0%, rgba(17, 153, 142, 0.8) 50%, rgba(56, 239, 125, 0.8) 100%), 
                url('img/Morsels.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.lego-bg {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8) 0%, rgba(247, 147, 30, 0.8) 50%, rgba(255, 215, 0, 0.8) 100%), 
                url('img/legovoyagers.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #00ff88;
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-btn {
    background-color: #000;
    border: 2px solid #00ff88;
    color: #fff;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.play-btn:hover {
    background-color: #00ff88;
    color: #000;
}



/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #00ff88;
    font-size: 24px;
    cursor: pointer;
    z-index: 3;
    padding: 20px;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-nav:hover {
    color: #fff;
}

.hero-nav.prev {
    left: 20px;
}

.hero-nav.next {
    right: 20px;
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #00ff88;
}

/* Games Section */
.games-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.play-now-header {
    text-align: center;
    margin-bottom: 40px;
}

.play-now-btn {
    background-color: #000;
    border: 2px solid #00ff88;
    color: #fff;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.play-now-btn:hover {
    background-color: #00ff88;
    color: #000;
}


/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.game-card {
    background-color: #111;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.game-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.game-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.game-info {
    padding: 20px;
}

.game-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.game-platforms {
    display: flex;
    gap: 10px;
}

.platform-icon {
    width: 20px;
    height: 20px;
    background-color: #333;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 20px;
        padding: 10px 20px;
    }
    
    .nav-left {
        order: 2;
    }
    
    .logo {
        order: 1;
    }
    
    .nav-right {
        order: 3;
        gap: 15px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .hero-nav {
        padding: 15px;
        font-size: 20px;
    }
    
    .hero-nav.prev {
        left: 10px;
    }
    
    .hero-nav.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-left {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 12px;
    }
}

/* Site Footer */
.site-footer {
    background-color: #000;
    border-top: 1px solid #333;
    padding: 30px 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-brand {
    color: #00ff88;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.language-selector:hover {
    opacity: 0.7;
}

.globe-icon {
    font-size: 16px;
}

.language-text {
    color: #00ffff;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-icon {
    color: #00ffff;
    font-size: 12px;
}

.footer-right {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: #00ffff;
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-brand {
        font-size: 1.3rem;
    }
    
    .footer-right {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 20px 15px;
    }
    
    .footer-left {
        gap: 10px;
    }
    
    .footer-brand {
        font-size: 1.2rem;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 15px;
    }
}
