/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    --primary: #1e0533;
    --primary-deep: #0d0118;
    --primary-mid: #2d0a4e;
    --primary-light: #4a1a6b;
    --secondary: #ffffff;
    --accent: #fbbf24;
    --accent-dark: #d4a017;
    --accent-glow: rgba(251, 191, 36, 0.3);
    --accent-subtle: rgba(251, 191, 36, 0.08);

    --glass-bg: rgba(30, 5, 51, 0.55);
    --glass-bg-light: rgba(30, 5, 51, 0.35);
    --glass-border: rgba(251, 191, 36, 0.12);
    --glass-border-hover: rgba(251, 191, 36, 0.3);

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.5);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(251, 191, 36, 0.15), 0 0 60px rgba(251, 191, 36, 0.05);
    --shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(251, 191, 36, 0.1);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.6;
    background: linear-gradient(
        180deg,
        #0d0118 0%,
        #1e0533 8%,
        #2d0a4e 18%,
        #3b1266 28%,
        #4a1a6b 38%,
        #5c2078 48%,
        #6d2a6e 55%,
        #7e3558 62%,
        #944040 70%,
        #ab5030 78%,
        #c26520 85%,
        #d98a15 92%,
        #e6a00a 96%,
        #f0b805 100%
    );
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Noise texture overlay on body */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    background: none;
}

input, textarea {
    font-family: var(--font-body);
}

/* Selection */
::selection {
    background: rgba(251, 191, 36, 0.3);
    color: var(--secondary);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--primary-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-accent {
    color: var(--accent);
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    background: var(--accent-subtle);
    border: 1px solid var(--glass-border);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    transition: all var(--transition-medium);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--primary-deep);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.45);
    color: var(--primary-deep);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-ghost {
    background: transparent;
    color: var(--secondary);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-subtle);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   AGE GATE MODAL
   ============================================ */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 1, 24, 0.95);
    backdrop-filter: blur(20px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.age-gate-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.age-gate-modal {
    background: linear-gradient(135deg, rgba(30, 5, 51, 0.9), rgba(45, 10, 78, 0.9));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-glow), var(--shadow-card);
    animation: modalAppear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.age-gate-mask-icon {
    margin-bottom: 24px;
    animation: floatSlow 3s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.age-gate-modal h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--accent);
}

.age-gate-modal p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.age-gate-note {
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    font-style: italic;
}

.greece-commission-link {
    font-size: 0.8rem;
    color: var(--accent);
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.greece-commission-link:hover {
    opacity: 1;
}

.age-gate-greece-link {
    margin-bottom: 24px;
}

.age-gate-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.age-btn-confirm {
    flex: 1;
    min-width: 160px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary-deep);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-medium);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.age-btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.5);
}

.age-btn-deny {
    flex: 1;
    min-width: 160px;
    padding: 14px 24px;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    transition: all var(--transition-medium);
}

.age-btn-deny:hover {
    border-color: #ef4444;
    color: #ef4444;
}

.age-gate-disclaimer {
    font-size: 0.75rem !important;
    color: var(--text-muted) !important;
    line-height: 1.5 !important;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: linear-gradient(135deg, rgba(13, 1, 24, 0.97), rgba(30, 5, 51, 0.97));
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 24px;
    animation: slideUp 0.5s ease;
}

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

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--accent);
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-text a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary-deep);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.cookie-btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
}

.cookie-btn-necessary {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-fast);
}

.cookie-btn-necessary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cookie-btn-settings {
    padding: 10px 24px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.cookie-btn-settings:hover {
    color: var(--accent);
}

.cookie-settings-panel {
    max-width: 1280px;
    margin: 16px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-setting-item {
    margin-bottom: 10px;
}

.cookie-setting-item label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.cookie-setting-item input[type="checkbox"] {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
}

.cookie-btn-save {
    margin-top: 12px;
    padding: 8px 20px;
    background: var(--accent);
    color: var(--primary-deep);
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.cookie-btn-save:hover {
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 9999;
    transition: all var(--transition-medium);
    background: transparent;
}

.main-nav.scrolled {
    background: rgba(13, 1, 24, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: baseline;
    text-decoration: none;
    gap: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

.logo-dot {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: var(--accent-subtle);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 10001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(var(--nav-height) + 40px) 24px 80px;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 6px 18px 6px 6px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease both;
}

.badge-icon {
    background: var(--accent);
    color: var(--primary-deep);
    font-weight: 800;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.hero-badge span:last-child {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease both;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }

.title-accent {
    color: var(--accent);
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

/* Hero Image */
.hero-image-container {
    position: relative;
    animation: fadeInRight 1s ease 0.3s both;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--glass-border);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-image-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60px;
    background: radial-gradient(ellipse, rgba(251, 191, 36, 0.2), transparent);
    filter: blur(20px);
    pointer-events: none;
}

.hero-floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    box-shadow: var(--shadow-card);
    white-space: nowrap;
}

.hero-float-1 {
    top: 40px;
    right: -20px;
    animation: floatCard1 4s ease-in-out infinite;
}

.hero-float-2 {
    bottom: 60px;
    left: -20px;
    animation: floatCard2 5s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
}

.float-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 1s both;
    z-index: 1;
}

.scroll-arrow {
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   GALLERY STRIP
   ============================================ */
.gallery-strip {
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.gallery-track {
    display: flex;
    gap: 16px;
    animation: scrollGallery 30s linear infinite;
    width: max-content;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gallery-item {
    position: relative;
    width: 320px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--glass-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(13, 1, 24, 0.85));
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}

/* ============================================
   CASINO SECTION
   ============================================ */
.casinos-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.casinos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 1, 24, 0.3), transparent, rgba(13, 1, 24, 0.3));
    pointer-events: none;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--glass-bg-light);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    color: var(--accent);
    border-color: var(--glass-border-hover);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary-deep);
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.2);
}

/* Casino Grid */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 28px;
    margin-bottom: 80px;
}

/* Casino Card */
.casino-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-card);
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.casino-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-hover);
}

.casino-card:hover::before {
    opacity: 1;
}

.casino-card.hidden-card {
    display: none;
}

.card-ribbon {
    position: absolute;
    top: 16px;
    right: -32px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary-deep);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 40px;
    transform: rotate(45deg);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.card-rank {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
}

.card-info {
    flex: 1;
}

.card-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-country {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Rating Stars */
.card-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.rating-stars {
    position: relative;
    width: 120px;
    height: 24px;
}

.stars-fill,
.stars-empty {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.stars-empty {
    width: 100%;
}

.stars-fill {
    overflow: hidden;
}

.stars-fill svg,
.stars-empty svg {
    width: 120px;
    height: 24px;
}

.rating-number {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent);
}

.card-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary-deep);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(251, 191, 36, 0.35);
    color: var(--primary-deep);
}

.card-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.card-cta:hover::after {
    left: 100%;
}

/* Comparison Table */
.comparison-table-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.table-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--accent);
}

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table th {
    text-align: left;
    padding: 14px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    border-bottom: 2px solid var(--glass-border);
    white-space: nowrap;
}

.comparison-table td {
    padding: 16px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.comparison-table tbody tr {
    transition: background var(--transition-fast);
}

.comparison-table tbody tr:hover {
    background: rgba(251, 191, 36, 0.04);
}

.comparison-table td strong {
    color: var(--text-primary);
    font-weight: 600;
}

.table-rating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary-deep);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    min-width: 40px;
}

.table-link {
    padding: 6px 16px;
    background: var(--accent-subtle);
    border: 1px solid var(--glass-border);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.table-link:hover {
    background: var(--accent);
    color: var(--primary-deep);
    border-color: var(--accent);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-card);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.06;
    line-height: 1;
}

.step-icon {
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--accent-subtle);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--accent);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.trust-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-card);
}

.trust-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-hover);
}

.trust-icon {
    margin-bottom: 20px;
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--accent);
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.trust-card a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.trust-disclaimer {
    background: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.15);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.disclaimer-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.disclaimer-text p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-consent {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-label a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-card);
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.info-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item a,
.info-item span:last-child {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.info-item a:hover {
    color: var(--accent);
}

.contact-image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-card);
}

.contact-image-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.footer-contact-emails {
    margin-top: 20px;
}

.footer-contact-emails h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.footer-contact-emails a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    position: relative;
    z-index: 1;
    background: rgba(13, 1, 24, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding: 64px 0 48px;
}

.footer-brand {
    padding-right: 32px;
}

.footer-logo {
    display: inline-flex;
    align-items: baseline;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-age-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: var(--radius-full);
}

.age-badge {
    background: var(--accent);
    color: var(--primary-deep);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.footer-age-badge span:last-child {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links-group h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.footer-links-group ul li {
    margin-bottom: 10px;
}

.footer-links-group ul li a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.footer-links-group ul li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 28px 0;
}

.footer-disclaimer {
    margin-bottom: 16px;
}

.footer-disclaimer p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 36px;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-float-1 {
        right: 0;
    }

    .hero-float-2 {
        left: 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .casino-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(13, 1, 24, 0.97);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 16px;
        transition: right var(--transition-medium);
        border-left: 1px solid var(--glass-border);
        z-index: 10000;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 14px 18px;
        font-size: 1rem;
    }

    .hero-section {
        padding: calc(var(--nav-height) + 24px) 16px 60px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-image {
        height: 350px;
    }

    .hero-floating-card {
        display: none;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .casino-grid {
        grid-template-columns: 1fr;
    }

    .casino-card {
        padding: 24px;
    }

    .comparison-table-wrapper {
        padding: 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
    }

    .filter-bar {
        gap: 6px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 0.78rem;
    }

    .gallery-item {
        width: 240px;
        height: 150px;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .contact-info-card {
        padding: 28px;
    }
}

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

    .age-gate-modal {
        padding: 32px 24px;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .age-btn-confirm,
    .age-btn-deny {
        min-width: unset;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn-accept,
    .cookie-btn-necessary {
        flex: 1;
    }

    .hero-image {
        height: 280px;
    }

}

/* ============================================
   LEGAL PAGES STYLES (shared)
   ============================================ */
.legal-page {
    padding: calc(var(--nav-height) + 60px) 24px 80px;
    position: relative;
    z-index: 1;
}

.legal-container {
    max-width: 820px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 56px;
    box-shadow: var(--shadow-card);
}

.legal-container h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--accent);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.legal-container .legal-updated {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-container h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--accent);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-container h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--secondary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-container p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-container ul,
.legal-container ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-container li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style-type: disc;
}

.legal-container ol li {
    list-style-type: decimal;
}

.legal-container a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-container strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-container .legal-highlight {
    background: rgba(251, 191, 36, 0.06);
    border-left: 3px solid var(--accent);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
}

.legal-container .legal-highlight p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 32px 24px;
    }
}
