/* Winspinaura Finland Social Casino - Styles */

/* CSS Reset and Base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e1e1e1;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

p, li {
    margin-bottom: 1rem;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

    a:hover, a:focus {
        color: #93c5fd;
        text-decoration: underline;
    }

    a:focus {
        outline: 2px solid #60a5fa;
        outline-offset: 2px;
        border-radius: 4px;
    }

/* Layout Framework */
.frame-winspinaura-fi {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.stratum-mainflow {
    flex: 1;
    padding: 2rem 0;
}

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

/* Header */
.header-main {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(96, 165, 250, 0.2);
}

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

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-title {
    font-size: 1.75rem;
    margin: 0;
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

    .brand-title a {
        background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.brand-tagline {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: -0.25rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

    .nav-links a {
        font-weight: 500;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

        .nav-links a:hover,
        .nav-links a:focus {
            background: rgba(96, 165, 250, 0.1);
            text-decoration: none;
        }

        .nav-links a[aria-current="page"] {
            background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
            color: white;
        }

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: #d1d5db;
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(96, 165, 250, 0.2);
    color: #60a5fa;
    padding: 0.5rem 1rem;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

/* About Section */
.about-section {
    padding: 4rem 0;
}

    .about-section h2 {
        text-align: center;
        margin-bottom: 2rem;
        color: #f9fafb;
    }

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

    .about-content p {
        font-size: 1.125rem;
        color: #d1d5db;
        margin-bottom: 1.5rem;
    }

/* Games Section */
.games-section {
    padding: 4rem 0;
    background: rgba(16, 185, 129, 0.05);
}

    .games-section h2 {
        text-align: center;
        margin-bottom: 3rem;
        color: #f9fafb;
    }

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

.tile-gamelet {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.2rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .tile-gamelet:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(96, 165, 250, 0.2);
        border-color: rgba(96, 165, 250, 0.3);
    }

.game-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.tile-gamelet h3 {
    color: #f9fafb;
    margin-bottom: 1rem;
}

.tile-gamelet p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.btn-playpulse {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
}

    .btn-playpulse:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4);
    }

    .btn-playpulse:focus {
        outline: 2px solid #f9fafb;
        outline-offset: 2px;
    }

    .btn-playpulse:active {
        transform: scale(0.98);
    }

/* Disclosure Panel */
.slab-disclosure-fi {
    margin: 2rem 0;
}

.box-pastel {
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.1) 0%, rgba(243, 244, 246, 0.1) 100%);
    border: 1px solid rgba(249, 250, 251, 0.2);
    border-radius: 1rem;
    overflow: hidden;
}

.rail-rg-ethos {
    padding: 2rem;
    text-align: center;
}

    .rail-rg-ethos h3 {
        color: #f9fafb;
        margin-bottom: 1.5rem;
    }

.disclosure-content p {
    color: #d1d5db;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

    .disclosure-content p:last-child {
        margin-bottom: 0;
    }

/* Footer */
.footer-main {
    background: #0f172a;
    color: #e2e8f0;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand h3 {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #94a3b8;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

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

.footer-column a,
.link-button {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    padding: 0;
}

    .footer-column a:hover,
    .footer-column a:focus,
    .link-button:hover,
    .link-button:focus {
        color: #60a5fa;
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

    .footer-bottom p {
        color: #94a3b8;
        font-size: 0.875rem;
    }

    .footer-bottom address {
        font-style: normal;
        color: #94a3b8;
        font-size: 0.875rem;
        text-align: right;
    }

/* Age Gate Banner */
.bar-age-18fi {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 50%, #db2777 100%);
    color: white;
    z-index: 1000;
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

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

.age-gate-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.age-gate-text {
    flex: 1;
    min-width: 200px;
}

    .age-gate-text h3 {
        margin: 0 0 0.25rem 0;
        font-size: 1.25rem;
    }

    .age-gate-text p {
        margin: 0;
        opacity: 0.9;
    }

.age-gate-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-affirm-18,
.btn-decline-18 {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-affirm-18 {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

    .btn-affirm-18:hover,
    .btn-affirm-18:focus {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

.btn-decline-18 {
    background: rgba(239, 68, 68, 0.8);
    color: white;
}

    .btn-decline-18:hover,
    .btn-decline-18:focus {
        background: rgba(239, 68, 68, 1);
        transform: translateY(-2px);
    }

    .btn-affirm-18:focus,
    .btn-decline-18:focus {
        outline: 2px solid rgba(255, 255, 255, 0.5);
        outline-offset: 2px;
    }

/* Cookie Consent Drawer */
.drawer-consent {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 400px;
    max-width: 90vw;
    background: #1f2937;
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: slideInRight 0.5s ease;
    backdrop-filter: blur(10px);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.consent-content {
    padding: 1.5rem;
}

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

    .consent-header h3 {
        margin: 0;
        color: #f9fafb;
        font-size: 1.25rem;
    }

.consent-close {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s ease;
}

    .consent-close:hover,
    .consent-close:focus {
        color: #f9fafb;
    }

.consent-body p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.stack-consent-prefs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pref-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pref-info h4 {
    margin: 0 0 0.25rem 0;
    color: #f9fafb;
    font-size: 1rem;
}

.pref-info p {
    margin: 0;
    color: #9ca3af;
    font-size: 0.875rem;
}

.pref-toggle {
    flex-shrink: 0;
}

.toggle-label {
    font-size: 0.875rem;
    color: #9ca3af;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    background: #374151;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .toggle-switch::after {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        width: 20px;
        height: 20px;
        background: white;
        border-radius: 50%;
        transition: transform 0.3s ease;
    }

.switchlet-analytics:checked + .toggle-switch,
.switchlet-marketing:checked + .toggle-switch {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
}

    .switchlet-analytics:checked + .toggle-switch::after,
    .switchlet-marketing:checked + .toggle-switch::after {
        transform: translateX(20px);
    }

.switchlet-analytics,
.switchlet-marketing {
    opacity: 0;
    width: 0;
    height: 0;
}

.consent-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-consent-accept-all,
.btn-consent-reject,
.btn-consent-save {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-consent-accept-all {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
    color: white;
}

.btn-consent-reject,
.btn-consent-save {
    background: rgba(55, 65, 81, 0.8);
    color: #d1d5db;
    border: 1px solid rgba(75, 85, 99, 0.5);
}

    .btn-consent-accept-all:hover,
    .btn-consent-reject:hover,
    .btn-consent-save:hover {
        transform: translateY(-2px);
    }

.btn-consent-accept-all:hover {
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
}

.btn-consent-reject:hover,
.btn-consent-save:hover {
    background: rgba(75, 85, 99, 0.8);
    border-color: rgba(96, 165, 250, 0.3);
}

/* Toast Notifications */
.toast-soonplay {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: #1f2937;
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 998;
    max-width: 400px;
    animation: toastFadeIn 0.5s ease;
    backdrop-filter: blur(10px);
}

.toast-animate-fade {
    animation: toastFadeIn 0.5s ease;
}

@keyframes toastFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.toast-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
}

.toast-message {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.5;
}

.toast-closelet {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

    .toast-closelet:hover,
    .toast-closelet:focus {
        color: #f9fafb;
    }

/* Legal Pages */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

    .legal-page h1 {
        text-align: center;
        margin-bottom: 0.5rem;
        color: #f9fafb;
    }

.last-updated {
    text-align: center;
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

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

.legal-page h2 {
    color: #f9fafb;
    border-bottom: 2px solid rgba(96, 165, 250, 0.3);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-page h3 {
    color: #e5e7eb;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

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

.legal-page li {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.legal-page address {
    background: rgba(96, 165, 250, 0.1);
    border-left: 4px solid #60a5fa;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
    font-style: normal;
    color: #e5e7eb;
}

/* Cookie Tables */
.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(96, 165, 250, 0.05);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 1rem;
}

.cookie-table {
    overflow-x: auto;
    margin-top: 1rem;
}

    .cookie-table table {
        width: 100%;
        border-collapse: collapse;
        border-radius: 8px;
        overflow: hidden;
        background: rgba(31, 41, 55, 0.8);
    }

    .cookie-table th {
        background: rgba(96, 165, 250, 0.2);
        color: #f9fafb;
        padding: 1rem;
        text-align: left;
        font-weight: 600;
    }

    .cookie-table td {
        padding: 1rem;
        border-top: 1px solid rgba(75, 85, 99, 0.5);
        color: #d1d5db;
    }

    .cookie-table tr:hover {
        background: rgba(55, 65, 81, 0.3);
    }

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-info h2,
.contact-form-section h2 {
    color: #f9fafb;
    margin-bottom: 1.5rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(96, 165, 250, 0.05);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 1rem;
}

    .contact-method h3 {
        color: #60a5fa;
        margin-bottom: 0.5rem;
        font-size: 1.125rem;
    }

    .contact-method p {
        color: #d1d5db;
        margin-bottom: 0.5rem;
    }

.contact-link {
    font-weight: 600;
    font-size: 1.125rem;
}

.business-info {
    background: rgba(31, 41, 55, 0.8);
    padding: 1.5rem;
    border-radius: 1rem;
}

    .business-info h3 {
        color: #f9fafb;
        margin-bottom: 1rem;
    }

    .business-info address {
        color: #d1d5db;
        font-style: normal;
        background: none;
        border: none;
        padding: 0;
    }

/* Contact Form */
.contact-form {
    background: rgba(31, 41, 55, 0.8);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(75, 85, 99, 0.5);
}

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        color: #f9fafb;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

.required {
    color: #f87171;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(55, 65, 81, 0.8);
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 8px;
    color: #f9fafb;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        outline: none;
        border-color: #60a5fa;
        box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
    }

    .form-input.error,
    .form-select.error,
    .form-textarea.error {
        border-color: #f87171;
        box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.1);
    }

.error-message {
    color: #f87171;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

    .checkbox-group input[type="checkbox"] {
        margin-top: 0.125rem;
        flex-shrink: 0;
    }

    .checkbox-group label {
        font-weight: normal;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
    }

.btn-primary {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
    }

    .btn-primary:focus {
        outline: 2px solid #f9fafb;
        outline-offset: 2px;
    }

.btn-submit {
    width: 100%;
}

/* Response Info */
.response-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(75, 85, 99, 0.5);
}

    .response-info h2 {
        text-align: center;
        color: #f9fafb;
        margin-bottom: 2rem;
    }

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

.response-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(96, 165, 250, 0.05);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 1rem;
}

    .response-item h3 {
        color: #60a5fa;
        margin-bottom: 1rem;
        font-size: 1.125rem;
    }

    .response-item p {
        color: #d1d5db;
        margin: 0;
    }

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: 1rem;
}

.modal-content {
    background: #1f2937;
    border-radius: 1rem;
    max-width: 500px;
    width: 100%;
    border: 1px solid rgba(96, 165, 250, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0;
}

    .modal-header h3 {
        margin: 0;
        color: #f9fafb;
    }

.modal-close {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s ease;
}

    .modal-close:hover,
    .modal-close:focus {
        color: #f9fafb;
    }

.modal-body {
    padding: 1rem 1.5rem;
}

    .modal-body p {
        color: #d1d5db;
        margin-bottom: 1rem;
    }

.modal-actions {
    padding: 0 1.5rem 1.5rem;
}

.modal-ok {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .age-gate-content {
        flex-direction: column;
        text-align: center;
    }

    .age-gate-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .drawer-consent {
        width: 95vw;
        right: 2.5vw;
    }

    .toast-soonplay {
        width: 95vw;
        right: 2.5vw;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

        .footer-bottom address {
            text-align: center;
        }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 1rem;
    }

    .legal-page {
        padding: 2rem 1rem;
    }

    .cookie-table {
        font-size: 0.875rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .deck-game-trio {
        grid-template-columns: 1fr;
    }

    .tile-gamelet {
        padding: 1.5rem;
    }
}
