@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary: #00d4aa;
    --primary-light: #5fffda;
    --primary-dark: #00a88a;
    --primary-glow: rgba(0, 212, 170, 0.35);
    --secondary: #0891b2;
    --accent: #06b6d4;
    --bg-darkest: #030712;
    --bg-dark: #0c1222;
    --bg-card: #111827;
    --bg-elevated: #1a2332;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --success: #22c55e;
    --warning: #eab308;
    --danger: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px var(--primary-glow);
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-darkest);
    color: var(--gray-100);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(12, 18, 34, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 170, 0.1);
}
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 0;
}
.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo {
    height: 56px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.logo:hover {
    transform: scale(1.05);
}
.desktop-nav {
    display: none;
    gap: 2rem;
}
.desktop-nav a {
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}
.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: width 0.3s ease;
}
.desktop-nav a:hover {
    color: var(--primary);
}
.desktop-nav a:hover::after {
    width: 100%;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.age-badge {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.35);
    padding: 0.4rem 0.875rem;
    border-radius: 6px;
}
.age-badge span {
    color: #f87171;
    font-weight: 700;
    font-size: 0.8rem;
}
.mobile-menu-btn {
    background: transparent;
    border: 1px solid var(--gray-700);
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-menu-btn:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: var(--primary);
}
.menu-icon {
    width: 22px;
    height: 22px;
    color: var(--gray-200);
}
.hero-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}
.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-darkest) 0%, var(--bg-dark) 50%, var(--bg-darkest) 100%);
}
.gradient-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, var(--primary-glow), transparent),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(8, 145, 178, 0.15), transparent);
}
.hero-content {
    position: relative;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}
.license-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.25);
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
    margin-bottom: 1.75rem;
    font-size: 0.85rem;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary);
}
@keyframes pulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.5;
        transform: scale(0.8);
    }
}
.license-badge span {
    color: var(--primary);
    font-weight: 600;
}
.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.25rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}
.glow-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.white-text {
    color: var(--white);
}
.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-400);
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.feature-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.875rem;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid var(--gray-700);
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.feature-item:hover {
    border-color: var(--primary);
    background: rgba(0, 212, 170, 0.05);
    transform: translateY(-2px);
}
.feature-icon {
    width: 22px;
    height: 22px;
    color: var(--primary);
}
.feature-item span {
    font-weight: 600;
    color: var(--white);
    font-size: 0.875rem;
}
.casinos-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darkest) 100%);
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    flex-wrap: wrap;
}
.section-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
}
.section-header p {
    color: var(--gray-400);
    font-size: 1.0625rem;
    max-width: 580px;
    margin: 0 auto;
}
.casino-grid {
    display: grid;
    gap: 1.75rem;
    max-width: 800px;
    margin: 0 auto;
}
.casino-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--gray-800);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.4s ease;
}
.casino-card:hover {
    border-color: rgba(0, 212, 170, 0.4);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}
.casino-card.top-choice {
    border-color: rgba(0, 212, 170, 0.3);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 212, 170, 0.03) 100%);
}
.casino-badge {
    position: absolute;
    top: -10px;
    left: 16px;
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.top-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-darkest);
}
.elite-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #451a03;
}
.badge-icon {
    width: 12px;
    height: 12px;
}
.casino-logo {
    background: var(--bg-elevated);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 0.75rem 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    border: 1px solid var(--gray-800);
}
.casino-logo img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}
.bonus-offer {
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.2);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}
.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--bg-elevated);
    border: 1px solid var(--gray-700);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-300);
}
.tag-icon {
    width: 14px;
    height: 14px;
    color: var(--primary);
}
.rating-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding: 0.875rem;
    background: var(--bg-elevated);
    border: 1px solid var(--gray-800);
    border-radius: 10px;
}
.stars span {
    color: var(--warning);
    font-size: 1rem;
    letter-spacing: 1px;
}
.rating-score {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.casino-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-darkest);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}
.casino-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
}
.btn-icon {
    width: 18px;
    height: 18px;
}
.rating-methodology {
    padding: 5rem 0;
    background: var(--bg-dark);
}
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}
.criteria-card {
    background: var(--bg-card);
    border: 1px solid var(--gray-800);
    border-radius: 14px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.3s ease;
}
.criteria-card:hover {
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-3px);
}
.criteria-icon {
    width: 44px;
    height: 44px;
    color: var(--primary);
    margin: 0 auto 1rem;
}
.criteria-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.criteria-card p {
    color: var(--gray-400);
    font-size: 0.875rem;
    line-height: 1.65;
}
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darkest) 100%);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--gray-800);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(0, 212, 170, 0.25);
}
.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    cursor: pointer;
    transition: background 0.3s ease;
}
.faq-question:hover {
    background: rgba(0, 212, 170, 0.03);
}
.faq-number {
    width: 32px;
    height: 32px;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.faq-question h3 {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}
.expand-icon {
    width: 20px;
    height: 20px;
    color: var(--gray-500);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    padding-left: calc(1.25rem + 32px + 1rem);
    color: var(--gray-400);
    line-height: 1.7;
}
.main-footer {
    background: linear-gradient(180deg, var(--bg-darkest) 0%, #000000 100%);
    border-top: 1px solid var(--gray-800);
    padding: 3.5rem 0 1.5rem;
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}
.footer-brand h3 {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.875rem;
}
.footer-brand p {
    color: var(--gray-400);
    margin-bottom: 1.25rem;
    max-width: 360px;
    line-height: 1.65;
    font-size: 0.9rem;
}
.warning-box {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 0.875rem;
    border-radius: 10px;
}
.warning-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
}
.warning-title {
    color: #f87171;
    font-weight: 700;
    font-size: 0.9rem;
}
.warning-text {
    color: #fca5a5;
    font-size: 0.8rem;
}
.footer-nav h4,
.footer-contact h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.footer-nav a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-nav a:hover {
    color: var(--primary);
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    color: var(--gray-400);
    font-size: 0.85rem;
    line-height: 1.5;
}
.contact-icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.regulators-section {
    border-top: 1px solid var(--gray-800);
    padding: 2rem 0;
    margin: 1.5rem 0;
}
.regulators-section h4 {
    color: var(--white);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.regulators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    max-width: 600px;
    margin: 0 auto;
}
.regulator-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--gray-800);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.regulator-link:hover {
    background: var(--bg-elevated);
    border-color: rgba(0, 212, 170, 0.25);
    transform: translateY(-2px);
}
.regulator-link img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}
.regulator-link span {
    color: var(--gray-400);
    font-size: 0.75rem;
    font-weight: 500;
}
.regulator-link:hover span {
    color: var(--primary);
}
.disclaimer-section {
    border-top: 1px solid var(--gray-800);
    padding: 1.5rem 0 1rem;
}
.disclaimer-box {
    background: var(--bg-card);
    border: 1px solid var(--gray-800);
    border-radius: 12px;
    padding: 1.5rem;
}
.disclaimer-box h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.disclaimer-box p {
    color: var(--gray-400);
    font-size: 0.8rem;
    line-height: 1.65;
    margin-bottom: 0.875rem;
}
.disclaimer-box p:last-child {
    margin-bottom: 0;
}
.help-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.help-link:hover {
    text-decoration: underline;
}
.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 1.25rem;
}
.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}
.footer-legal p {
    color: var(--gray-500);
    font-size: 0.8rem;
}
.legal-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--gray-500);
}
.dot {
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}
.age-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 7, 18, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}
.age-popup-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}
.age-popup-content {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-dark));
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 20px;
    padding: 2.25rem;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}
.age-popup-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
}
.popup-header-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
}
.age-popup-header h2 {
    color: var(--white);
    font-size: 1.375rem;
    font-weight: 700;
}
.age-popup-body p {
    color: var(--gray-300);
    margin-bottom: 0.875rem;
    line-height: 1.65;
    font-size: 0.95rem;
}
.age-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 0.75rem;
    border-radius: 8px;
    margin: 1.25rem 0;
}
.warning-small-icon {
    width: 16px;
    height: 16px;
    color: #f87171;
    flex-shrink: 0;
}
.age-warning span {
    color: #fca5a5;
    font-size: 0.8rem;
    font-weight: 500;
}
.age-popup-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.age-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.age-btn-confirm {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-darkest);
}
.age-btn-confirm:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.35);
}
.age-btn-decline {
    background: var(--gray-800);
    color: var(--gray-200);
    border: 1px solid var(--gray-700);
}
.age-btn-decline:hover {
    background: var(--gray-700);
}
.btn-small-icon {
    width: 16px;
    height: 16px;
}
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(12, 18, 34, 0.97);
    backdrop-filter: blur(16px);
    color: var(--gray-200);
    padding: 1.125rem 1.25rem;
    z-index: 9000;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    border-top: 1px solid var(--gray-800);
    font-size: 0.85rem;
}
.cookie-consent-text {
    margin: 0;
    text-align: center;
    line-height: 1.5;
}
.cookie-consent-text a {
    color: var(--primary);
    text-decoration: underline;
}
.cookie-btns {
    display: flex;
    gap: 0.625rem;
}
.cookie-btns button {
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    border: none;
    transition: all 0.3s ease;
}
#cookie-consent-accept-btn {
    background: linear-gradient(135deg, var(--success), #16a34a);
    color: white;
}
#cookie-consent-accept-btn:hover {
    transform: translateY(-1px);
}
#cookie-consent-decline-btn {
    background: var(--gray-700);
    color: var(--gray-200);
}
#cookie-consent-decline-btn:hover {
    background: var(--gray-600);
}
.responsible-gaming-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 7, 18, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.responsible-gaming-modal.show {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--gray-700);
    border-radius: 16px;
    padding: 1.75rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.responsible-gaming-modal.show .modal-content {
    transform: scale(1);
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}
.modal-icon {
    width: 28px;
    height: 28px;
    color: #f87171;
}
.modal-header h3 {
    color: #f87171;
    font-size: 1.125rem;
    font-weight: 700;
}
.modal-body p {
    color: var(--gray-300);
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 0.9rem;
}
.modal-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.modal-btn {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.modal-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-darkest);
}
.modal-btn.secondary {
    background: var(--gray-700);
    color: var(--gray-200);
}
.modal-btn:hover {
    transform: translateY(-2px);
}
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}
.animate-in {
    animation: slideInUp 0.5s ease forwards;
}
@media (min-width: 640px) {
    .age-popup-actions {
        flex-direction: row;
    }
    .age-btn {
        flex: 1;
    }
    .cookie-banner {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.875rem 1.5rem;
    }
    .cookie-consent-text {
        text-align: left;
    }
}
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
    .hero-section {
        padding: 6rem 0;
    }
    .logo {
        height: 64px;
    }
    .criteria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: 2fr 1fr 1.25fr;
        gap: 2.5rem;
    }
    .footer-legal {
        flex-direction: row;
        justify-content: space-between;
    }
    .regulators-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    .criteria-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    .hero-section {
        padding: 7rem 0;
    }
}
.desktop-nav.mobile-active {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(12, 18, 34, 0.98);
    flex-direction: column;
    padding: 1.25rem;
    border-top: 1px solid var(--gray-800);
    backdrop-filter: blur(20px);
    gap: 0;
}
.desktop-nav.mobile-active a {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--gray-800);
}
.desktop-nav.mobile-active a:last-child {
    border-bottom: none;
}
.desktop-nav.mobile-active a::after {
    display: none;
}
.page-hero {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}
.page-hero-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
}
.page-badge-icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
}
.page-badge span {
    color: var(--primary);
    font-weight: 600;
}
.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--white);
}
.page-subtitle {
    font-size: 1.0625rem;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}
.content-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.content-block {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.75rem;
    background: var(--bg-card);
    border: 1px solid var(--gray-800);
    border-radius: 14px;
    transition: all 0.3s ease;
}
.content-block:hover {
    border-color: rgba(0, 212, 170, 0.25);
}
.content-block:last-of-type {
    margin-bottom: 0;
}
.content-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(0, 212, 170, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.125rem;
}
.content-body h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.875rem;
}
.content-body p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.875rem;
}
.content-body p:last-child {
    margin-bottom: 0;
}
.help-resources-box {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08), rgba(8, 145, 178, 0.08));
    border: 1px solid rgba(0, 212, 170, 0.25);
    border-radius: 16px;
    text-align: center;
}
.help-resources-box h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.help-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}
.help-resources-box > p {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.help-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    max-width: 320px;
    margin: 0 auto;
}
.help-contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--gray-800);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.help-contact-item:hover {
    border-color: var(--primary);
    background: rgba(0, 212, 170, 0.05);
}
.contact-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-400);
}
.contact-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}
@media (max-width: 640px) {
    .content-block {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }
    .content-number {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1rem;
    }
    .page-hero {
        padding: 3rem 0;
    }
    .help-contacts {
        max-width: 100%;
    }
}