/*
Theme Name: Flavor
Theme URI: https://www.rudolph-valentino.com/
Author: Rudolph Valentino
Description: Professional casino review theme. Full import from original site with 800+ casinos, player reviews, and news.
Version: 2.0.0
Text Domain: flavor
*/

:root {
    --primary: #1a365d;
    --primary-dark: #2d3748;
    --accent: #e53e3c;
    --accent-light: #fc8181;
    --light: #f7fafc;
    --dark: #2d3748;
    --text: #4a5568;
    --border: #e2e8f0;
    --success: #38a169;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #e53e3c 0%, #f56565 100%);
}

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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
}

/* Header */
.main-header {
    background: white;
    border-bottom: 1px solid var(--border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.logo {
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
}

.logo-rudolph { color: #000; }
.logo-valentino { color: #e53e3c; }

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.main-nav { display: flex; align-items: center; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
}

.nav-links a:hover {
    color: var(--accent);
    background: rgba(229, 62, 60, 0.08);
}

/* Hero Section */
.country-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 50%, #1a365d 100%);
    color: white;
    padding: 10rem 2rem 5rem;
    text-align: center;
    position: relative;
}

.country-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"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
}

.country-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.country-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.benefit-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.benefit-description { font-size: 0.9rem; opacity: 0.85; }

/* Country Selector */
.country-selector-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.selector-header { margin-bottom: 2rem; text-align: center; }
.selector-header h2 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.selector-header p { opacity: 0.8; }

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

.country-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.country-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.country-flag {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 0.8rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.country-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.2rem; }
.country-language { font-size: 0.8rem; opacity: 0.7; }

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title p {
    color: var(--text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

/* News Section */
.latest-news-section {
    background: white;
    padding: 5rem 2rem;
}

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

.view-all-button {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.view-all-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

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

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    border: 1px solid var(--border);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content { padding: 1.5rem; }

.news-content h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.news-excerpt {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text);
    opacity: 0.7;
}

/* Quick Links */
.quick-links-section {
    background: var(--light);
    padding: 5rem 2rem;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-link-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.quick-link-icon { font-size: 3rem; margin-bottom: 1.5rem; display: block; }

.quick-link-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Trust Section */
.trust-section {
    background: white;
    padding: 5rem 2rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border-left: 4px solid var(--accent);
}

.trust-icon { font-size: 3rem; margin-bottom: 1.5rem; display: block; }

.trust-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.trust-list {
    list-style: none;
    text-align: left;
}

.trust-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Featured Casino */
.featured-casino {
    background: white;
    padding: 3rem 2rem;
}

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

.featured-badge {
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.featured-content {
    background: var(--gradient);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-info h2 { font-size: 2.2rem; margin-bottom: 0.8rem; font-weight: 800; }

.featured-rating {
    color: #f6ad55;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.featured-description { font-size: 1.05rem; line-height: 1.6; margin-bottom: 1.5rem; opacity: 0.95; }

.featured-highlights { list-style: none; margin-bottom: 1.5rem; }

.featured-highlights li {
    margin-bottom: 0.7rem;
    padding-left: 2rem;
    position: relative;
}

.featured-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.featured-bonus {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.bonus-amount { font-size: 2.5rem; font-weight: 800; color: #f6ad55; margin-bottom: 0.5rem; }
.bonus-text { font-size: 1.05rem; margin-bottom: 1.5rem; opacity: 0.95; }

/* Casino Cards */
.casinos-grid, .other-casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.casino-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

.casino-logo { font-size: 2.5rem; }

.casino-info h3 {
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.casino-rating {
    color: #f6ad55;
    font-weight: 600;
}

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

.casino-features li {
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.casino-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.visit-button, .casino-button {
    display: block;
    text-align: center;
    background: var(--gradient);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.visit-button:hover, .casino-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Additional Casinos */
.additional-casinos {
    background: var(--light);
    padding: 4rem 2rem;
}

.additional-casinos-container {
    max-width: 1200px;
    margin: 0 auto;
}

.casinos-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.8rem;
    list-style: none;
}

.casinos-list li a,
.casinos-list li {
    background: white;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text);
    text-decoration: none;
    display: block;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.casinos-list li:hover,
.casinos-list li a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Comments/Reviews */
.comments-section {
    background: white;
    padding: 5rem 2rem;
}

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

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

.comment-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.user-info { display: flex; align-items: center; gap: 1rem; }

.user-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.user-details h4 { color: var(--primary); font-size: 1rem; margin-bottom: 0.3rem; }
.user-rating { color: #f6ad55; }
.comment-date { font-size: 0.85rem; color: var(--text); opacity: 0.7; }

.comment-content h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.comment-content p { line-height: 1.7; color: var(--text); }

.comment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.verified-badge { font-size: 0.85rem; color: var(--success); }

.comment-likes {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--text);
}

/* FAQ */
.faq-section {
    background: var(--light);
    padding: 5rem 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p { line-height: 1.7; }

/* Footer */
.main-footer {
    background: var(--dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-column h3 {
    color: var(--accent-light);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
    display: inline-block;
}

.footer-disclaimer {
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
    margin-top: 2rem;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
}

.disclaimer-text {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #a0aec0;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-container { padding: 1rem; }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 5rem 1.5rem 2rem;
    }
    
    .main-nav.active { right: 0; }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
    }
    
    .country-hero { padding: 8rem 1rem 3rem; }
    .country-hero h1 { font-size: 2rem; }
    
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .countries-grid { grid-template-columns: repeat(2, 1fr); }
    
    .featured-content { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .casinos-grid { grid-template-columns: 1fr; }
    .comments-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .country-hero h1 { font-size: 1.6rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .countries-grid { grid-template-columns: 1fr; }
    .casinos-list { grid-template-columns: repeat(2, 1fr); }
}

.nav-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   NEW BEAUTIFUL CASINO CARDS
   ======================================== */

.casino-card-new {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.casino-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--accent);
}

.rank-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.casino-badge-new {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.casino-badge-new.badge-best { background: linear-gradient(135deg, #f6ad55, #ed8936); color: white; }
.casino-badge-new.badge-hot { background: linear-gradient(135deg, #fc8181, #f56565); color: white; }
.casino-badge-new.badge-new { background: linear-gradient(135deg, #68d391, #48bb78); color: white; }
.casino-badge-new.badge-crypto { background: linear-gradient(135deg, #9f7aea, #805ad5); color: white; }

.casino-header-new {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.casino-logo-new {
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.casino-info-new h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0 0 0.3rem;
}

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

.casino-rating-new .stars {
    color: #f6ad55;
    font-size: 1rem;
}

.casino-rating-new .rating-value {
    font-weight: 700;
    color: var(--primary);
}

.casino-license {
    font-size: 0.75rem;
    color: #48bb78;
    margin-top: 0.3rem;
}

.bonus-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 1.2rem;
    text-align: center;
    margin-bottom: 1.2rem;
}

.bonus-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    margin-top: 0.3rem;
}

.casino-features-new {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.casino-features-new li {
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
}

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

.feature-check {
    color: #48bb78;
    font-weight: bold;
}

.casino-info-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.casino-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.visit-button-new {
    display: block;
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.visit-button-new:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.review-button-new {
    display: block;
    background: transparent;
    color: var(--primary);
    text-align: center;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border: 2px solid var(--primary);
    transition: all 0.3s;
}

.review-button-new:hover {
    background: var(--primary);
    color: white;
}

/* Update grid for new cards */
.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .casinos-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .casino-card-new {
        padding: 1.2rem;
    }
}
