/* Base Styles */
:root {
    --primary-color: #0066cc;
    --secondary-color: #00aa55;
    --accent-color: #ff6600;
    --light-bg: #f5f5f5;
    --dark-bg: #222;
    --text-color: #333;
    --text-light: #777;
    --border-color: #ddd;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 40px;
}

h3 {
    font-size: 1.5rem;
    margin-top: 30px;
}

p {
    margin-bottom: 15px;
}

section {
    padding: 50px 0;
}

/* Header */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

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

header h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

header nav ul {
    display: flex;
}

header nav li {
    margin-left: 20px;
}

header nav a {
    color: white;
    font-weight: 600;
}

header nav a:hover {
    color: var(--warning-color);
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e65c00;
    color: white;
}

/* Featured Offers */
.featured-offers {
    padding: 60px 0;
}

.featured-offers h2 {
    text-align: center;
    margin-bottom: 40px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offer-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-card.featured {
    border: 2px solid var(--accent-color);
}

.offer-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: center;
}

.offer-header h3 {
    margin: 0 0 10px;
}

.bonus-amount {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.offer-details {
    padding: 20px;
}

.offer-details p {
    margin-bottom: 15px;
}

.offer-details ul {
    margin-bottom: 20px;
}

.offer-details li {
    padding: 5px 0;
    border-bottom: 1px solid var(--border-color);
}

.offer-card .cta-button {
    display: block;
    text-align: center;
    margin: 0 20px 20px;
}

.see-all {
    text-align: center;
    margin-top: 40px;
}

.see-all a {
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: underline;
}

/* How It Works */
.how-it-works {
    background-color: var(--light-bg);
    text-align: center;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.step {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    flex: 1 1 200px;
    max-width: 250px;
}

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

.step h3 {
    margin-top: 0;
}

/* Info Content */
.info-content {
    padding: 60px 0;
}

.info-content h2 {
    margin-bottom: 30px;
}

.info-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.info-content ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.french-link {
    margin-top: 40px;
    padding: 15px;
    background-color: #f0f0f0;
    border-radius: 5px;
    text-align: center;
}

/* All Offers Table */
.offers-table {
    overflow-x: auto;
}

.offers-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.offers-table th {
    background-color: var(--primary-color);
    color: white;
    text-align: left;
    padding: 15px;
}

.offers-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.offers-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.offers-table .bookmaker {
    font-weight: 600;
}

.offers-table .bonus {
    font-weight: 700;
    color: var(--secondary-color);
}

.offers-table .conditions ul {
    margin: 0;
    padding-left: 20px;
}

.offers-table .conditions li {
    font-size: 0.9rem;
}

.offers-table .action {
    text-align: center;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    text-align: left;
    padding: 15px;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.comparison-table .rating {
    display: flex;
    flex-direction: column;
}

.comparison-table .stars {
    color: var(--warning-color);
    font-size: 1.2rem;
}

.comparison-table .rating-text {
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Criteria Grid */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.criterion {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.criterion h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

/* Comparison Conclusion */
.comparison-conclusion {
    background-color: #f0f0f0;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.comparison-conclusion h3 {
    margin-top: 0;
}

/* Betting Tips */
.betting-tips {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tip-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin-bottom: 30px;
}

.tip-card h3 {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    margin: 0;
}

.tip-content {
    padding: 20px;
}

.tip-content h4 {
    margin-top: 20px;
    color: var(--primary-color);
}

.tip-content ul, .tip-content ol {
    margin: 15px 0;
    padding-left: 20px;
}

.tip-content li {
    margin-bottom: 10px;
}

.betting-strategy {
    background-color: var(--light-bg);
}

/* FAQ */
.faq-container {
    margin: 40px 0;
}

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

.faq-item h3 {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    margin: 0;
    cursor: pointer;
}

.faq-answer {
    padding: 20px;
}

.faq-answer ol, .faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer ol li {
    list-style-type: decimal;
    margin-bottom: 10px;
}

.faq-answer ul li {
    list-style-type: disc;
    margin-bottom: 10px;
}

.additional-questions {
    background-color: #f0f0f0;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.additional-questions h3 {
    margin-top: 0;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 40px 0;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-disclaimer {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
}

.footer-copyright {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    header nav {
        margin-top: 20px;
    }
    
    header nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    header nav li {
        margin: 10px 0;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        max-width: 100%;
    }
    
    .offers-table table {
        font-size: 0.9rem;
    }
    
    .offers-table th, .offers-table td {
        padding: 10px;
    }
    
    .offers-table .conditions ul {
        padding-left: 15px;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
    }
}