/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: #f7f7f7;
    color: #222;
    line-height: 1.6;
}

/* Header and Navigation */
header {
    background: #1A2238;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
}

.logo img {
    height: 40px;
    width: auto;
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #FFD600;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #FFD600;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: .2s;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-links li a:hover {
    color: #fff;
    background: rgba(255, 214, 0, 0.1);
}

.nav-links li a.active {
    background: #FFD600;
    color: #1A2238;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 80px 16px 40px 16px;
    background: #FFD600;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-section h1 {
    font-size: 3rem;
    color: #1A2238;
    margin-bottom: 12px;
    font-weight: 800;
}

.hero-section h2 {
    font-size: 1.5rem;
    color: #1A2238;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    background: #1A2238;
    color: #FFD600;
    padding: 16px 40px;
    border-radius: 32px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 32px;
    transition: .2s;
    box-shadow: 0 4px 15px rgba(26, 34, 56, 0.3);
}

.cta-btn:hover {
    background: #111;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 34, 56, 0.4);
}

.hero-img {
    margin-top: 32px;
    max-width: 320px;
    width: 100%;
    height: auto;
}

/* Content Sections */
.keywords-section, .betting-section, .faq-section, .gallery-section, .contact-section {
    max-width: 1100px;
    margin: 48px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
    padding: 40px 24px;
}

.keywords-section h2, .betting-section h2, .faq-section h2, .gallery-section h2, .contact-section h2 {
    color: #1A2238;
    font-size: 2rem;
    margin-bottom: 24px;
    text-align: center;
}

/* Keyword and Betting Blocks */
.keyword-block, .betting-module {
    margin-bottom: 32px;
    padding: 24px;
    border-left: 4px solid #FFD600;
    background: #fafafa;
    border-radius: 8px;
    transition: transform 0.2s;
}

.keyword-block:hover, .betting-module:hover {
    transform: translateX(5px);
}

.keyword-block h3, .betting-module h3 {
    color: #1A2238;
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.keyword-block p, .betting-module p {
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* Platform Info Sections */
.platform-intro, .platform-prospects, .platform-development {
    margin-bottom: 32px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.platform-intro h3, .platform-prospects h3, .platform-development h3 {
    color: #1A2238;
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.platform-intro p, .platform-prospects p, .platform-development p {
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* FAQ Section */
.faq-items {
    margin-top: 32px;
}

.faq-item {
    margin-bottom: 24px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 3px solid #FFD600;
    transition: all 0.2s;
}

.faq-item:hover {
    background: #f0f1f2;
    transform: translateX(3px);
}

.faq-item h4 {
    color: #1A2238;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Gallery */
.gallery {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    background: #eee;
    transition: transform 0.2s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section p {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.contact-section a {
    color: #1A2238;
    text-decoration: none;
    font-weight: 600;
}

.contact-section a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    justify-content: center;
}

.social-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: #1A2238;
    color: #FFD600;
    text-align: center;
    padding: 24px 0;
    margin-top: 40px;
}

.footer-links {
    margin-bottom: 16px;
}

.footer-links a {
    color: #FFD600;
    margin: 0 8px;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

footer p a {
    color: #FFD600;
    text-decoration: none;
}

/* Mobile Responsive Design */
@media (max-width: 1200px) {
    .keywords-section, .betting-section, .faq-section, .gallery-section, .contact-section {
        margin: 32px 16px;
        padding: 32px 20px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        flex-direction: row;
        height: 64px;
        padding: 0 20px;
        position: relative;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1A2238;
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        max-height: 0;
        overflow: hidden;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        max-height: 400px;
    }
    
    .nav-links li {
        border-bottom: 1px solid rgba(255, 214, 0, 0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links li a {
        display: block;
        padding: 16px 20px;
        text-align: left;
        font-size: 16px;
        border-radius: 0;
    }
    
    .nav-links li a:hover {
        background: rgba(255, 214, 0, 0.1);
    }
    
    /* Hero Section */
    .hero-section {
        padding: 60px 16px 32px 16px;
        min-height: 50vh;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .hero-section h2 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .cta-btn {
        padding: 14px 32px;
        font-size: 1.1rem;
        margin-bottom: 24px;
    }
    
    .hero-img {
        max-width: 280px;
        margin-top: 24px;
    }
    
    /* Content Sections */
    .keywords-section, .betting-section, .faq-section, .gallery-section, .contact-section {
        margin: 24px 12px;
        padding: 24px 16px;
        border-radius: 12px;
    }
    
    .keywords-section h2, .betting-section h2, .faq-section h2, .gallery-section h2, .contact-section h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    /* Blocks */
    .keyword-block, .betting-module {
        margin-bottom: 24px;
        padding: 20px;
    }
    
    .keyword-block h3, .betting-module h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .keyword-block p, .betting-module p {
        font-size: 0.95rem;
    }
    
    /* Platform Info */
    .platform-intro, .platform-prospects, .platform-development {
        margin-bottom: 24px;
        padding: 20px;
    }
    
    .platform-intro h3, .platform-prospects h3, .platform-development h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .platform-intro p, .platform-prospects p, .platform-development p {
        font-size: 0.95rem;
    }
    
    /* FAQ */
    .faq-item {
        margin-bottom: 20px;
        padding: 16px;
    }
    
    .faq-item h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .faq-item p {
        font-size: 0.95rem;
    }
    
    /* Gallery */
    .gallery {
        gap: 12px;
    }
    
    .gallery img {
        width: 140px;
        height: 90px;
    }
    
    /* Contact */
    .contact-section p {
        font-size: 1rem;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icons img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    /* Navigation */
    .navbar {
        padding: 12px 16px;
    }
    
    .logo img {
        height: 32px;
    }
    
    .nav-links li a {
        font-size: 15px;
        padding: 10px 12px;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 40px 12px 24px 12px;
        min-height: 40vh;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }
    
    .hero-section h2 {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .cta-btn {
        padding: 12px 28px;
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-img {
        max-width: 240px;
        margin-top: 20px;
    }
    
    /* Content Sections */
    .keywords-section, .betting-section, .faq-section, .gallery-section, .contact-section {
        margin: 16px 8px;
        padding: 20px 12px;
        border-radius: 8px;
    }
    
    .keywords-section h2, .betting-section h2, .faq-section h2, .gallery-section h2, .contact-section h2 {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }
    
    /* Blocks */
    .keyword-block, .betting-module {
        margin-bottom: 20px;
        padding: 16px;
    }
    
    .keyword-block h3, .betting-module h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .keyword-block p, .betting-module p {
        font-size: 0.9rem;
    }
    
    /* Platform Info */
    .platform-intro, .platform-prospects, .platform-development {
        margin-bottom: 20px;
        padding: 16px;
    }
    
    .platform-intro h3, .platform-prospects h3, .platform-development h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .platform-intro p, .platform-prospects p, .platform-development p {
        font-size: 0.9rem;
    }
    
    /* FAQ */
    .faq-item {
        margin-bottom: 16px;
        padding: 14px;
    }
    
    .faq-item h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .faq-item p {
        font-size: 0.9rem;
    }
    
    /* Gallery */
    .gallery {
        gap: 8px;
    }
    
    .gallery img {
        width: 120px;
        height: 80px;
    }
    
    /* Contact */
    .contact-section p {
        font-size: 0.95rem;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icons img {
        width: 24px;
        height: 24px;
    }
    
    /* Footer */
    footer {
        padding: 20px 0;
    }
    
    .footer-links a {
        display: block;
        margin: 4px 0;
    }
    
    footer p {
        font-size: 0.85rem;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 360px) {
    .hero-section h1 {
        font-size: 1.6rem;
    }
    
    .hero-section h2 {
        font-size: 0.9rem;
    }
    
    .cta-btn {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
    
    .gallery img {
        width: 100px;
        height: 70px;
    }
} 