/* ===== STYLES PRINCIPAUX BETTRENZIA - DESIGN MODERNE ET ACCESSIBLE ===== */

/* Configuration Tailwind CSS */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Variables CSS personnalisées - Palette sombre avec excellent contraste */
:root {
    /* Couleurs principales avec contraste optimal */
    --primary-blue: #3B82F6;
    --primary-blue-light: #60A5FA;
    --primary-blue-dark: #2563EB;
    
    --secondary-gold: #F59E0B;
    --secondary-gold-light: #FBBF24;
    --secondary-gold-dark: #D97706;
    
    /* Couleurs de texte avec contraste WCAG AA */
    --text-primary: #F9FAFB;
    --text-secondary: #E5E7EB;
    --text-muted: #D1D5DB;
    --text-light: #9CA3AF;
    
    /* Couleurs de fond */
    --bg-primary: #111827;
    --bg-secondary: #1F2937;
    --bg-tertiary: #374151;
    --bg-dark: #0F172A;
    
    /* Couleurs de bordure */
    --border-light: #374151;
    --border-medium: #4B5563;
    --border-dark: #6B7280;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
    --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    --gradient-blue: linear-gradient(135deg, #3B82F6 0%, #93C5FD 100%);
    
    /* Ombres */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Configuration Tailwind personnalisée */
@layer base {
    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }
    
    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        background: var(--bg-primary);
        color: var(--text-primary);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Lora', Georgia, serif;
        font-weight: 700;
        line-height: 1.2;
        color: var(--text-primary);
        margin-bottom: 1rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.125rem; }
    h6 { font-size: 1rem; }
    
    p {
        margin-bottom: 1rem;
        color: var(--text-secondary);
    }
    
    a {
        color: var(--primary-blue-light);
        text-decoration: none;
        transition: color var(--transition-fast);
    }
    
    a:hover {
        color: var(--primary-blue);
        text-decoration: underline;
    }
    
    button, .btn {
        font-family: inherit;
        cursor: pointer;
        border: none;
        outline: none;
        transition: all var(--transition-fast);
        font-weight: 500;
    }
    
    *:focus {
        outline: 2px solid var(--primary-blue);
        outline-offset: 2px;
    }
    
    ::selection {
        background: var(--primary-blue);
        color: white;
    }
    
    ::-moz-selection {
        background: var(--primary-blue);
        color: white;
    }
}

/* Composants personnalisés */
@layer components {
    .clean-card {
        background: var(--bg-secondary);
        border: 1px solid var(--border-light);
        border-radius: 12px;
        box-shadow: var(--shadow-md);
        transition: all var(--transition-normal);
        overflow: hidden;
    }
    
    .clean-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-2px);
        border-color: var(--border-medium);
    }
    
    .clean-button {
        background: var(--primary-blue);
        color: white;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: var(--shadow-sm);
        border: 2px solid var(--primary-blue);
        transition: all var(--transition-normal);
    }
    
    .clean-button:hover:not(:disabled) {
        background: var(--primary-blue-dark);
        border-color: var(--primary-blue-dark);
        box-shadow: var(--shadow-md);
        transform: translateY(-1px);
    }
    
    .clean-button:active {
        transform: translateY(0);
        box-shadow: var(--shadow-sm);
    }
    
    .clean-button:disabled {
        background: var(--text-muted);
        border-color: var(--text-muted);
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }
    
    .clean-button-secondary {
        background: transparent;
        color: var(--text-primary);
        border: 2px solid var(--border-medium);
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all var(--transition-normal);
    }
    
    .clean-button-secondary:hover:not(:disabled) {
        background: var(--bg-tertiary);
        border-color: var(--text-primary);
        color: var(--text-primary);
    }
    
    .clean-button-gold {
        background: var(--secondary-gold);
        color: white;
        border: 2px solid var(--secondary-gold);
    }
    
    .clean-button-gold:hover:not(:disabled) {
        background: var(--secondary-gold-dark);
        border-color: var(--secondary-gold-dark);
    }
    
    .score-bar {
        width: 100%;
        height: 8px;
        background: var(--bg-tertiary);
        border-radius: 4px;
        overflow: hidden;
        position: relative;
    }
    
    .score-bar-fill {
        height: 100%;
        background: linear-gradient(90deg, var(--secondary-gold) 0%, var(--secondary-gold-light) 100%);
        border-radius: 4px;
        transition: width var(--transition-slow);
        position: relative;
    }
    
    .score-bar-fill::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
        animation: shimmer 2s infinite;
    }
    
    @keyframes shimmer {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .fade-in {
        animation: fadeInUp 0.6s ease-out;
    }
    
    .slide-up {
        animation: slideUp 0.4s ease-out;
    }
    
    .tier-badge {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: white;
        background: var(--text-muted);
    }
    
    .tier-badge.platinum {
        background: linear-gradient(135deg, #E5E4E2 0%, #B8B8B8 100%);
        color: var(--bg-primary);
    }
    
    .tier-badge.gold {
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
        color: var(--bg-primary);
    }
    
    .tier-badge.silver {
        background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
        color: var(--bg-primary);
    }
    
    .casino-card {
        background: var(--bg-secondary);
        border: 1px solid var(--border-light);
        border-radius: 16px;
        padding: 24px;
        box-shadow: var(--shadow-md);
        transition: all var(--transition-normal);
        position: relative;
        overflow: hidden;
    }
    
    .casino-card:hover {
        box-shadow: var(--shadow-xl);
        transform: translateY(-4px);
        border-color: var(--primary-blue-light);
    }
    
    .casino-logo {
        width: 80px;
        height: 80px;
        object-fit: contain;
        border-radius: 12px;
        background: var(--bg-tertiary);
        padding: 8px;
        transition: all var(--transition-normal);
        border: 1px solid var(--border-light);
    }
    
    .casino-logo:hover {
        transform: scale(1.05);
        box-shadow: var(--shadow-lg);
    }
    
    .favorite-btn {
        position: absolute;
        top: 16px;
        right: 16px;
        background: var(--bg-secondary);
        border: 2px solid var(--border-medium);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all var(--transition-normal);
        z-index: 10;
    }
    
    .favorite-btn:hover {
        background: var(--secondary-gold);
        border-color: var(--secondary-gold);
        transform: scale(1.1);
    }
    
    .favorite-btn svg {
        width: 20px;
        height: 20px;
        color: var(--text-muted);
        transition: color var(--transition-fast);
    }
    
    .favorite-btn:hover svg {
        color: white;
    }
    
    .age-verification {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        backdrop-filter: blur(4px);
    }
    
    .age-verification-content {
        background: var(--bg-secondary);
        padding: 32px;
        border-radius: 16px;
        max-width: 400px;
        width: 90%;
        box-shadow: var(--shadow-xl);
        text-align: center;
    }
    
    .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border-top: 1px solid var(--border-light);
        padding: 16px;
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    
    .cookie-banner-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
    }
    
    .form-input {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid var(--border-light);
        border-radius: 8px;
        font-size: 1rem;
        transition: all var(--transition-fast);
        background: var(--bg-tertiary);
        color: var(--text-primary);
    }
    
    .form-input:focus {
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        outline: none;
    }
    
    .form-input::placeholder {
        color: var(--text-muted);
    }
    
    .nav-link {
        color: var(--text-primary);
        font-weight: 500;
        padding: 8px 16px;
        border-radius: 8px;
        transition: all var(--transition-fast);
        position: relative;
        text-decoration: none;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--primary-blue);
        transition: all var(--transition-fast);
        transform: translateX(-50%);
    }
    
    .nav-link:hover {
        color: var(--primary-blue-light);
        background: var(--bg-tertiary);
    }
    
    .nav-link:hover::after {
        width: 80%;
    }
    
    .responsible-gaming-icon {
        color: var(--primary-blue-light);
        transition: all var(--transition-normal);
    }
    
    .responsible-gaming-icon:hover {
        color: var(--primary-blue);
        transform: scale(1.1);
    }
    
    .voice-search-button {
        background: var(--bg-secondary);
        border: 2px solid var(--primary-blue);
        color: var(--primary-blue);
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all var(--transition-normal);
    }
    
    .voice-search-button:hover {
        background: var(--primary-blue);
        color: white;
        transform: translateY(-1px);
    }
    
    .voice-search-button.listening {
        background: var(--secondary-gold);
        border-color: var(--secondary-gold);
        color: white;
        animation: pulse 1.5s infinite;
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }
    
    .bettrenzia-points {
        background: var(--bg-tertiary);
        padding: 8px 16px;
        border-radius: 20px;
        border: 1px solid var(--border-light);
        font-weight: 600;
        color: var(--text-primary);
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all var(--transition-fast);
    }
    
    .bettrenzia-points:hover {
        background: var(--bg-secondary);
        border-color: var(--border-medium);
    }
    
    .comparison-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        backdrop-filter: blur(4px);
    }
    
    .comparison-modal-content {
        background: var(--bg-secondary);
        padding: 32px;
        border-radius: 16px;
        max-width: 90%;
        max-height: 90%;
        overflow-y: auto;
        box-shadow: var(--shadow-xl);
    }
    
    .comparison-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 16px;
        background: var(--bg-secondary);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }
    
    .comparison-table th {
        background: var(--bg-tertiary);
        padding: 16px;
        text-align: left;
        font-weight: 700;
        color: var(--text-primary);
        border-bottom: 2px solid var(--border-light);
    }
    
    .comparison-table td {
        padding: 16px;
        border-bottom: 1px solid var(--border-light);
        color: var(--text-secondary);
    }
    
    .comparison-table tr:hover td {
        background: var(--bg-tertiary);
    }
    
    .review-card {
        background: var(--bg-secondary);
        padding: 24px;
        border-radius: 12px;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border-light);
        transition: all var(--transition-normal);
    }
    
    .review-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-2px);
    }
    
    .review-stars {
        color: var(--secondary-gold);
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .filter-select {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid var(--border-light);
        border-radius: 8px;
        background: var(--bg-tertiary);
        color: var(--text-primary);
        font-size: 1rem;
        transition: all var(--transition-fast);
        cursor: pointer;
    }
    
    .filter-select:focus {
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        outline: none;
    }
    
    .lazy-image {
        opacity: 0;
        transition: opacity var(--transition-normal);
    }
    
    .lazy-image.loaded {
        opacity: 1;
    }
    
    .tooltip {
        position: relative;
        cursor: help;
    }
    
    .tooltip::after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: var(--bg-dark);
        color: white;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 0.875rem;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-fast);
        z-index: 1000;
        box-shadow: var(--shadow-md);
    }
    
    .tooltip:hover::after {
        opacity: 1;
    }
    
    .notification {
        position: fixed;
        top: 20px;
        right: 20px;
        background: var(--bg-secondary);
        border: 1px solid var(--border-light);
        border-radius: 8px;
        padding: 16px 20px;
        box-shadow: var(--shadow-lg);
        z-index: 10000;
        max-width: 400px;
        transform: translateX(100%);
        transition: transform var(--transition-normal);
        color: var(--text-primary);
    }
    
    .notification.show {
        transform: translateX(0);
    }
    
    .notification.success {
        border-left: 4px solid #10B981;
    }
    
    .notification.error {
        border-left: 4px solid #EF4444;
    }
    
    .notification.info {
        border-left: 4px solid var(--primary-blue);
    }
    
    .social-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: var(--bg-tertiary);
        border: 1px solid var(--border-light);
        border-radius: 8px;
        color: var(--text-secondary);
        transition: all var(--transition-fast);
        text-decoration: none;
    }
    
    .social-button:hover {
        background: var(--primary-blue);
        color: white;
        border-color: var(--primary-blue);
        transform: translateY(-2px);
    }
    
    .external-link {
        color: var(--primary-blue-light);
        text-decoration: none;
        position: relative;
        transition: color var(--transition-fast);
    }
    
    .external-link::after {
        content: '↗';
        margin-left: 4px;
        font-size: 0.875rem;
        transition: transform var(--transition-fast);
    }
    
    .external-link:hover {
        color: var(--primary-blue);
    }
    
    .external-link:hover::after {
        transform: translate(2px, -2px);
    }
    
    .error-message {
        background: #7F1D1D;
        border: 1px solid #DC2626;
        color: #FCA5A5;
        padding: 12px 16px;
        border-radius: 8px;
        margin: 8px 0;
        font-size: 0.875rem;
    }
    
    .success-message {
        background: #064E3B;
        border: 1px solid #10B981;
        color: #A7F3D0;
        padding: 12px 16px;
        border-radius: 8px;
        margin: 8px 0;
        font-size: 0.875rem;
    }
    
    .loader {
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 2px solid var(--border-light);
        border-radius: 50%;
        border-top-color: var(--primary-blue);
        animation: spin 1s ease-in-out infinite;
    }
    
    @keyframes spin {
        to { transform: rotate(360deg); }
    }
    
    .skeleton {
        background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--border-light) 50%, var(--bg-tertiary) 75%);
        background-size: 200% 100%;
        animation: skeleton-loading 1.5s infinite;
        border-radius: 4px;
    }
    
    @keyframes skeleton-loading {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
    }
    
    /* Section Blog améliorée */
    .blog-section {
        background: var(--bg-tertiary);
        padding: 80px 0;
    }
    
    .blog-card {
        background: var(--bg-secondary);
        border-radius: 16px;
        padding: 24px;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border-light);
        transition: all var(--transition-normal);
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary-blue-light);
    }
    
    .blog-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 16px;
        transition: all var(--transition-normal);
    }
    
    .blog-card:hover .blog-image {
        transform: scale(1.05);
    }
    
    .blog-category {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
    }
    
    .blog-category.security {
        background: #1E3A8A;
        color: #93C5FD;
    }
    
    .blog-category.strategy {
        background: #065F46;
        color: #A7F3D0;
    }
    
    .blog-category.responsibility {
        background: #9A3412;
        color: #FED7AA;
    }
    
    .blog-category.bonus {
        background: #7C3AED;
        color: #E9D5FF;
    }
    
    .blog-category.innovation {
        background: #DC2626;
        color: #FEE2E2;
    }
    
    .blog-category.payment {
        background: #3730A3;
        color: #C7D2FE;
    }
    
    .blog-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .blog-excerpt {
        color: var(--text-secondary);
        margin-bottom: 16px;
        flex-grow: 1;
    }
    
    .blog-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
    }
    
    .blog-read-time {
        color: var(--text-muted);
        font-size: 0.875rem;
    }
    
    .blog-read-more {
        color: var(--primary-blue-light);
        font-weight: 600;
        text-decoration: none;
        transition: color var(--transition-fast);
    }
    
    .blog-read-more:hover {
        color: var(--primary-blue);
        text-decoration: underline;
    }
    
    /* Section Confiance & Sécurité améliorée */
    .trust-section {
        background: var(--bg-tertiary);
        padding: 80px 0;
    }
    
    .trust-card {
        background: var(--bg-secondary);
        border-radius: 20px;
        padding: 32px;
        text-align: center;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border-light);
        transition: all var(--transition-normal);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .trust-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary-blue-light);
    }
    
    .trust-icon {
        width: 80px;
        height: 80px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
        box-shadow: var(--shadow-md);
        transition: all var(--transition-normal);
    }
    
    .trust-card:hover .trust-icon {
        transform: scale(1.1);
        box-shadow: var(--shadow-lg);
    }
    
    .trust-icon i {
        color: white;
        font-size: 2rem;
    }
    
    .trust-banner {
        background: var(--bg-secondary);
        border-radius: 12px;
        padding: 16px;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border-light);
        transition: all var(--transition-normal);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .trust-banner:hover {
        transform: scale(1.05);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-blue-light);
    }
    
    .trust-banner img {
        max-height: 60px;
        width: auto;
        object-fit: contain;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .clean-card {
        padding: 16px;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .tooltip::after {
        display: none;
    }
    
    .casino-logo {
        width: 60px;
        height: 60px;
    }
    
    .tier-badge {
        font-size: 0.625rem;
        padding: 2px 8px;
    }
    
    .trust-card {
        padding: 24px;
    }
    
    .trust-icon {
        width: 60px;
        height: 60px;
    }
    
    .trust-icon i {
        font-size: 1.5rem;
    }
    
    .blog-card {
        padding: 20px;
    }
    
    .blog-image {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .clean-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .clean-card {
        padding: 1rem;
    }
    
    .casino-logo {
        width: 50px;
        height: 50px;
    }
    
    .notification {
        right: 0.5rem;
        left: 0.5rem;
        max-width: none;
    }
    
    .trust-card {
        padding: 20px;
    }
    
    .trust-icon {
        width: 50px;
        height: 50px;
    }
    
    .trust-icon i {
        font-size: 1.25rem;
    }
    
    .blog-card {
        padding: 16px;
    }
    
    .blog-image {
        height: 140px;
    }
}

/* Print styles */
@media print {
    .age-verification,
    .cookie-banner,
    .voice-search-button,
    .bettrenzia-points {
        display: none !important;
    }
    
    .clean-card {
        border: 1px solid #000;
        box-shadow: none;
        break-inside: avoid;
    }
    
    .clean-button {
        background: #000 !important;
        color: #fff !important;
        border: 1px solid #000 !important;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .clean-card:hover,
    .casino-card:hover,
    .review-card:hover,
    .trust-card:hover,
    .blog-card:hover {
        transform: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --border-light: #fff;
        --border-medium: #fff;
        --text-muted: #fff;
    }
    
    .clean-card {
        border: 2px solid #fff;
    }
    
    .clean-button {
        border: 2px solid #fff;
    }
    
    .trust-card {
        border: 2px solid #fff;
    }
    
    .blog-card {
        border: 2px solid #fff;
    }
}

/* Light mode support (optional) */
@media (prefers-color-scheme: light) {
    :root {
        --bg-primary: #FFFFFF;
        --bg-secondary: #F8FAFC;
        --bg-tertiary: #F1F5F9;
        --text-primary: #111827;
        --text-secondary: #374151;
        --text-muted: #6B7280;
        --border-light: #E2E8F0;
        --border-medium: #CBD5E1;
    }
} 