/* Professional Sports Betting Design - Inspired by OffshoreSportsbooks.com */

/* ========================================
   CSS RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ========================================
   VARIABLES
======================================== */
:root {
    /* Professional Color Scheme */
    --primary-blue: #1e40af;
    --primary-dark: #1e3a8a;
    --secondary-gold: #f59e0b;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    
    /* Neutral Colors */
    --dark-bg: #0f172a;
    --card-bg: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #64748b;
    --text-white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fcd34d 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary-dark);
}

/* ========================================
   LAYOUT COMPONENTS
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-white);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--text-primary);
    border: 1px solid var(--gray-200);
}

.btn-secondary:hover {
    background: var(--gray-200);
    color: var(--text-primary);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.btn-full {
    width: 100%;
}

/* ========================================
   HEADER
======================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.header-top {
    background: var(--dark-bg);
    color: var(--text-white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

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

.header-top-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-top-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-300);
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-top-link {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
}

.header-top-link:hover {
    color: var(--text-white);
}

/* Main Navigation */
.main-nav {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-decoration: none;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-blue);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    background: var(--gradient-dark);
    color: var(--text-white);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="60" r="0.8" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-300);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   FEATURED SPORTSBOOKS
======================================== */
.featured-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

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

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.sportsbook-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.sportsbook-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    letter-spacing: 0.05em;
}

.badge-gold {
    background: var(--gradient-gold);
    color: var(--text-primary);
}

.badge-best {
    background: var(--accent-green);
    color: var(--text-white);
}

.badge-featured {
    background: var(--gradient-primary);
    color: var(--text-white);
}

.card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.sportsbook-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

.sportsbook-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: var(--secondary-gold);
    font-size: 1.125rem;
}

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

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

.card-body {
    padding: 1rem 2rem 2rem;
}

.bonus-highlight {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 1.5rem;
}

.bonus-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.bonus-text {
    opacity: 0.9;
    font-size: 0.875rem;
}

.features-list {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--accent-green);
    width: 16px;
}

.card-footer {
    padding: 0 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ========================================
   COMPARISON TABLE
======================================== */
.comparison-section {
    padding: 4rem 0;
    background: var(--card-bg);
}

.table-wrapper {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: var(--dark-bg);
    color: var(--text-white);
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--gray-200);
    vertical-align: middle;
}

.table-row {
    transition: var(--transition);
}

.table-row:hover {
    background: var(--gray-50);
}

.table-sportsbook {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.table-logo {
    height: 40px;
    width: 60px;
    object-fit: contain;
}

.table-name {
    font-weight: 600;
    color: var(--text-primary);
}

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

.table-bonus {
    text-align: center;
}

.table-bonus-amount {
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.25rem;
}

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

.table-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 120px;
}

/* ========================================
   FOOTER
======================================== */
.main-footer {
    background: var(--dark-bg);
    color: var(--text-white);
    padding: 3rem 0 1rem;
}

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

.footer-column h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-400);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-section {
        padding: 6rem 0 3rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .sportsbooks-grid {
        grid-template-columns: 1fr;
    }
    
    .header-top {
        display: none;
    }
    
    .table-wrapper {
        overflow-x: auto;
    }
    
    .comparison-table {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .card-header,
    .card-body,
    .card-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* ========================================
   UTILITY CLASSES
======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-light { color: var(--text-light); }
.text-white { color: var(--text-white); }

.bg-primary { background: var(--primary-blue); }
.bg-secondary { background: var(--gray-100); }
.bg-dark { background: var(--dark-bg); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* Counter animation */
@keyframes countUp {
    from { opacity: 0; }
    to { opacity: 1; }
}

.counting {
    animation: countUp 2s ease-out;
}

/* ========================================
   BLOG PAGE STYLES
======================================== */

/* Blog Hero Section */
.blog-hero {
    background: var(--gradient-dark);
    color: white;
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Blog Search */
.blog-search {
    max-width: 500px;
    margin: 0 auto;
}

.search-form {
    position: relative;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    padding-right: 4rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-input:focus {
    outline: none;
    border-color: var(--secondary-gold);
    background: rgba(255, 255, 255, 0.15);
}

.search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.05);
}

/* Blog Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    margin: 3rem 0;
}

.blog-main {
    min-width: 0;
}

/* Blog Filters */
.blog-filters {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

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

.filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.filter-tab:hover {
    background: var(--gray-200);
    color: var(--text-primary);
}

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

.filter-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.125rem 0.375rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.filter-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.results-count {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.sort-select {
    padding: 0.5rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: white;
    color: var(--text-primary);
    font-size: 0.875rem;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-post-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-category a {
    color: inherit;
    text-decoration: none;
}

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

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: var(--text-light);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.post-title {
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    transition: var(--transition);
}

.post-title a:hover {
    color: var(--primary-blue);
}

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

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.post-tag {
    background: var(--gray-100);
    color: var(--text-secondary);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    text-decoration: none;
    transition: var(--transition);
}

.post-tag:hover {
    background: var(--primary-blue);
    color: white;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    margin-top: auto;
}

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

/* No Posts State */
.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.no-posts-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
}

.no-posts h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.no-posts p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.page-item {
    display: flex;
}

.page-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: white;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    font-weight: 500;
    transition: var(--transition);
}

.page-link:hover {
    background: var(--gray-50);
    color: var(--text-primary);
    border-color: var(--gray-300);
}

.page-item.active .page-link {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
}

.widget-title {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-100);
}

/* Featured Posts Widget */
.featured-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.featured-post {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.featured-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.featured-image {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    flex: 1;
    min-width: 0;
}

.featured-title {
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.featured-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-title a:hover {
    color: var(--primary-blue);
}

.featured-meta {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Newsletter Widget */
.newsletter-widget {
    background: var(--gradient-primary);
    color: white;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input {
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.875rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud-item {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    background: var(--gray-100);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    transition: var(--transition);
}

.tag-cloud-item:hover {
    background: var(--primary-blue);
    color: white;
}

.tag-count {
    background: rgba(255, 255, 255, 0.5);
    padding: 0.125rem 0.375rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Category List */
.category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--gray-50);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.category-link:hover {
    background: var(--gray-100);
    color: var(--text-primary);
}

.category-link.active {
    background: var(--gradient-primary);
    color: white;
}

.category-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Ad Widget */
.ad-widget {
    text-align: center;
}

.ad-banner {
    position: relative;
}

.ad-label {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ad-content {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--gray-100);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-link {
    display: block;
    width: 100%;
    height: 100%;
}

.ad-content img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
}

/* Icon Fixes - Map Font Awesome classes */
.icon-search::before { content: "\f002"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-user::before { content: "\f007"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-calendar::before { content: "\f073"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-clock::before { content: "\f017"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-arrow-right::before { content: "\f061"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-chevron-left::before { content: "\f053"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-chevron-right::before { content: "\f054"; font-family: "Font Awesome 6 Free"; font-weight: 900; }

/* Responsive Blog Layout */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 3rem 0 2rem;
    }
    
    .blog-hero-title {
        font-size: 2rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .filter-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .filter-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .blog-filters {
        padding: 1rem;
    }
    
    .sidebar-widget {
        padding: 1rem;
    }
}

/* ========================================
   SINGLE BLOG POST STYLES
======================================== */

/* Post Header */
.post-header {
    background: var(--gradient-dark);
    color: white;
    padding: 2rem 0 3rem;
    position: relative;
}

.post-breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.875rem;
    opacity: 0.8;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child):after {
    content: '/';
    margin-left: 0.5rem;
    opacity: 0.6;
}

.breadcrumb-item a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--secondary-gold);
}

.breadcrumb-item.active {
    opacity: 0.7;
}

.post-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.post-category-badge {
    margin-bottom: 1rem;
}

.post-category-badge a {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.post-category-badge a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.post-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-300);
}

.meta-item i {
    color: var(--secondary-gold);
}

.post-excerpt {
    font-size: 1.25rem;
    color: var(--gray-300);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Image */
.post-featured-image {
    padding: 2rem 0;
    background: var(--gray-50);
}

.featured-image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 1000px;
    margin: 0 auto;
}

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

/* Post Content */
.post-content-wrapper {
    padding: 3rem 0;
    background: white;
}

.post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.post-main {
    min-width: 0;
}

.post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.post-content h2 {
    font-size: 1.75rem;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 0.5rem;
}

.post-content h3 {
    font-size: 1.5rem;
}

.post-content h4 {
    font-size: 1.25rem;
}

.post-content ul,
.post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content blockquote {
    border-left: 4px solid var(--primary-blue);
    background: var(--gray-50);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Post Tags Section */
.post-tags-section {
    padding: 2rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 2rem;
}

.post-tags-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.125rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.post-tag {
    background: var(--gray-100);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.post-tag:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Social Share */
.social-share {
    margin-bottom: 3rem;
}

.social-share h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.125rem;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    background: var(--gray-100);
    color: var(--text-secondary);
}

.share-btn:hover {
    transform: translateY(-2px);
    color: white;
}

.share-btn.twitter:hover { background: #1da1f2; }
.share-btn.facebook:hover { background: #4267b2; }
.share-btn.linkedin:hover { background: #0077b5; }
.share-btn.copy:hover { background: var(--primary-blue); }

/* Author Bio */
.author-bio {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-xl);
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.author-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-info h5 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Newsletter CTA */
.newsletter-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
}

.newsletter-content h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.875rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Post Sidebar */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.post-sidebar .sidebar-widget {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
}

.post-sidebar .widget-title {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-100);
}

/* Related Posts */
.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.related-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-image {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content {
    flex: 1;
    min-width: 0;
}

.related-title {
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.related-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-title a:hover {
    color: var(--primary-blue);
}

.related-meta {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Sidebar Sportsbooks */
.sidebar-sportsbooks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-sportsbook {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.sidebar-sportsbook:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.sidebar-sb-rank {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.sidebar-sb-content {
    flex: 1;
    min-width: 0;
}

.sidebar-sb-content h6 {
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.sidebar-sb-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
}

.sidebar-sb-rating .star {
    color: #fbbf24;
    font-size: 0.75rem;
}

.sidebar-sb-bonus {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.sidebar-sb-content .btn {
    width: 100%;
    font-size: 0.75rem;
    padding: 0.5rem;
}

/* Responsive Single Post */
@media (max-width: 1024px) {
    .post-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .post-sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .post-header {
        padding: 1.5rem 0 2rem;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .post-excerpt {
        font-size: 1.125rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
    }
}

/* ========================================
   SPORTSBOOK REVIEW PAGE STYLES
======================================== */

/* Sportsbook Header */
.sportsbook-header {
    background: var(--gradient-dark);
    color: white;
    padding: 2rem 0 3rem;
}

.sportsbook-breadcrumb {
    margin-bottom: 2rem;
}

.sportsbook-hero {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.sportsbook-logo-section {
    flex-shrink: 0;
}

.sportsbook-logo {
    width: 120px;
    height: 80px;
    object-fit: contain;
    background: white;
    border-radius: var(--radius-lg);
    padding: 0.5rem;
}

.sportsbook-info {
    flex: 1;
}

.sportsbook-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
}

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

.stars-large .star {
    font-size: 1.5rem;
    color: #fbbf24;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-gold);
}

.rating-text {
    color: var(--gray-300);
    font-weight: 500;
}

.sportsbook-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    color: var(--gray-300);
}

.highlight-item strong {
    color: white;
    min-width: 120px;
}

.bonus-amount {
    color: var(--secondary-gold);
    font-weight: 700;
}

.sportsbook-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Quick Info Section */
.quick-info-section {
    padding: 3rem 0;
    background: var(--gray-50);
}

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

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

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

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.info-content p {
    color: var(--text-secondary);
    font-weight: 600;
    margin: 0;
}

/* Review Content */
.review-content {
    padding: 3rem 0;
    background: white;
}

.review-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-main {
    min-width: 0;
}

.review-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.review-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.review-section h2 {
    color: var(--text-primary);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.review-section h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-section h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Pros and Cons */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pros-section h3 {
    color: var(--accent-green);
}

.cons-section h3 {
    color: var(--accent-red);
}

.pros-list,
.cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li,
.cons-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    padding-left: 2rem;
}

.pros-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.cons-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
}

/* Bonus Details */
.bonus-details-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 2px solid var(--secondary-gold);
}

.bonus-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.bonus-header h3 {
    font-size: 2rem;
    color: var(--secondary-gold);
    margin-bottom: 0.5rem;
}

.bonus-terms {
    margin-bottom: 2rem;
}

.bonus-terms ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.bonus-action {
    text-align: center;
}

/* Payment Methods */
.payment-methods {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.payment-category h4 {
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.payment-icon {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--gray-200);
}

/* Verdict Section */
.verdict-section {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border-bottom: none !important;
}

.verdict-card {
    text-align: center;
}

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

.verdict-stars .star {
    font-size: 1.5rem;
    color: #fbbf24;
}

.verdict-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.verdict-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.verdict-action {
    margin-top: 1.5rem;
}

/* Review Sidebar */
.review-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-sidebar .sidebar-widget {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
}

.review-sidebar .widget-title {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-100);
}

/* Quick Summary */
.summary-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.summary-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.summary-value {
    color: var(--text-primary);
    font-weight: 600;
}

/* Related Sportsbooks */
.related-sportsbooks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-sportsbook {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.related-sportsbook:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.related-logo {
    width: 60px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    background: white;
    border-radius: var(--radius-sm);
    padding: 0.25rem;
}

.related-info {
    flex: 1;
    min-width: 0;
}

.related-info h5 {
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.related-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
}

.related-rating .star {
    color: #fbbf24;
    font-size: 0.75rem;
}

.related-bonus {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.related-info .btn {
    width: 100%;
    font-size: 0.75rem;
    padding: 0.375rem 0.5rem;
}

/* Responsive Sportsbook Review */
@media (max-width: 1024px) {
    .review-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .review-sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .sportsbook-header {
        padding: 1.5rem 0 2rem;
    }
    
    .sportsbook-hero {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .sportsbook-title {
        font-size: 2rem;
    }
    
    .sportsbook-rating {
        justify-content: center;
    }
    
    .sportsbook-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .sportsbook-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .quick-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .verdict-rating {
        flex-direction: column;
        gap: 0.5rem;
    }
}