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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e6eef8;
    background: #0a1a2e;
    min-height: 100vh;
}

/* Dark Blue Background Theme */
:root {
    --bg-primary: #0a1a2e;
    --bg-secondary: #16213e;
    --bg-surface: rgba(255,255,255,0.06);
    --bg-glass: rgba(255,255,255,0.04);
    
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #00ffa2 60%, #4299ff 100%);
    --gradient-secondary: linear-gradient(135deg, #ffb86b 0%, #ff6b6b 60%, #ff3b3b 100%);
    --gradient-accent: linear-gradient(135deg, #4299ff 0%, #00d4ff 50%, #00ffa2 100%);
    
    --accent-cyan: #00d4ff;
    --accent-mint: #00ffa2;
    --accent-amber: #ffd166;
    --accent-blue: #4299ff;
    
    --text-primary: #e6eef8;
    --text-secondary: #9aa6b2;
    --text-muted: #6b7c93;
    
    --warning-bg: #2d3748;
    --warning-border: #4a5568;
    
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    
    --shadow-glow: 0 0 20px rgba(66, 153, 255, 0.3);
    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

h1 { font-size: clamp(28px, 5vw, 42px); }
h2 { font-size: clamp(24px, 4vw, 32px); }
h3 { font-size: clamp(20px, 3vw, 24px); }
h4 { font-size: clamp(18px, 2.5vw, 20px); }

p { 
    font-size: 16px; 
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:focus {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(66, 153, 255, 0.5);
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1px solid var(--accent-blue);
}

.btn-secondary:hover {
    background: var(--accent-blue);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
}

.age-modal {
    max-width: 500px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--accent-cyan);
}

.age-modal-header {
    margin-bottom: 1.5rem;
}

.age-modal-header h2 {
    color: var(--accent-cyan);
    margin-top: 0.5rem;
}

.age-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    color: white;
    margin: 0 auto;
}

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

.affiliate-disclaimer {
    background: var(--warning-bg);
    border: 1px solid var(--warning-border);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    margin: 1rem 0;
}

.affiliate-disclaimer p {
    font-size: 14px;
    color: var(--accent-amber);
    margin: 0;
}

.age-modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.age-modal-actions .btn {
    flex: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 2px solid var(--accent-blue);
    padding: 1rem;
    z-index: 999;
    box-shadow: var(--shadow-card);
}

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

.cookie-content h3 {
    color: var(--accent-cyan);
    font-size: 18px;
    margin: 0;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--accent-cyan);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Header */
.header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--accent-blue);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

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

.logo h1 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(24px, 4vw, 32px);
}

.tagline {
    font-size: 14px;
    color: var(--text-muted);
}

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

.age-badge-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.region-text {
    font-size: 14px;
    color: var(--accent-cyan);
    font-weight: 600;
}

.affiliate-notice {
    background: var(--warning-bg);
    border: 1px solid var(--warning-border);
    padding: 0.75rem;
    border-radius: var(--border-radius-sm);
}

.affiliate-notice p {
    font-size: 13px;
    color: var(--accent-amber);
    margin: 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0.1;
    transform: skewY(-3deg);
    transform-origin: top left;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 0;
}

.hero-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    transform: scale(1.05);
}

/* Featured Section */
.featured-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

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

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

/* Casino Grid */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.casino-card {
    background: var(--bg-glass);
    border: 1px solid rgba(66, 153, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.casino-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-cyan);
}

.casino-card:focus-within {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

.casino-rank {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    box-shadow: var(--shadow-card);
}

.casino-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.casino-logo img {
    max-width: 150px;
    max-height: 60px;
    background: white;
    padding: 10px;
    border-radius: var(--border-radius-sm);
}

.casino-content h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.casino-bonus {
    text-align: center;
    margin: 2rem 0;
}

.bonus-main {
    font-size: clamp(40px, 4vw, 34px);
    font-weight: 700;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.feature {
    background: var(--bg-surface);
    color: var(--accent-mint);
    padding: 4px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 18px;
    font-weight: 600;
    border: 1px solid var(--accent-mint);
}

.casino-disclaimer {
    background: var(--warning-bg);
    border: 1px solid var(--warning-border);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
}

.casino-disclaimer p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.licence-display {
    background: var(--bg-surface);
    border: 1px solid var(--accent-blue);
    padding: 0.75rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
    text-align: center;
}

.licence-display strong {
    color: var(--accent-cyan);
}

.casino-cta {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 16px;
    font-weight: 700;
}

.affiliate-disclosure {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
}

/* Trusted Section */
.trusted-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

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

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

.trusted-item {
    background: var(--bg-glass);
    border: 1px solid rgba(66, 153, 255, 0.2);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    backdrop-filter: blur(10px);
}

.trusted-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-cyan);
}

.trusted-item img {
    max-width: 80px;
    max-height: 60px;
    margin-bottom: 1rem;
    background: white;
    padding: 10px;
    border-radius: var(--border-radius-sm);
}

.trusted-item span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

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

.why-choose-header h2 {
    margin-bottom: 1rem;
    font-size: clamp(28px, 4vw, 36px);
}

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

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--bg-glass);
    border: 1px solid rgba(66, 153, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-highlight:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-cyan);
}

.feature-highlight:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    position: relative;
}

.feature-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 1rem;
    border: 1px solid var(--accent-cyan);
}

.feature-graphic {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 24px;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.feature-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-benefits li {
    background: rgba(0, 255, 162, 0.1);
    color: var(--accent-mint);
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--accent-mint);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(66, 153, 255, 0.2);
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-glass);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

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

.faq-header h2 {
    margin-bottom: 1rem;
    font-size: clamp(28px, 4vw, 36px);
}

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

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

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-glass);
    border: 1px solid rgba(66, 153, 255, 0.2);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-surface);
}

.faq-question:focus {
    outline: 2px solid var(--accent-cyan);
    outline-offset: -2px;
}

.faq-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    border: 1px solid var(--accent-cyan);
    flex-shrink: 0;
}

.faq-icon {
    font-size: 18px;
}

.faq-text {
    flex: 1;
}

.faq-toggle {
    font-size: 24px;
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
}

.faq-question[aria-expanded="true"] .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
    border-top: 1px solid rgba(66, 153, 255, 0.1);
    margin-top: 1rem;
    padding-top: 1rem;
}

.faq-answer.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    line-height: 1.6;
    color: var(--text-secondary);
}

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

/* Legal Pages Styling */
.legal-page {
    padding: 2rem 0 4rem;
    background: var(--bg-primary);
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-glass);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    border: 1px solid rgba(66, 153, 255, 0.2);
    backdrop-filter: blur(10px);
}

.legal-content h1 {
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    font-size: clamp(24px, 4vw, 32px);
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(66, 153, 255, 0.2);
}

.legal-content section {
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
    font-size: 20px;
    border-left: 3px solid var(--accent-cyan);
    padding-left: 1rem;
}

.legal-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 18px;
}

.legal-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 16px;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: var(--accent-cyan);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--accent-mint);
}

.contact-info {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--accent-cyan);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    margin: 1rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: var(--accent-cyan);
}

.back-home {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(66, 153, 255, 0.2);
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.intro-section {
    background: rgba(0, 255, 162, 0.05);
    border: 1px solid var(--accent-mint);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    margin-bottom: 2rem;
}

.intro-section h2 {
    color: var(--accent-mint);
    border: none;
    padding: 0;
    margin-bottom: 1rem;
}

/* Responsible Section */
.responsible-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.responsible-card {
    background: var(--warning-bg);
    border: 2px solid var(--warning-border);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.responsible-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.responsible-header h2 {
    color: var(--accent-amber);
}

.responsible-text {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.responsible-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 2px solid var(--accent-blue);
    padding: 4rem 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-cyan);
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--accent-blue);
    border-radius: var(--border-radius-sm);
    background: var(--bg-surface);
    color: var(--text-primary);
}

.newsletter-form input:focus {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

.footer-bottom {
    border-top: 1px solid var(--accent-blue);
    padding-top: 2rem;
    text-align: center;
}

.footer-disclaimer {
    background: var(--warning-bg);
    border: 1px solid var(--warning-border);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    margin-bottom: 1rem;
    font-size: 14px;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-disclaimer strong {
    color: var(--accent-amber);
}

.footer-disclaimer a {
    color: var(--accent-cyan);
    text-decoration: underline;
}

.copyright {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-top {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        justify-content: center;
    }
    
    .age-modal-actions {
        flex-direction: column;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .casino-grid {
        grid-template-columns: 1fr;
    }
    
    .trusted-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-highlight {
        flex-direction: column !important;
        text-align: center;
        gap: 1.5rem;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .responsible-card {
        padding: 2rem 1.5rem;
    }
    
    .responsible-links {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .trusted-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-card {
        padding: 1.5rem;
    }
    
    .age-modal {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
    }
    
    .back-home {
        flex-direction: column;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #ffffff;
        --text-secondary: #ffffff;
        --bg-surface: rgba(255,255,255,0.1);
        --accent-cyan: #00ffff;
        --accent-blue: #0099ff;
    }
}

/* Focus styles for better keyboard navigation */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Print styles */
@media print {
    .modal-overlay,
    .cookie-banner,
    .hero-bg {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}