/* Mobile-First Design for Chicken Road 2 */
:root {
    --primary: #FF6B35;
    --secondary: #FFD93D;
    --accent: #6BCF7F;
    --dark: #2C3E50;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --text: #333333;
    --text-light: #666666;
    --border: #E0E0E0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FFD93D 100%);
    --gradient-secondary: linear-gradient(135deg, #6BCF7F 0%, #4DAFB4 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    font-size: 16px;
}

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

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

/* Header - Mobile First */
.header {
    background: var(--gradient-primary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

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

.nav {
    display: none;
}

.btn-play {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-play:hover {
    background-color: #5AB56F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section - Mobile First */
.hero {
    background: var(--gradient-primary);
    padding: 2rem 0;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-text {
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    display: block;
    color: var(--secondary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--white);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #5AB56F;
    transform: translateY(-3px);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Demo Section - Mobile First */
.demo-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.demo-wrapper {
    background-color: var(--dark);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
}

.demo-iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.demo-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-card {
    background-color: var(--light);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.info-icon {
    font-size: 1.5rem;
}

.demo-cta {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-primary);
    border-radius: 15px;
}

.demo-cta p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.btn-large {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* About Game Section */
.about-game {
    padding: 3rem 0;
    background-color: var(--light);
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text h2 {
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text);
}

.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background-color: var(--white);
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.about-image {
    text-align: center;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.content-img {
    width: 100%;
    border-radius: 10px;
    margin: 1rem 0;
    box-shadow: var(--shadow);
}

/* Rules Section */
.rules-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.rules-content {
    margin-top: 2rem;
}

.rule-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-direction: column;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    margin: 0 auto;
}

.step-content h3 {
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.difficulty-table {
    background-color: var(--light);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.diff-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.5rem;
    padding: 0.75rem;
    background-color: var(--white);
    margin-bottom: 0.5rem;
    border-radius: 8px;
    align-items: center;
}

.diff-name {
    font-weight: bold;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
}

.diff-name.easy { background-color: #6BCF7F; color: white; }
.diff-name.medium { background-color: #FFD93D; color: #333; }
.diff-name.hard { background-color: #FF6B35; color: white; }
.diff-name.hardcore { background-color: #E74C3C; color: white; }

.diff-lanes, .diff-multi {
    font-size: 0.9rem;
    color: var(--text);
}

.strategy-tips {
    background-color: #FFF9E6;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
    margin-top: 1rem;
}

.strategy-tips h4 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.strategy-tips ul {
    list-style: none;
    padding: 0;
}

.strategy-tips li {
    padding: 0.5rem 0;
    color: var(--text);
}

.game-features {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--light);
    border-radius: 15px;
}

.game-features h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-box {
    background-color: var(--white);
    padding: 1.25rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.box-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.feature-box h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-box p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Casinos Section */
.casinos-section {
    padding: 3rem 0;
    background-color: var(--light);
}

.casinos-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.casino-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.casino-rank {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
}

.casino-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.casino-logo {
    text-align: center;
}

.casino-logo img {
    max-width: 150px;
    height: auto;
}

.casino-info h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stars {
    color: #FFD700;
}

.rating-text {
    color: var(--text);
    font-weight: 600;
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-badge {
    background-color: var(--light);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    color: var(--text);
}

.casino-bonus {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE9B3 100%);
    padding: 1.25rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.bonus-main {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.bonus-desc {
    color: var(--text);
    font-size: 1rem;
}

.bonus-details {
    font-size: 0.85rem;
    color: var(--text-light);
}

.bonus-details p {
    margin: 0.25rem 0;
}

.casino-cta {
    text-align: center;
}

.btn-casino {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-casino:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.casinos-footer {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #FFF9E6;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.disclaimer {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Bonus Section */
.bonus-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.bonus-section h2 {
    text-align: center;
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.bonus-card {
    background-color: var(--light);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.bonus-header h3 {
    color: var(--dark);
    font-size: 1.2rem;
}

.bonus-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bonus-badge.hot {
    background-color: #FF6B35;
    color: white;
}

.bonus-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}

.bonus-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.bonus-list li {
    padding: 0.5rem 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.bonus-list li:last-child {
    border-bottom: none;
}

.btn-bonus {
    display: block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
    background-color: var(--light);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light);
}

.faq-question h3 {
    color: var(--dark);
    font-size: 1.1rem;
    flex: 1;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    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 p {
    padding: 0 1.25rem 1.25rem;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

/* Final CTA */
.final-cta {
    padding: 3rem 0;
    background: var(--gradient-primary);
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background-color: var(--white);
    color: var(--primary);
}

.btn-cta-secondary {
    background-color: var(--accent);
    color: var(--white);
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 2.5rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: #B0B0B0;
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #B0B0B0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #B0B0B0;
    font-size: 0.85rem;
    margin: 0.5rem 0;
}

.disclaimer-text {
    font-size: 0.75rem !important;
    line-height: 1.5;
    max-width: 800px;
    margin: 0.75rem auto !important;
}

.disclaimer-text a {
    color: var(--secondary);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: var(--white);
    padding: 1rem;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 0.9rem;
    margin: 0;
}

.cookie-content a {
    color: var(--secondary);
}

.btn-cookie {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie:hover {
    transform: translateY(-2px);
}

/* Desktop Styles */
@media (min-width: 768px) {
    .nav {
        display: flex;
        gap: 1.5rem;
    }
    
    .nav-link {
        color: var(--white);
        font-weight: 600;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .logo img {
        height: 55px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-content {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-text {
        text-align: left;
        flex: 1;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-image {
        flex: 1;
    }
    
    .demo-iframe {
        height: 650px;
    }
    
    .demo-info {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-grid {
        flex-direction: row;
        align-items: center;
    }
    
    .about-text, .about-image {
        flex: 1;
    }
    
    .rule-step {
        flex-direction: row;
    }
    
    .step-number {
        margin: 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .container {
        padding: 0 40px;
    }
}