/* ===================================
   Best-IE.com - Premium Casino Design
   Redesigned with Emerald & Gold Theme
   =================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #059669;
    --primary-dark: #047857;
    --primary-light: #10b981;
    --secondary: #d97706;
    --accent: #fbbf24;
    --bg-dark: #111827;
    --bg-darker: #030712;
    --bg-card: #1f2937;
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --border: #374151;
    --gradient-1: linear-gradient(135deg, #059669 0%, #047857 100%);
    --gradient-2: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    --gradient-3: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 6px 12px -2px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 24px 48px -8px rgba(0, 0, 0, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===================================
   Animated Background - Diamond Pattern
   =================================== */

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(ellipse at top, #0f1419 0%, #030712 100%);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation: pulse 15s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.6) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.5) 0%, transparent 70%);
    bottom: -250px;
    left: -250px;
    animation-delay: 5s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.4) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(5, 150, 105, 0.03) 2px, rgba(5, 150, 105, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(5, 150, 105, 0.03) 2px, rgba(5, 150, 105, 0.03) 4px);
    background-size: 80px 80px;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1) translate(0, 0);
        opacity: 0.25;
    }
    50% { 
        transform: scale(1.2) translate(20px, -20px);
        opacity: 0.35;
    }
}

/* ===================================
   Container & Layout
   =================================== */

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===================================
   Header & Navigation - Side Layout
   =================================== */

.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--border);
    transition: all 0.4s ease;
}

.modern-header.scrolled {
    background: rgba(17, 24, 39, 0.95);
    box-shadow: var(--shadow-xl);
    border-bottom-color: var(--primary);
}

.navbar {
    padding: 24px 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 0 20px rgba(5, 150, 105, 0.5));
}

.logo-img:hover {
    transform: scale(1.08);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-item {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.nav-item:hover {
    color: var(--primary-light);
}

.nav-item:hover::before {
    width: 100%;
}

.nav-item-cta {
    padding: 12px 28px;
    background: var(--gradient-1);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.4);
}

.nav-item-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.6);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===================================
   Hero Section - Split Layout
   =================================== */

.hero-modern {
    padding: 200px 0 140px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(5, 150, 105, 0.15);
    border: 2px solid rgba(5, 150, 105, 0.4);
    border-radius: 60px;
    margin-bottom: 40px;
    animation: slideDown 0.8s ease;
}

.badge-icon {
    font-size: 24px;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.badge-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 32px;
    line-height: 1.1;
    animation: slideDown 0.8s ease 0.2s backwards;
}

.gradient-text {
    background: linear-gradient(135deg, #059669 0%, #fbbf24 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.8;
    animation: slideDown 0.8s ease 0.4s backwards;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
    animation: slideDown 0.8s ease 0.6s backwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--gradient-1);
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.5);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(5, 150, 105, 0.7);
    border-color: var(--accent);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--border);
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    transition: all 0.4s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    padding: 48px;
    background: rgba(31, 41, 55, 0.6);
    border: 2px solid var(--border);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    animation: slideDown 0.8s ease 0.8s backwards;
    box-shadow: var(--shadow-xl);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60px;
    background: var(--border);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 40px;
    font-weight: 900;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   Featured Casino Section - Card Design
   =================================== */

.featured-casino {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 80px;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(217, 119, 6, 0.15);
    border: 2px solid rgba(217, 119, 6, 0.4);
    border-radius: 60px;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    font-weight: 400;
}

.casino-card-modern {
    position: relative;
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
    border: 3px solid var(--border);
    border-radius: 28px;
    padding: 48px;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.casino-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-1);
}

.casino-card-modern::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.casino-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(5, 150, 105, 0.3);
    border-color: var(--primary);
}

.casino-card-modern:hover::after {
    opacity: 1;
}

.card-badge {
    position: absolute;
    top: 48px;
    right: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--gradient-2);
    border-radius: 60px;
    font-size: 14px;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.5);
    z-index: 1;
}

.badge-star {
    font-size: 18px;
    animation: pulse-star 2s ease-in-out infinite;
}

@keyframes pulse-star {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.casino-header {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
}

.casino-logo-modern {
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.08);
    border: 3px solid var(--border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.4s ease;
    text-decoration: none;
}

.casino-logo-modern:hover {
    border-color: var(--primary);
    background: rgba(5, 150, 105, 0.15);
    transform: translateY(-4px) rotate(2deg);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
}

.casino-logo-modern img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.casino-meta {
    flex: 1;
}

.casino-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 16px;
}

.casino-title-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.casino-title-link:hover {
    color: var(--primary-light);
}

.rating-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stars-modern {
    display: flex;
    gap: 6px;
}

.star {
    font-size: 24px;
    color: var(--text-muted);
}

.star.filled {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.rating-score {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
}

.rating-count {
    font-size: 15px;
    color: var(--text-muted);
}

.casino-features {
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: rgba(5, 150, 105, 0.08);
    border: 2px solid rgba(5, 150, 105, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-box:hover {
    background: rgba(5, 150, 105, 0.15);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

.feature-icon {
    font-size: 40px;
}

.feature-info {
    display: flex;
    flex-direction: column;
}

.feature-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
}

.casino-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.12);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
}

.check-icon {
    flex-shrink: 0;
}

.casino-actions {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 10;
}

.btn-play-modern {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 40px;
    background: var(--gradient-1);
    border-radius: 14px;
    font-size: 18px;
    font-weight: 800;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.5);
    border: 2px solid transparent;
}

.btn-play-modern:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(5, 150, 105, 0.7);
    border-color: var(--accent);
}

.btn-review-modern {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--border);
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    transition: all 0.4s ease;
}

.btn-review-modern:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
    transform: translateY(-4px);
}

/* ===================================
   Why Choose Section - Grid Layout
   =================================== */

.why-choose {
    padding: 100px 0;
    background: rgba(31, 41, 55, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.benefit-card {
    padding: 40px;
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
    border: 2px solid var(--border);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 16px 40px rgba(217, 119, 6, 0.3);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 28px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.4);
}

.benefit-icon {
    font-size: 48px;
}

.benefit-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.benefit-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   FAQ Section - Accordion Style
   =================================== */

.faq-section {
    padding: 100px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding: 0 32px 28px;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===================================
   Content Section - Article Style
   =================================== */

.content-section {
    padding: 100px 0;
}

.content-article {
    max-width: 1000px;
    margin: 0 auto;
    padding: 72px;
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
    border: 3px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow-xl);
}

.content-article h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 40px;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-article h3 {
    font-size: 28px;
    font-weight: 800;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.content-article p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 24px;
}

/* ===================================
   Disclaimer Section
   =================================== */

.disclaimer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(185, 28, 28, 0.08) 100%);
}

.disclaimer-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--bg-card);
    border: 3px solid rgba(220, 38, 38, 0.3);
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--shadow-xl);
}

.disclaimer-icon {
    flex-shrink: 0;
}

.disclaimer-icon .age-badge {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.disclaimer-content {
    flex: 1;
}

.disclaimer-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.disclaimer-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.disclaimer-text:last-child {
    margin-bottom: 0;
}

.disclaimer-text a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.3s ease;
}

.disclaimer-text a:hover {
    color: var(--primary-light);
}

/* ===================================
   Footer - Multi-Column Layout
   =================================== */

.modern-footer {
    padding: 100px 0 48px;
    background: var(--bg-dark);
    border-top: 3px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 72px;
    margin-bottom: 72px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo img {
    height: 48px;
    width: auto;
}

.footer-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    font-size: 16px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.footer-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
    margin-bottom: 40px;
}

.badge-img {
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.badge-img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
}

.copyright {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 600;
}

.disclaimer {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 700;
}

/* ===================================
   Cookie Consent Banner
   =================================== */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 3px solid var(--primary);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
    padding: 32px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

.cookie-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 700;
}

.cookie-text a:hover {
    color: var(--primary-light);
}

.cookie-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.btn-accept,
.btn-decline {
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-accept {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.4);
}

.btn-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.6);
}

.btn-decline {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-secondary);
}

/* ===================================
   Contact Form Styles
   =================================== */

.contact-form {
    max-width: 800px;
    margin: 48px 0;
    padding: 48px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 2px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    background: var(--bg-darker);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.15);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23d1d5db' d='M7 10L2 5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 48px;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    font-weight: 400;
    font-size: 15px;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 700;
}

.checkbox-label a:hover {
    color: var(--primary-light);
}

.btn-submit {
    width: 100%;
    padding: 16px 40px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 12px;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(5, 150, 105, 0.6);
}

.btn-submit:active {
    transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-modern {
        padding: 160px 0 100px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .casino-card-modern {
        padding: 28px;
    }
    
    .card-badge {
        position: static;
        margin-bottom: 24px;
        width: fit-content;
    }
    
    .casino-header {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-highlights {
        grid-template-columns: 1fr;
    }
    
    .casino-actions {
        flex-direction: column;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .content-article {
        padding: 40px 28px;
    }
    
    .content-article h2 {
        font-size: 32px;
    }
    
    .content-article h3 {
        font-size: 24px;
    }
    
    .disclaimer-card {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-badges {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-accept,
    .btn-decline {
        width: 100%;
    }
    
    .contact-form {
        padding: 32px 24px;
        margin: 32px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 32px;
    }
}
