/* Performance Optimizations */
* {
    box-sizing: border-box;
}

/* Optimize animations */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Optimize images */
img {
    max-width: 100%;
    height: auto;
}

/* Optimize tables */
.comparison-table {
    table-layout: fixed;
}

/* Optimize fonts */
body {
    font-display: swap;
}

/* Custom Styles for Chicken Road */

/* Game Hero Background */
.game-hero__bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Table Styles */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

.comparison-table th {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.comparison-table th.center {
    text-align: center;
}

.comparison-table td {
    border: 1px solid #ddd;
    padding: 12px;
}

.comparison-table td.center {
    text-align: center;
}

.comparison-table tr.header-row {
    background-color: #f5f5f5;
}

.comparison-table tr.alt-row {
    background-color: #f9f9f9;
}

/* FAQ Icon Styles */
.faq-icon.minus-icon {
    display: none;
}

/* Footer Support Section */
.site-footer__support {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

.site-footer__support .flag-icon {
    font-size: 24px;
    margin-right: 10px;
}

.site-footer__support .support-email {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.site-footer__support .support-email:hover {
    text-decoration: underline;
}

/* Publication Date */
.publication-date-container {
    text-align: center;
    padding: 20px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.publication-date {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    margin: 0;
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-table-wrapper {
        margin: 15px 0;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px;
        font-size: 14px;
    }
    
    .site-footer__support .flag-icon {
        font-size: 20px;
        margin-right: 8px;
    }
    
    .site-footer__support .support-email {
        font-size: 14px;
    }
    
    .publication-date-container {
        padding: 15px 0;
    }
    
    .publication-date {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .comparison-table th,
    .comparison-table td {
        padding: 6px;
        font-size: 12px;
    }
    
    .site-footer__support {
        padding: 10px 0;
        margin-bottom: 15px;
    }
    
    .site-footer__support .flag-icon {
        font-size: 18px;
        margin-right: 6px;
    }
    
    .site-footer__support .support-email {
        font-size: 13px;
    }
    
    .publication-date-container {
        padding: 10px 0;
    }
    
    .publication-date {
        font-size: 12px;
    }
}
