/* ==========================================
   PLINKO JP - Main Stylesheet
   Version: 2.0
   Last Updated: 2025-10-02
   ========================================== */

/* ==========================================
   1. CSS RESET & VARIABLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-blue: #2b3654;
    --secondary-blue: #364fc7;
    --accent-green: #37b24d;
    --accent-red: #ff6b6b;
    --accent-purple: #9775fa;
    --accent-gold: #ffd700;
    
    /* Backgrounds */
    --bg-dark: #1a2138;
    --bg-light: #f8f9fa;
    
    /* Text */
    --text-dark: #2b3654;
    --text-gray: #6c757d;
    --text-white: #ffffff;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* ==========================================
   2. BASE STYLES
   ========================================== */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", 'Hiragino Sans', 
                 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    color: #333;
    line-height: 1.6;
}

/* ==========================================
   3. ACCESSIBILITY
   ========================================== */
*:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: 2px;
}

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-green);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 var(--radius-sm) 0;
}

.skip-to-content:focus {
    top: 0;
}

/* ==========================================
   4. DECORATIVE ELEMENTS
   ========================================== */
.decorative-chips {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.chip {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
}

.chip::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.chip::after {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 4px,
        rgba(255, 255, 255, 0.1) 4px,
        rgba(255, 255, 255, 0.1) 8px
    );
}

.chip-1 { 
    background: linear-gradient(135deg, #ff6b6b, #c92a2a); 
    top: 10%; 
    left: 5%;
    animation-delay: 0s;
}

.chip-2 { 
    background: linear-gradient(135deg, #4dabf7, #1864ab); 
    top: 60%; 
    right: 8%;
    animation-delay: -5s;
}

.chip-3 { 
    background: linear-gradient(135deg, #51cf66, #2b8a3e); 
    bottom: 15%; 
    left: 10%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-30px) rotate(90deg) scale(1.1); 
    }
    50% { 
        transform: translateY(20px) rotate(180deg) scale(0.95); 
    }
    75% { 
        transform: translateY(-10px) rotate(270deg) scale(1.05); 
    }
}

/* ==========================================
   5. HEADER
   ========================================== */
header {
    position: relative;
    z-index: 100;
    background: linear-gradient(135deg, #37b24d 0%, #2f9e44 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top {
    background: #2f9e44;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

nav {
    padding: 15px 20px;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    backdrop-filter: blur(10px);
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255,255,255,0.2);
}

/* Play Now Button */
.play-now-btn {
    background: white !important;
    color: #37b24d !important;
    padding: 10px 24px !important;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.play-now-btn:hover {
    background: rgba(255,255,255,0.9) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================
   6. MAIN CONTENT
   ========================================== */
main {
    position: relative;
    z-index: 10;
}

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

/* ==========================================
   7. HERO SECTION
   ========================================== */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #37b24d 0%, #2f9e44 100%);
    color: white;
    text-align: center;
    position: relative;
}

.hero .container {
    max-width: 1200px;
}

.hero h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.hero-image {
    max-width: 800px;
    margin: 30px auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

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

/* ==========================================
   8. BUTTONS
   ========================================== */
.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: #37b24d;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.btn-large,
.btn-primary-large,
.btn-secondary-large {
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
}

.btn-primary-large {
    background: white;
    color: #37b24d;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
    display: inline-block;
}

.btn-secondary-large {
    background: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
    display: inline-block;
}

.btn-primary-large:hover,
.btn-secondary-large:hover {
    transform: translateY(-3px);
}

.btn-outline {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    border: 2px solid #37b24d;
    color: #37b24d;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #37b24d;
    color: white;
}

/* ==========================================
   9. SECTIONS
   ========================================== */
section {
    padding: 60px 0;
    position: relative;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2f9e44;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 1.1rem;
}

/* Quick Stats */
.quick-stats {
    padding: 60px 0;
    background: white;
}

.quick-stats h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2f9e44;
}

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

.stat-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    transition: transform 0.3s;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #37b24d;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

/* ==========================================
   10. CARD COMPONENTS (Unified)
   ========================================== */
.card-base {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

/* Grid Layouts */
.providers-grid,
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Provider/Casino Cards */
.provider-card,
.casino-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
}

.provider-card:hover,
.casino-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.provider-card.featured,
.casino-card.featured {
    border: 3px solid var(--accent-green);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-green);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-lg);
    font-size: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.provider-name,
.casino-name {
    font-size: 26px;
    margin: 20px 0 10px;
    color: var(--text-dark);
}

.provider-rtp,
.casino-bonus {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.provider-features,
.casino-features {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.provider-features li,
.casino-features li {
    padding: 8px 0;
    color: var(--text-gray);
}

.casino-logo {
    font-size: 64px;
    margin-bottom: 20px;
}

/* Quick Link Cards */
.quick-link-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, white, var(--bg-light));
}

.quick-link-card .icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.quick-link-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.quick-link-card p {
    color: var(--text-gray);
}

/* ==========================================
   11. MULTIPLIERS DISPLAY
   ========================================== */
.plinko-demo {
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
}

.multipliers-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.multiplier {
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 16px;
    color: white;
    min-width: 60px;
    text-align: center;
}

.multiplier.high {
    background: linear-gradient(135deg, var(--accent-red), #c92a2a);
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.multiplier.medium {
    background: linear-gradient(135deg, var(--accent-purple), #6741d9);
}

.multiplier.low {
    background: linear-gradient(135deg, var(--secondary-blue), #1864ab);
}

/* ==========================================
   12. FOOTER
   ========================================== */
footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 20px 30px;
    margin-top: 100px;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: var(--accent-green);
    font-size: 18px;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 5px 0;
}

.footer-disclaimer {
    font-size: 14px;
    font-weight: 600;
}

/* ==========================================
   12.5. VIDEO SECTION STYLES
   ========================================== */
.video-demonstrations {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.video-demonstrations h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2f9e44;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.video-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.4;
}

.video-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.video-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.video-tags .tag {
    background: linear-gradient(135deg, #37b24d, #2f9e44);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.video-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.video-cta p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.cta-buttons-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Casino button styles */
.casino-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #37b24d, #2f9e44);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.casino-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #2f9e44, #2b8a3e);
}

/* ==========================================
   13. RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: right var(--transition-normal);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
        right: 0;
    }
    
    .nav-links a {
        padding: 15px;
        border-bottom: 1px solid #e9ecef;
        width: 100%;
        color: var(--text-dark);
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background: #f8f9fa;
        color: var(--accent-green);
    }
    
    /* Hero */
    .hero {
        padding: 50px 20px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badges {
        gap: 10px;
    }
    
    .badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    
    /* Sections */
    section {
        padding: 40px 20px;
    }
    
    .section-title,
    section h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .section-intro {
        font-size: 0.95rem;
    }
    
    /* Video Section Mobile */
    .video-demonstrations {
        padding: 50px 0;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .video-card {
        padding: 20px;
    }
    
    .video-card h3 {
        font-size: 1.1rem;
    }
    
    .video-card p {
        font-size: 0.9rem;
    }
    
    .video-cta {
        padding: 25px 20px;
        margin-top: 30px;
    }
    
    .video-cta p {
        font-size: 1rem;
    }
    
    .cta-buttons-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-buttons-row .btn-primary,
    .cta-buttons-row .btn-secondary {
        width: 100%;
        padding: 12px 20px;
    }
    
    /* Grids */
    .providers-grid,
    .quick-links-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Tables - Make them scrollable on mobile */
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    table thead,
    table tbody,
    table tr,
    table th,
    table td {
        display: block;
    }
    
    table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 10px;
        background: white;
    }
    
    table td {
        border: none;
        position: relative;
        padding: 10px 10px 10px 45%;
        text-align: right;
    }
    
    table td:before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 40%;
        padding-right: 10px;
        text-align: left;
        font-weight: bold;
        color: var(--text-dark);
    }
    
    /* Comparison tables - keep as scrollable */
    .comparison-table table,
    section[class*="comparison"] table {
        display: table;
        min-width: 600px;
    }
    
    .comparison-table,
    section[class*="comparison"] > div[style*="overflow"] {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Buttons */
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons a,
    .cta-buttons a {
        width: 100%;
        text-align: center;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-primary-large,
    .btn-secondary-large {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    /* Cards */
    .provider-card,
    .casino-card,
    .quick-link-card {
        padding: 20px;
    }
    
    .provider-name,
    .casino-name {
        font-size: 1.3rem;
    }
    
    /* Stats */
    .stat-card {
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    footer {
        padding: 40px 20px 20px;
    }
    
    /* FAQ Items */
    .faq-item {
        margin-bottom: 15px;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 15px;
    }
    
    .faq-answer {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    /* Strategy Cards */
    .strategy-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .strategy-card {
        padding: 20px;
    }
    
    /* Regional/City Cards */
    .city-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 50px 25px;
        margin: 40px 15px;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    /* Content Grid Mobile */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .image-content {
        position: static;
    }
    
    /* Casino List Mobile */
    .casino-list {
        grid-template-columns: 1fr;
    }
    
    .casino-item {
        padding: 25px;
    }
    
    /* Comparison Grid Mobile */
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    /* Benefits Grid Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Step Items Mobile */
    .step-item {
        padding: 25px 20px;
    }
    
    .step-item:hover {
        transform: translateX(5px);
    }
    
    .step-item h3 {
        font-size: 1.2rem;
    }
    
    /* Game Board Mobile */
    .game-board-placeholder {
        padding: 30px 20px;
    }
    
    .board-title {
        font-size: 1.2rem;
    }
    
    .payout-zones {
        flex-direction: column;
        align-items: center;
    }
    
    .zone {
        min-width: 150px;
        text-align: center;
    }
    
    /* Map Placeholder Mobile */
    .map-placeholder {
        padding: 50px 20px;
    }
    
    .map-icon {
        font-size: 64px;
    }
    
    .map-text {
        font-size: 1.2rem;
    }
    
    /* Quick Start CTA Mobile */
    .quick-start-cta {
        padding: 30px 20px;
    }
    
    .quick-start-cta h3 {
        font-size: 1.4rem;
    }
    
    .quick-start-cta p {
        font-size: 1rem;
    }
    
    /* Final CTA Mobile */
    .final-cta {
        padding: 50px 20px;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
    
    .final-cta p {
        font-size: 1rem;
    }
    
    /* Key Benefits Mobile */
    .key-benefits {
        padding: 30px 20px;
    }
    
    .key-benefits h3 {
        font-size: 1.4rem;
    }
    
    /* Comparison Item Mobile */
    .comparison-item {
        padding: 25px 20px;
    }
    
    /* Hero Placeholder Mobile */
    .hero-placeholder {
        padding: 40px 20px;
    }
    
    .plinko-ball {
        font-size: 36px;
    }
    
    .plinko-pins {
        font-size: 18px;
        gap: 10px;
    }
    
    .plinko-multipliers {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .plinko-multipliers span {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    /* Player Reviews Mobile */
    .player-reviews {
        padding: 50px 0;
    }
    
    .rating-overview {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .rating-number {
        font-size: 3rem;
    }
    
    .rating-stars {
        font-size: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 25px 20px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .reviewer-info {
        width: 100%;
    }
    
    .reviewer-avatar {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    
    .reviewer-name {
        font-size: 1rem;
    }
    
    .review-rating {
        font-size: 1.1rem;
    }
    
    .review-title {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
    
    .review-footer {
        flex-direction: column;
        gap: 8px;
        font-size: 0.8rem;
    }
    
    .reviews-cta {
        padding: 30px 20px;
    }
    
    .reviews-cta p {
        font-size: 1.1rem;
    }
    
    .cta-subtext {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title,
    section h2 {
        font-size: 1.3rem;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
    
    .video-card {
        padding: 15px;
    }
    
    .video-card h3 {
        font-size: 1rem;
    }
    
    .video-card p {
        font-size: 0.85rem;
    }
    
    .video-tags .tag {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    .provider-card,
    .casino-card {
        padding: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* ==========================================
   13.5. FAQ SECTION STYLES
   ========================================== */
.faq-section {
    background: white;
    padding: 60px 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item summary,
.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 25px;
    cursor: pointer;
    list-style: none;
    position: relative;
    color: var(--text-dark);
    user-select: none;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    transition: all var(--transition-fast);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after,
.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-green);
    transition: transform var(--transition-fast);
}

.faq-item[open] summary::after,
.faq-question.active::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item summary:hover,
.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer a {
    color: var(--accent-green);
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--secondary-blue);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Content Wrapper Styles */
.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.content-wrapper p,
.content-wrapper ul,
.content-wrapper ol {
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-wrapper h3,
.content-wrapper h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.content-wrapper ul,
.content-wrapper ol {
    padding-left: 25px;
}

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

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.providers-section {
    padding: 60px 20px;
}

/* Strategy Cards */
.strategies-preview {
    background: white;
    padding: 60px 0;
}

.strategy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.strategy-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.strategy-image {
    text-align: center;
    margin-bottom: 20px;
}

.strategy-icon {
    font-size: 64px;
    display: inline-block;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
}

.strategy-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.strategy-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

.strategy-card a {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent-green);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.strategy-card a:hover {
    color: var(--secondary-blue);
}

/* Regional/City Cards */
.regional-info,
.regional-map,
.city-cards {
    margin: 30px 0;
}

.city-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.city-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.city-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.city-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Game Features */
.game-features {
    background: white;
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: linear-gradient(135deg, #f8f9fa, white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Crypto Casinos Section */
.crypto-casinos {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 60px 0;
}

.casino-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.casino-item {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.casino-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.casino-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.casino-icon {
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
}

.casino-name-small {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-dark);
}

.casino-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.casino-item p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Provider Comparison Section */
.provider-comparison {
    background: white;
    padding: 60px 0;
}

.comparison-table {
    overflow-x: auto;
    margin-top: 30px;
}

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

.comparison-table th {
    background: linear-gradient(135deg, #37b24d, #2f9e44);
    color: white;
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

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

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

.comparison-table tr:hover {
    background: #f8f9fa;
}

.comparison-table strong {
    color: var(--text-dark);
}

/* Regional Info */
.regional-info {
    background: white;
    padding: 60px 0;
}

.map-placeholder {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
    border-radius: var(--radius-lg);
    margin: 30px 0;
}

.map-icon {
    font-size: 96px;
    margin-bottom: 20px;
}

.map-text {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* What is Plinko Section */
.what-is-plinko {
    background: white;
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    align-items: start;
}

.text-content h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: var(--text-dark);
}

.text-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.text-content ul {
    list-style: none;
    padding-left: 0;
}

.text-content li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
}

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

.image-content {
    position: sticky;
    top: 100px;
}

.game-board-placeholder {
    background: linear-gradient(135deg, #37b24d, #2f9e44);
    color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.board-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.board-visual {
    margin: 30px 0;
}

.pins-row {
    font-size: 2rem;
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.8);
}

.payout-zones {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.zone {
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: bold;
    font-size: 1.1rem;
}

.zone.low {
    background: rgba(255, 255, 255, 0.2);
}

.zone.med {
    background: rgba(255, 255, 255, 0.3);
}

.zone.high {
    background: rgba(255, 255, 255, 0.4);
}

.zone.ultra {
    background: rgba(255, 215, 0, 0.3);
    color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Hero placeholder elements */
.hero-placeholder {
    background: rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    text-align: center;
}

.plinko-board-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.plinko-ball {
    font-size: 48px;
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.plinko-pins {
    display: flex;
    gap: 15px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
}

.plinko-multipliers {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.plinko-multipliers span {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

/* Why Choose Plinko */
.why-choose-plinko {
    background: white;
    padding: 60px 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.comparison-item {
    background: linear-gradient(135deg, #f8f9fa, white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.comparison-header {
    margin-bottom: 20px;
}

.vs-badge {
    background: linear-gradient(135deg, #37b24d, #2f9e44);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.comparison-item h3 {
    font-size: 1.3rem;
    margin: 20px 0 15px;
    color: var(--text-dark);
}

.comparison-item ul {
    list-style: none;
    padding: 0;
}

.comparison-item li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
}

.comparison-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.key-benefits {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: var(--radius-lg);
}

.key-benefits h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benefit-box {
    background: white;
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-box strong {
    display: block;
    color: var(--accent-green);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.benefit-box p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* How to Start Section */
.how-to-start {
    background: white;
    padding: 60px 0;
}

.steps-container {
    max-width: 1000px;
    margin: 40px auto 0;
}

.step-item {
    background: linear-gradient(135deg, #f8f9fa, white);
    border-radius: var(--radius-lg);
    padding: 35px;
    margin-bottom: 30px;
    border-left: 5px solid var(--accent-green);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, #37b24d, #2f9e44);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 1.4rem;
    margin: 15px 0;
    color: var(--text-dark);
}

.step-item p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.step-item ul {
    list-style: none;
    padding-left: 0;
}

.step-item li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
}

.step-item li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.step-tip {
    background: rgba(55, 178, 77, 0.1);
    border-left: 3px solid var(--accent-green);
    padding: 12px 15px;
    margin-top: 15px;
    border-radius: 5px;
    font-size: 0.95rem;
}

.quick-start-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #37b24d, #2f9e44);
    color: white;
    border-radius: var(--radius-lg);
}

.quick-start-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.quick-start-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.95);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #37b24d, #2f9e44);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
}

/* Player Reviews Section */
.player-reviews {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 80px 0;
}

.player-reviews h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Reviews Stats */
.reviews-stats {
    max-width: 900px;
    margin: 50px auto;
}

.rating-overview {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 4rem;
    font-weight: bold;
    color: var(--accent-green);
    line-height: 1;
    margin-bottom: 15px;
}

.rating-stars {
    font-size: 2rem;
    margin-bottom: 10px;
}

.star {
    color: #ddd;
}

.star.filled {
    color: #ffd700;
}

.star.half {
    background: linear-gradient(90deg, #ffd700 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-count {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.rating-distribution {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.bar-label {
    width: 40px;
    font-weight: 600;
    color: var(--text-dark);
}

.bar-container {
    flex: 1;
    height: 12px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.bar-percent {
    width: 45px;
    text-align: right;
    color: var(--text-gray);
    font-weight: 600;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.review-card.verified {
    border-left: 4px solid var(--accent-green);
}

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.reviewer-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.reviewer-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.85rem;
}

.reviewer-location {
    color: var(--text-gray);
}

.verified-badge {
    color: var(--accent-green);
    font-weight: 600;
    background: rgba(55, 178, 77, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
}

.review-rating {
    font-size: 1.2rem;
    white-space: nowrap;
}

/* Review Content */
.review-content {
    margin-top: 20px;
}

.review-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.review-text {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    font-size: 0.85rem;
    color: var(--text-gray);
    flex-wrap: wrap;
    gap: 10px;
}

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

.review-casino {
    color: var(--accent-green);
    font-weight: 600;
}

/* Reviews CTA */
.reviews-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.reviews-cta p {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.cta-subtext {
    font-size: 1rem;
    color: var(--text-gray);
}

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

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* ==========================================
   15. ADDITIONAL COMPONENTS
   ========================================== */

/* Features List */
.features-list {
    list-style: none;
    margin: 30px 0;
}

.features-list li {
    padding: 15px 0;
    font-size: 18px;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features-list li:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-green), var(--secondary-blue));
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    text-align: center;
    margin: 60px 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.about-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    margin: 40px auto;
    max-width: 1200px;
}

.about-content p {
    font-size: 18px;
    color: white;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Providers Section Specific */
.providers-section {
    background: transparent;
}

.providers-section .section-header {
    margin-bottom: 40px;
}

/* ==========================================
   16. ANIMATIONS
   ========================================== */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-left {
    animation: slideInFromLeft 0.6s ease-out;
}

.animate-right {
    animation: slideInFromRight 0.6s ease-out;
}

/* ==========================================
   17. PRINT STYLES
   ========================================== */
@media print {
    .decorative-chips,
    .header-top,
    .mobile-menu-toggle,
    .play-now-btn,
    footer {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .hero-text h1,
    .section-title,
    .features-list li {
        color: black;
    }
}