/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #1f2937;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo img {
    height: 40px;
    width: auto;
}

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

.nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #ffd900;
}

.header-buttons {
    display: flex;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #ffd900;
    color: #1f2937;
    border-color: #ffd900;
}

.btn-primary:hover {
    background-color: #e6c300;
    border-color: #e6c300;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 217, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #ffd900;
    border-color: #ffd900;
}

.btn-secondary:hover {
    background-color: #ffd900;
    color: #1f2937;
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #1f2937;
}

.btn-large {
    padding: 16px 40px;
    font-size: 17px;
}

/* Hero Section */
.hero {
    background-color: #fff;
    padding: 30px 0;
}

.banner-link {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-banner {
    width: 100%;
    height: auto;
}

/* Content Sections */
.intro,
.content-section,
.games-section,
.features-section,
.faq-section {
    padding: 60px 0;
}

.intro {
    background-color: #fff;
}

.content-section {
    background-color: #f9fafb;
}

.games-section {
    background-color: #fff;
}

.features-section {
    background-color: #f9fafb;
}

.faq-section {
    background-color: #fff;
}

/* Typography */
h1 {
    font-size: 42px;
    color: #1f2937;
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: 36px;
    color: #1f2937;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

h3 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 600;
}

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

p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.8;
}

ul {
    list-style: none;
    margin: 25px 0;
}

ul li {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd900;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    margin: 40px 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.game-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #ffd900;
}

.game-card h3 {
    margin-bottom: 15px;
    color: #1f2937;
}

.game-card p {
    margin-bottom: 20px;
    color: #6b7280;
}

/* Feature Block */
.feature-block {
    background-color: #fff;
    padding: 35px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* FAQ Section */
.faq-item {
    background-color: #f9fafb;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: #1f2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f3f4f6;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #ffd900;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer div {
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    margin-bottom: 10px;
}

/* Legal Notice */
.legal-notice {
    background-color: #1f2937;
    padding: 30px 0;
}

.legal-notice p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #111827;
    color: #9ca3af;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column ul {
    margin: 0;
}

.footer-column li {
    padding-left: 0;
    margin-bottom: 10px;
}

.footer-column li:before {
    content: none;
}

.footer-column a {
    color: #d1d5db;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffd900;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        padding-top: 15px;
        border-top: 1px solid #374151;
        flex-wrap: wrap;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .header-buttons {
        order: 2;
    }
    
    .btn {
        padding: 10px 22px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 32px;
        font-size: 16px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 22px;
    }
    
    p, ul li {
        font-size: 16px;
    }
    
    .intro,
    .content-section,
    .games-section,
    .features-section,
    .faq-section {
        padding: 40px 0;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        flex-direction: column;
    }
    
    .cta-section .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .logo img {
        height: 35px;
    }
    
    .nav {
        gap: 10px;
        padding-top: 12px;
    }
    
    .header-buttons {
        gap: 8px;
    }
    
    .btn {
        padding: 9px 18px;
        font-size: 13px;
    }
    
    .btn-large {
        padding: 12px 28px;
        font-size: 15px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    p, ul li {
        font-size: 15px;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    .intro,
    .content-section,
    .games-section,
    .features-section,
    .faq-section {
        padding: 30px 0;
    }
    
    .game-card,
    .feature-block {
        padding: 25px 20px;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 16px;
    }
    
    .faq-answer div {
        padding: 0 20px 16px 20px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}