/* Root Variables */
:root {
    --primary-red: #FF3B3B;
    --primary-gold: #FFD700;
    --accent-green: #00D674;
    --dark-bg: #0A0E1B;
    --light-bg: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #F5F5F5;
    --gradient-primary: linear-gradient(135deg, #FF3B3B 0%, #FFD700 100%);
    --gradient-accent: linear-gradient(135deg, #00D674 0%, #00B85F 100%);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --light-bg: #0A0E1B;
    --dark-bg: #FFFFFF;
    --text-dark: #F5F5F5;
    --text-light: #1A1A1A;
    --shadow-card: 0 4px 20px rgba(255,255,255,0.08);
    --shadow-hover: 0 8px 30px rgba(255,255,255,0.12);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

[data-theme="dark"] .site-header {
    background: rgba(10, 14, 27, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.theme-toggle:hover {
    color: var(--primary-gold);
}

.sun-icon { display: block; }
.moon-icon { display: none; }

[data-theme="dark"] .sun-icon { display: none; }
[data-theme="dark"] .moon-icon { display: block; }

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(255, 59, 59, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    position: relative;
}

.hero-content {
    max-width: 600px;
    margin-bottom: 3rem;
}

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

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: white;
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
}

.floating-elements {
    animation: float 20s ease-in-out infinite;
}

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

/* Casino Cards */
.best-casinos-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.casino-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    padding: 1.5rem;
    transition: var(--transition);
}

[data-theme="dark"] .casino-card {
    background: rgba(255, 255, 255, 0.05);
}

.casino-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.casino-card.featured {
    border: 2px solid var(--primary-gold);
}

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

.casino-name {
    font-size: 1.5rem;
    margin: 0;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.casino-feature {
    margin-bottom: 1rem;
}

.feature-label {
    font-weight: 600;
    color: var(--primary-red);
    display: block;
    margin-bottom: 0.25rem;
}

.feature-value {
    font-size: 0.875rem;
}

.btn-casino {
    width: 100%;
    background: var(--gradient-accent);
    color: white;
    padding: 1rem;
    margin-top: 1rem;
}

.btn-casino:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 214, 116, 0.3);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: rgba(255, 215, 0, 0.05);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.column-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.benefits-list,
.considerations-list {
    list-style: none;
}

.benefits-list li,
.considerations-list li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

[data-theme="dark"] .benefits-list li,
[data-theme="dark"] .considerations-list li {
    background: rgba(255, 255, 255, 0.05);
}

.benefit-icon,
.consideration-icon {
    font-size: 1.25rem;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
}

[data-theme="dark"] table {
    background: rgba(255, 255, 255, 0.05);
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] th,
[data-theme="dark"] td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    background: var(--primary-red);
    color: white;
    font-weight: 600;
}

tr:hover {
    background: rgba(255, 215, 0, 0.1);
}

.highlighted {
    background: rgba(255, 215, 0, 0.2);
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    margin-bottom: 2rem;
}

[data-theme="dark"] .feature-card {
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

/* Criteria Grid */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.criteria-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

[data-theme="dark"] .criteria-item {
    background: rgba(255, 255, 255, 0.05);
}

.criteria-item:hover {
    transform: translateY(-4px);
}

.criteria-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Game Categories */
.game-category {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card);
}

[data-theme="dark"] .game-category {
    background: rgba(255, 255, 255, 0.05);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.game-features {
    list-style: none;
}

.game-features li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.feature-marker {
    flex-shrink: 0;
}

.game-tip {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

/* Bonus Types */
.bonus-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.bonus-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

[data-theme="dark"] .bonus-card {
    background: rgba(255, 255, 255, 0.05);
}

.bonus-card:hover {
    transform: translateY(-4px);
}

.bonus-icon {
    margin-bottom: 1.5rem;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.payment-method {
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
}

[data-theme="dark"] .payment-method {
    background: rgba(255, 255, 255, 0.05);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Mobile Features */
.mobile-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.mobile-card {
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
}

[data-theme="dark"] .mobile-card {
    background: rgba(255, 255, 255, 0.05);
}

.card-icon {
    margin-bottom: 1.5rem;
}

/* Steps Timeline */
.steps-timeline {
    position: relative;
    padding: 2rem 0;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 50px;
    width: 2px;
    height: calc(100% + 2rem);
    background: var(--primary-gold);
    opacity: 0.3;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
}

[data-theme="dark"] .faq-item {
    background: rgba(255, 255, 255, 0.05);
}

.faq-item h3 {
    color: var(--primary-red);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

/* Share Section */
.share-section {
    padding: 60px 0;
    background: rgba(255, 59, 59, 0.05);
}

.share-content {
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.reddit { background: #ff4500; }

.share-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* EEAT Section */
.eeat-section {
    padding: 80px 0;
    background: white;
}

[data-theme="dark"] .eeat-section {
    background: rgba(255, 255, 255, 0.05);
}

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

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

.credential {
    padding: 1.5rem;
}

.update-info {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

/* Footer */
.site-footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 40px 0;
}

[data-theme="dark"] .site-footer {
    background: var(--light-bg);
    color: var(--text-dark);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--primary-gold);
}

.footer-disclaimer {
    opacity: 0.6;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--light-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-visual {
        display: none;
    }
    
    .casinos-grid,
    .benefits-grid,
    .criteria-grid,
    .payment-methods,
    .mobile-features,
    .bonus-types,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .share-section,
    .theme-toggle,
    .mobile-menu-toggle {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
}