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

:root {
    --midnight-blue: #0a1628;
    --deep-blue: #1a1f3a;
    --royal-purple: #2d1b4e;
    --mystic-purple: #4a306d;
    --twilight-blue: #16213e;
    --gold-primary: #ffd700;
    --gold-rich: #d4af37;
    --gold-deep: #b8860b;
    --gold-pale: #f4e4c1;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    --white: #ffffff;
    --shadow-gold: rgba(212, 175, 55, 0.3);
    --shadow-purple: rgba(45, 27, 78, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--midnight-blue) 0%, var(--deep-blue) 50%, var(--royal-purple) 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.divine-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(ellipse at top, rgba(74, 48, 109, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(26, 31, 58, 0.6) 0%, transparent 50%),
        linear-gradient(to bottom, #0a1628 0%, #1a1f3a 40%, #2d1b4e 100%);
}

.temple-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(212, 175, 55, 0.1) 50px, rgba(212, 175, 55, 0.1) 52px),
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(255, 215, 0, 0.05) 100px, rgba(255, 215, 0, 0.05) 102px);
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--gold-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 3rem;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-rich), transparent);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold-rich);
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--gold-pale);
}

p {
    margin-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}

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

.main-header {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold-rich);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

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

/* Hamburger button - hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: rgba(26, 31, 58, 0.9);
    border: 1px solid var(--gold-rich);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hamburger:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 0 12px var(--shadow-gold);
}

.hamburger:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.25);
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold-primary);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.main-nav.menu-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.main-nav.menu-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.main-nav.menu-open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold-primary);
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-links a:hover {
    color: var(--gold-primary);
}

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

/* Language switcher */
.language-container {
    flex-shrink: 0;
    margin-left: 1rem;
}

.language-selector {
    appearance: none;
    background: rgba(26, 31, 58, 0.9);
    border: 1px solid var(--gold-rich);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 2rem 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffd700' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

.language-selector:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 0 12px var(--shadow-gold);
    color: var(--gold-pale);
}

.language-selector:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.25);
}

.language-selector option {
    background: var(--deep-blue);
    color: var(--text-light);
}

.zeus {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    background: 
        radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

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

.laurel-divider {
    font-size: 2rem;
    color: var(--gold-rich);
    margin: 1.5rem 0;
    opacity: 0.8;
    letter-spacing: 1rem;
}

.zeus-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(to bottom, var(--gold-primary), var(--gold-rich), var(--gold-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.zeus-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-style: italic;
}

.game-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.badge {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold-rich);
    color: var(--gold-pale);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge.gold {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.content-section {
    padding: 4rem 0;
}

.content-section.alt-bg {
    background: rgba(26, 31, 58, 0.4);
}

.section-card {
    background: rgba(10, 22, 40, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

.section-card.golden-border {
    border: 2px solid var(--gold-rich);
    box-shadow: 0 0 30px var(--shadow-gold);
}

.section-card.golden-accent {
    border-left: 4px solid var(--gold-primary);
}

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

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.image-placeholder {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(45, 27, 78, 0.3));
    border: 2px dashed var(--gold-rich);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    color: var(--gold-pale);
}

.placeholder-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.features-grid-section {
    padding: 4rem 0;
    background: rgba(10, 22, 40, 0.5);
}

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

.feature-card {
    background: rgba(26, 31, 58, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-primary), var(--gold-deep));
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--gold-rich);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.feature-card h3 {
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Paytable */
.paytable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.paytable-item {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-rich);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.paytable-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

.paytable-item.low {
    opacity: 0.8;
    border-color: rgba(212, 175, 55, 0.5);
}

.symbol-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.paytable-item h4 {
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.paytable-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    text-align: center;
}

.paytable-note {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(45, 27, 78, 0.3);
    border-left: 3px solid var(--gold-rich);
    font-style: italic;
}

.demo-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(45, 27, 78, 0.4));
    border: 2px solid var(--gold-primary);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.demo-box h3 {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.demo-list {
    list-style: none;
    text-align: left;
}

.demo-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.demo-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

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

.step {
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--gold-rich);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-deep));
    color: var(--midnight-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.step h4 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.casino-review {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.casino-review:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.casino-review h3 {
    color: var(--gold-primary);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.casino-review h3::before {
    content: '★';
    color: var(--gold-primary);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(26, 31, 58, 0.8);
    border-color: var(--gold-rich);
}

.faq-item h4 {
    color: var(--gold-primary);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.faq-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Footer */
.main-footer {
    background: rgba(10, 22, 40, 0.95);
    border-top: 2px solid var(--gold-rich);
    padding: 3rem 0;
    margin-top: 4rem;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.footer-disclaimer {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.footer-divider {
    color: var(--gold-rich);
    font-size: 1.5rem;
    margin: 1rem 0;
    opacity: 0.6;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .zeus-title {
        font-size: 2.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        position: relative;
        flex-wrap: nowrap;
        gap: 0;
    }
    
    .main-nav .logo {
        flex-shrink: 0;
    }
    
    .hamburger {
        display: flex;
        margin-left: auto;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-left: -1rem;
        margin-right: -1rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        background: rgba(10, 22, 40, 0.98);
        border-bottom: 2px solid var(--gold-rich);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transition: max-height 0.35s ease;
        padding: 0 1rem;
    }
    
    .main-nav.menu-open .nav-menu {
        max-height: 85vh;
        padding: 1rem 1rem 1.5rem;
        overflow-y: auto;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 0.5rem 0;
    }
    
    .nav-links li {
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
    }
    
    .language-container {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        display: flex;
        justify-content: center;
        padding-top: 1rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .language-selector {
        min-width: 160px;
        width: 100%;
        max-width: 200px;
    }
    
    .section-card {
        padding: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .zeus {
        padding: 3rem 0;
    }
    
    .zeus-title {
        font-size: 2rem;
    }
    
    .game-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .paytable-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--midnight-blue);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-rich);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

::selection {
    background: rgba(212, 175, 55, 0.3);
    color: var(--gold-primary);
}
.ludo-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-rich));
    color: var(--white);
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.ludo-button:hover {
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-primary));
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}