/* Betrebels Review Site CSS */
:root {
    --primary: #d32f2f;
    --primary-dark: #b71c1c;
    --secondary: #1976d2;
    --success: #388e3c;
    --dark: #212121;
    --light: #f5f5f5;
    --white: #ffffff;
    --gray: #757575;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

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

/* Header */
.header {
    background: var(--dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo { text-decoration: none; }
.logo-text { font-size: 24px; font-weight: 700; color: var(--white); }
.logo-text span { color: var(--primary); }

.nav-menu { display: flex; list-style: none; gap: 5px; flex-wrap: wrap; }
.nav-menu a {
    color: var(--white);
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.3s;
    font-size: 14px;
}
.nav-menu a:hover, .nav-menu a.active { background: var(--primary); }

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.hero h1 { font-size: 2.2rem; margin-bottom: 20px; }
.hero p { font-size: 1.1rem; max-width: 800px; margin: 0 auto; opacity: 0.9; }
.hero-badge { background: var(--success); padding: 5px 15px; border-radius: 20px; font-size: 14px; display: inline-block; margin-bottom: 15px; }
.hero-rating { margin: 20px 0; }
.hero-rating .stars { color: gold; font-size: 24px; }
.hero-rating .score { font-size: 20px; margin-left: 10px; }
.hero-cta { margin-top: 30px; display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Trust Bar */
.trust-bar { background: var(--white); padding: 15px 0; border-bottom: 1px solid #ddd; }
.trust-items { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.trust-icon { font-size: 20px; }

/* Breadcrumb */
.breadcrumb { background: var(--white); padding: 15px 0; border-bottom: 1px solid #eee; }
.breadcrumb-list { display: flex; list-style: none; gap: 10px; font-size: 14px; }
.breadcrumb-list a { color: var(--secondary); text-decoration: none; }
.breadcrumb-list li:not(:last-child)::after { content: "›"; margin-left: 10px; color: var(--gray); }

/* Content */
.section { padding: 40px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 300px; gap: 30px; }
.article-content { background: var(--white); padding: 30px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }

h2 { color: var(--dark); margin: 30px 0 15px; font-size: 1.5rem; border-bottom: 2px solid var(--primary); padding-bottom: 10px; }
h3 { color: var(--dark); margin: 25px 0 10px; font-size: 1.2rem; }
p { margin-bottom: 15px; }
ul, ol { margin: 15px 0 15px 25px; }
li { margin-bottom: 8px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: var(--secondary); color: var(--white); }
.btn-success { background: var(--success); color: var(--white); }
.btn-lg { padding: 15px 35px; font-size: 16px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* Info Box */
.info-box, .quick-info-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid var(--primary);
}
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-top: 15px; }
.info-item { display: flex; justify-content: space-between; padding: 10px; background: var(--white); border-radius: 5px; }
.info-item .label { color: var(--gray); font-size: 14px; }
.info-item .value { font-weight: 600; }

/* Bonus Grid */
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin: 20px 0; }
.bonus-card {
    background: var(--white);
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.bonus-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.badge { background: var(--primary); color: var(--white); padding: 5px 15px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.bonus-amount { font-size: 48px; font-weight: 700; color: var(--primary); margin: 15px 0; }
.bonus-percent { font-size: 18px; color: var(--gray); margin-bottom: 15px; }
.bonus-card ul { text-align: left; list-style: none; margin: 15px 0; }
.bonus-card li { padding: 8px 0; border-bottom: 1px solid #eee; font-size: 14px; }

/* Tables */
.table-responsive { overflow-x: auto; margin: 20px 0; }
.table-striped { width: 100%; border-collapse: collapse; }
.table-striped th, .table-striped td { padding: 12px 15px; text-align: left; border-bottom: 1px solid #eee; }
.table-striped th { background: var(--dark); color: var(--white); font-weight: 600; }
.table-striped tr:nth-child(even) { background: #f8f9fa; }
.table-striped tr:hover { background: #e9ecef; }

/* Providers Grid */
.providers-grid { display: flex; flex-wrap: wrap; gap: 10px; margin: 15px 0; }
.providers-grid span, .provider-tag {
    background: #e9ecef;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
}
.provider { background: #f8f9fa; padding: 15px; border-radius: 8px; margin: 5px 0; }

/* Sports Grid */
.sports-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin: 20px 0; }
.sport-category { background: #f8f9fa; padding: 20px; border-radius: 10px; }
.sport-category h4 { margin-bottom: 15px; color: var(--primary); }
.sport-category ul { margin: 0; list-style: none; }

/* Steps */
.steps, .steps-container { margin: 20px 0; }
.step { display: flex; gap: 20px; margin-bottom: 20px; padding: 20px; background: #f8f9fa; border-radius: 10px; }
.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.step-content h3 { margin-top: 0; }

/* Pros Cons */
.pros-cons-grid, .pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0; }
.pros-box, .pros { background: #e8f5e9; padding: 20px; border-radius: 10px; }
.cons-box, .cons { background: #ffebee; padding: 20px; border-radius: 10px; }
.pros-box h3, .pros h3 { color: var(--success); }
.cons-box h3, .cons h3 { color: var(--primary); }

/* FAQ */
.faq-section { margin: 20px 0; }
.faq-item { background: #f8f9fa; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
.faq-question { padding: 15px 20px; font-weight: 600; cursor: pointer; }
.faq-answer { padding: 0 20px 15px; }
.faq-answer p { margin: 0; }

/* CTA Box */
.cta-box, .cta-box-inline, .cta-box-bottom {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 30px 0;
}
.cta-box h3 { margin-bottom: 15px; }
.cta-box .cta-amount { font-size: 48px; font-weight: 700; }
.divider { display: block; margin: 15px 0; opacity: 0.7; }
.small-text { font-size: 14px; margin-top: 15px; opacity: 0.9; }
.small-text a { color: var(--white); }

/* Rating Box */
.rating-box, .verdict-box {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 30px 0;
}
.rating-score, .verdict-score { font-size: 48px; font-weight: 700; }
.rating-stars, .verdict-stars { color: gold; font-size: 24px; margin: 10px 0; }
.verdict-text { margin: 20px 0; }

/* Warning Box */
.warning-box {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}
.warning-box h4 { color: #e65100; margin-bottom: 10px; }

/* Problems Solutions */
.problems-solutions { margin: 20px 0; }
.problem-item { background: #f8f9fa; padding: 20px; margin-bottom: 15px; border-radius: 10px; border-left: 4px solid var(--primary); }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-box {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.sidebar-box h3 { margin-bottom: 15px; font-size: 18px; }
.quick-links { list-style: none; margin: 0; }
.quick-links li { padding: 8px 0; border-bottom: 1px solid #eee; }
.quick-links a { color: var(--secondary); text-decoration: none; }
.quick-links a:hover { color: var(--primary); }
.info-list { list-style: none; margin: 0; }
.info-list li { padding: 8px 0; display: flex; justify-content: space-between; }

/* Footer */
.footer { background: var(--dark); color: var(--white); padding: 40px 0 20px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 30px; }
.footer-section h4 { margin-bottom: 15px; color: var(--primary); }
.footer-section ul { list-style: none; }
.footer-section a { color: #bbb; text-decoration: none; }
.footer-section a:hover { color: var(--white); }
.footer-section li { padding: 5px 0; }
.footer-disclaimer { border-top: 1px solid #444; padding: 20px 0; font-size: 13px; color: #aaa; text-align: center; }
.footer-bottom { text-align: center; font-size: 14px; color: #888; }

/* Responsive */
@media (max-width: 992px) {
    .content-grid { grid-template-columns: 1fr; }
    .sidebar { order: -1; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 1.6rem; }
    .nav-menu { justify-content: center; margin-top: 15px; }
    .nav-menu a { padding: 6px 10px; font-size: 13px; }
    .bonus-amount { font-size: 36px; }
    .pros-cons-grid, .pros-cons { grid-template-columns: 1fr; }
    .step { flex-direction: column; text-align: center; }
    .trust-items { gap: 15px; }
    .info-grid { grid-template-columns: 1fr; }
}

/* Article Images for SEO */
.article-image {
    margin: 30px 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.article-image figcaption {
    margin-top: 10px;
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
}

/* Logo in header */
.logo img {
    height: 40px;
    width: auto;
}

/* Language Selector */
.lang-switch {
    display: flex;
    gap: 5px;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.lang-switch a {
    font-size: 18px;
    opacity: 0.6;
    transition: opacity 0.3s;
    text-decoration: none;
}

.lang-switch a:hover,
.lang-switch a.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .lang-switch {
        margin-left: 10px;
        padding-left: 10px;
    }
}
