/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a73e8;
    --primary-dark: #1557b0;
    --secondary-color: #ea4335;
    --accent-color: #fbbc04;
    --text-dark: #202124;
    --text-light: #5f6368;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dadce0;
    --success-color: #34a853;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Header */
.main-header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    text-decoration: none;
    color: var(--text-dark);
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-search {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem;
}

.hero-search input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    outline: none;
}

.hero-search button {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.hero-search button:hover {
    background: #f9ab00;
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background: var(--bg-light);
}

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

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
}

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.view-all:hover {
    color: var(--primary-dark);
}

/* Operators Grid */
.operators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.operator-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.operator-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

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

.operator-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.operator-rank {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.operator-logo {
    text-align: center;
    margin-bottom: 1rem;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.operator-logo img {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-light);
}

.operator-info h3 {
    margin-bottom: 0.75rem;
}

.operator-info h3 a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    transition: var(--transition);
}

.operator-info h3 a:hover {
    color: var(--primary-color);
}

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

.star {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.star-empty {
    color: var(--border-color);
}

.rating-value {
    font-weight: 700;
    font-size: 1.125rem;
}

.rating-votes {
    color: var(--text-light);
    font-size: 0.875rem;
}

.operator-type-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.type-casino {
    background: #e8f0fe;
    color: var(--primary-color);
}

.type-sportsbook {
    background: #fce8e6;
    color: var(--secondary-color);
}

.type-both {
    background: #fef7e0;
    color: #f57c00;
}

.operator-description {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.operator-bonus {
    background: var(--bg-light);
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.operator-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    flex: 1;
}

.btn-secondary:hover {
    background: var(--border-color);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.review-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.review-card:hover .review-image img {
    transform: scale(1.05);
}

.review-content {
    padding: 1.5rem;
}

.review-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.review-date {
    color: var(--text-light);
}

.review-content h3 {
    margin-bottom: 0.75rem;
}

.review-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 700;
    transition: var(--transition);
}

.review-content h3 a:hover {
    color: var(--primary-color);
}

.review-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-dark);
}

/* Footer */
.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.disclaimer {
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.95;
}

/* Search Form Large */
.search-form-large {
    max-width: 700px;
    margin: 2rem auto 0;
    display: flex;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.search-form-large input[type="text"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
}

.search-form-large input[type="text"]:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.search-form-large input[type="text"]::placeholder {
    color: var(--text-light);
}

.search-form-large button {
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.search-form-large button:hover {
    background: #f9ab00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.search-form-large button:active {
    transform: translateY(0);
}

/* Filters Bar */
.filters-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.search-filter form {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    max-width: 500px;
}

.search-filter input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9375rem;
    outline: none;
}

.search-filter button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-filter button:hover {
    background: var(--primary-dark);
}

.sort-filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-filter label {
    font-weight: 600;
}

.sort-filter select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9375rem;
    cursor: pointer;
    outline: none;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-options label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9375rem;
    white-space: nowrap;
}

.sort-options select {
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--bg-white);
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235f6368' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    transition: var(--transition);
    min-width: 180px;
}

.sort-options select:hover {
    border-color: var(--primary-color);
    background-color: var(--bg-light);
}

.sort-options select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
    background-color: var(--bg-white);
}

.sort-options select option {
    padding: 0.5rem;
    font-weight: 500;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.page-info {
    font-weight: 600;
    color: var(--text-light);
}

/* Search Results */
.search-results {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-results-header {
    margin-bottom: 2rem;
}

.search-results-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.search-result-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.search-result-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.operator-result {
    flex-direction: row;
}

.review-result {
    flex-direction: column;
}

.result-logo {
    flex-shrink: 0;
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    height: 120px;
    max-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 1rem;
    overflow: hidden;
}

.result-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.result-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.result-content h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.result-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.result-content h3 a:hover {
    color: var(--primary-color);
}

.result-type-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    width: fit-content;
}

.result-type-badge.type-casino {
    background: rgba(26, 115, 232, 0.1);
    color: var(--primary-color);
}

.result-type-badge.type-sportsbook {
    background: rgba(234, 67, 53, 0.1);
    color: var(--secondary-color);
}

.result-type-badge.type-both {
    background: rgba(251, 188, 4, 0.1);
    color: #f9ab00;
}

.result-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.result-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.result-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.result-operator {
    font-weight: 600;
    color: var(--primary-color);
}

.result-date {
    color: var(--text-light);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

/* Operator Detail Page */
.operator-detail {
    padding: 2rem 0;
}

.operator-header {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.operator-header-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.operator-logo-large img {
    max-width: 200px;
    max-height: 120px;
    object-fit: contain;
}

.logo-placeholder-large {
    width: 200px;
    height: 120px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 3rem;
    color: var(--text-light);
}

.operator-header-info {
    flex: 1;
}

.operator-header-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.operator-rating-large {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.operator-rating-large .star {
    font-size: 1.5rem;
}

.rating-value-large {
    font-size: 1.5rem;
    font-weight: 700;
}

.operator-cta {
    margin-top: 1.5rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.bonus-highlight {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

/* Pros and Cons */
.pros-cons-section {
    margin-bottom: 2rem;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.pros-box,
.cons-box {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.pros-box {
    background: #e8f5e9;
    border-left: 4px solid var(--success-color);
}

.cons-box {
    background: #ffebee;
    border-left: 4px solid var(--secondary-color);
}

.pros-box h3,
.cons-box h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pros-box ul,
.cons-box ul {
    list-style: none;
}

.pros-box li,
.cons-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pros-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.cons-box li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Ratings Breakdown */
.ratings-breakdown {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.ratings-breakdown h2 {
    margin-bottom: 1.5rem;
}

.ratings-grid {
    display: grid;
    gap: 1rem;
}

.rating-item {
    display: grid;
    grid-template-columns: 150px 1fr 60px;
    gap: 1rem;
    align-items: center;
}

.rating-label {
    font-weight: 600;
}

.rating-bar {
    height: 8px;
    background: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

/* Review Content Section */
.review-content-section {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.review-content-section h2 {
    margin-bottom: 1rem;
}

.review-meta {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.review-body {
    line-height: 1.8;
    color: var(--text-dark);
}

/* Operator Details */
.operator-details-section {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.operator-details-section h2 {
    margin-bottom: 1.5rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.detail-item {
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
}

/* User Reviews */
.user-reviews-section {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.user-reviews-section h2 {
    margin-bottom: 1.5rem;
}

.user-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.user-review-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.user-review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.user-review-rating {
    display: flex;
    gap: 0.25rem;
}

.user-review-date {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-left: auto;
}

.user-review-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Comparison Page */
.compare-selector {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.compare-form {
    margin-top: 1.5rem;
}

.compare-selects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.compare-select-item label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.compare-select-item select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9375rem;
    cursor: pointer;
    outline: none;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th {
    background: var(--bg-light);
    padding: 1.5rem;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid var(--border-color);
}

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

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: var(--bg-light);
}

.compare-operator-header {
    text-align: center;
}

.compare-logo {
    margin-bottom: 1rem;
}

.compare-logo img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
}

.logo-placeholder-small {
    width: 120px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-light);
    margin: 0 auto;
}

.compare-operator-header h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.compare-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Rankings Page */
.rankings-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    flex-wrap: wrap;
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary-color);
    color: white;
}

.rankings-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.ranking-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
    position: relative;
    min-height: 280px;
}

.ranking-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border: 1px solid var(--primary-color);
}

.ranking-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    z-index: 1;
}

.ranking-logo {
    flex-shrink: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
    padding-top: 0.5rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 1rem;
}

.ranking-logo img {
    max-width: 180px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.ranking-item:hover .ranking-logo img {
    transform: scale(1.05);
}

.ranking-logo .logo-placeholder {
    width: 180px;
    height: 100px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-light);
    margin: 0 auto;
}

.ranking-item {
    border: 1px solid transparent;
}

.ranking-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ranking-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.3;
}

.ranking-info h3 a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: block;
}

.ranking-info h3 a:hover {
    color: var(--primary-color);
}

.ranking-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.featured-badge {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.ranking-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.stat-value .star {
    font-size: 0.875rem;
}

.stat-value strong {
    font-size: 1rem;
}

.ranking-bonus {
    background: var(--bg-light);
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-top: auto;
    line-height: 1.4;
}

.ranking-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-top: auto;
}

.ranking-actions .btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

/* Guides Section & Page */
.guides-section {
    background: var(--bg-light);
}

.guides-filters {
    margin-bottom: 2rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.guides-search {
    margin-bottom: 1.5rem;
}

.search-form {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 90ms ease, box-shadow 90ms ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.search-form .btn {
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 120ms ease, box-shadow 140ms ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    box-shadow: 0 6px 14px rgba(0,0,0,0.07);
    transform: translateY(-1.5px);
}

.guide-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
}

.guide-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 120ms ease, filter 120ms ease;
}

.guide-card:hover .guide-image img {
    transform: scale(1.02);
    filter: brightness(1.02);
}

.guide-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.guide-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.guide-category {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: capitalize;
}

.guide-date {
    color: var(--text-light);
}

.guide-content h3 {
    margin-bottom: 0.75rem;
}

.guide-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
    transition: color 90ms ease;
}

.guide-content h3 a:hover {
    color: var(--primary-color);
}

.guide-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
}

.guide-content .read-more {
    margin-top: auto;
    display: inline-block;
    width: fit-content;
}

/* Bonuses Page */
.bonuses-filters {
    margin-bottom: 2rem;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.bonus-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.bonus-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.bonus-logo {
    flex-shrink: 0;
}

.bonus-logo img {
    max-width: 100px;
    max-height: 60px;
    object-fit: contain;
}

.bonus-info-header h3 {
    margin-bottom: 0.5rem;
}

.bonus-info-header h3 a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    transition: var(--transition);
}

.bonus-info-header h3 a:hover {
    color: var(--primary-color);
}

.bonus-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.bonus-offer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    text-align: center;
}

.bonus-amount {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.promo-code {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.promo-code code {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
}

.bonus-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.bonus-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.detail-value {
    font-weight: 600;
    color: var(--text-dark);
}

.bonus-actions {
    display: flex;
    gap: 0.75rem;
}

/* About Page */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 3rem;
}

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

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

.about-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.about-section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.about-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.about-section a:hover {
    text-decoration: underline;
}

/* Article Detail Page */
.article-detail {
    padding: 2rem 0;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.article-header {
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.article-category {
    color: var(--primary-color);
    font-weight: 600;
}

.article-date {
    color: var(--text-light);
}

.article-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-image {
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-body {
    line-height: 1.8;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.article-body p {
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: var(--shadow);
        padding: 1rem;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li {
        border-bottom: 1px solid var(--border-color);
    }

    .main-nav a {
        display: block;
        padding: 1rem 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-search {
        flex-direction: column;
    }

    .search-form-large {
        flex-direction: column;
        padding: 0.75rem;
        border-radius: var(--border-radius);
        max-width: 100%;
    }

    .search-form-large input[type="text"] {
        border-radius: var(--border-radius);
        padding: 0.875rem 1.25rem;
    }

    .search-form-large button {
        border-radius: var(--border-radius);
        padding: 0.875rem 1.5rem;
        width: 100%;
    }

    .search-result-item {
        flex-direction: column;
        gap: 1rem;
    }

    .operator-result {
        flex-direction: column;
    }

    .result-logo {
        width: 100%;
        min-width: auto;
        max-width: 100%;
        height: 100px;
        max-height: 100px;
        margin: 0 auto;
        padding: 0.75rem;
    }

    .result-logo img {
        max-width: 180px;
        max-height: 80px;
    }

    .operators-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .filters-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-filter form {
        max-width: 100%;
    }

    .operator-header-content {
        flex-direction: column;
        text-align: center;
    }

    .operator-header-info h1 {
        font-size: 1.75rem;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .rating-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .user-review-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .user-review-date {
        margin-left: 0;
    }

    .compare-selects {
        grid-template-columns: 1fr;
    }

    .comparison-table-wrapper {
        overflow-x: scroll;
    }

    .comparison-table {
        min-width: 800px;
    }

    .rankings-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .sort-options {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .sort-options select {
        width: 100%;
        min-width: auto;
    }

    .rankings-list {
        grid-template-columns: 1fr;
    }

    .ranking-item {
        min-height: auto;
    }

    .ranking-logo {
        height: 90px;
        padding: 0.75rem;
    }

    .ranking-logo img {
        max-width: 140px;
        max-height: 70px;
    }

    .ranking-logo .logo-placeholder {
        width: 140px;
        height: 70px;
    }

    .ranking-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .guides-grid {
        grid-template-columns: 1fr;
    }

    .guide-image {
        height: 180px;
    }

    .guide-content {
        padding: 1.25rem;
    }

    .guides-filters {
        padding: 1rem;
    }

    .filter-tabs {
        gap: 0.5rem;
    }

    .filter-tab {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
    }

    .bonus-header {
        flex-direction: column;
        text-align: center;
    }

    .article-content h1 {
        font-size: 1.75rem;
    }
}


/* Cookie Consent Banner - EU GDPR Compliant */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 300ms ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner-text h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.cookie-banner-text p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner-actions .btn {
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
    font-size: 0.875rem;
}

/* Cookie Preferences Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.cookie-modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 300ms ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h2 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-dark);
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 90ms ease, color 90ms ease;
}

.cookie-modal-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-modal-body > p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cookie-category-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cookie-category-info h3 {
    font-size: 1rem;
    margin: 0;
    color: var(--text-dark);
}

.cookie-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--success-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
}

.cookie-category-description {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    cursor: pointer;
}

.cookie-toggle.disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border-color);
    border-radius: 26px;
    transition: background 120ms ease;
}

.cookie-toggle-slider:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: transform 120ms ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--primary-color);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-modal-footer .btn {
    padding: 0.75rem 1.5rem;
}

/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

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

.info-block {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.info-block h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-block p {
    color: var(--text-light);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 90ms ease, box-shadow 90ms ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: rgba(52, 168, 83, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.alert-error {
    background: rgba(234, 67, 53, 0.1);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

/* Legal Pages Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.disclaimer-notice,
.terms-notice {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

/* How to Play / Tutorials Styles */
.tutorials-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tutorial-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 120ms ease, box-shadow 140ms ease;
}

.tutorial-card:hover {
    box-shadow: 0 6px 14px rgba(0,0,0,0.07);
    transform: translateY(-1.5px);
}

.tutorial-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tutorial-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.tutorial-card h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.tutorial-card h3:first-child {
    margin-top: 0;
}

.tutorial-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.tutorial-content ul,
.tutorial-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.tutorial-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.tutorial-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.tutorial-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.tutorial-cta h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.tutorial-cta a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

/* Responsive - Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        padding: 1.25rem 1rem;
        gap: 1.25rem;
    }
    
    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-banner-actions .btn {
        width: 100%;
    }
    
    .cookie-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1.25rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tutorials-grid {
        grid-template-columns: 1fr;
    }
}
