/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #3021a1 0%, #4a3bb8 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.language-selector select {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    background: white;
    color: #333;
    cursor: pointer;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3021a1 0%, #4a3bb8 100%);
    color: white;
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 1.5rem;
}

.hero-image img {
    width: 110%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-play {
    display: inline-block;
    background: #ebd637;
    color: #333;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(235,214,55,0.4);
}

.btn-play:hover {
    background: #d9c530;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(235,214,55,0.6);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #3021a1;
    text-align: center;
    background: linear-gradient(135deg, #3021a1, #4a3bb8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about > p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta {
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    margin: 2rem 0;
    color: #3021a1;
}

.cta-section {
    text-align: center;
    margin: 3rem 0;
}

/* Gameplay Features */
.gameplay-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.feature {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-image img {
    width: 110%;
    max-width: 720px;
    height: auto;
    border-radius: 8px;
    margin-left: -5%;
}

.feature h3 {
    background: linear-gradient(135deg, #3021a1, #4a3bb8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature p {
    margin-bottom: 1rem;
}

/* Video Section */
.video-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.video-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #3021a1, #4a3bb8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-section > p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-placeholder {
    background: linear-gradient(135deg, #3021a1 0%, #4a3bb8 100%);
    border-radius: 10px;
    padding: 5rem 2rem;
    text-align: center;
    color: white;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.video-placeholder p {
    font-size: 1.5rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: white;
}

.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #3021a1, #4a3bb8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #3021a1;
}

.faq-item h3 {
    color: #3021a1;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-info p {
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #4a3bb8;
}

.footer-games h4,
.footer-social h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-games ul {
    list-style: none;
}

.footer-games ul li {
    margin-bottom: 0.5rem;
}

.footer-games ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-games ul li a:hover {
    color: #4a3bb8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #4a3bb8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-image img {
        width: 100%;
        max-width: none;
    }
    
    .gameplay-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .language-selector select {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn-play {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .about h2,
    .video-section h2,
    .faq h2 {
        font-size: 2rem;
    }
}

