/* Book of Ra 10 - Egyptian Theme Stylesheet */
/* Locale: de-DE */

/* CSS Variables */
:root {
    --primary-gold: #ffd700;
    --secondary-gold: #ffb700;
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --accent-brown: #8b6914;
    --border-gold: rgba(255, 215, 0, 0.3);
    --shadow-gold: rgba(255, 183, 0, 0.2);
    
    --ease-entrance: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-sand: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--darker-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s var(--ease-sand);
}

a:hover {
    color: var(--secondary-gold);
    text-shadow: 0 0 10px var(--shadow-gold);
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.3s var(--ease-sand);
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    border-bottom-color: var(--border-gold);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 0 10px var(--shadow-gold);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: var(--text-light);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: all 0.3s var(--ease-entrance);
    transform: translateX(-50%);
}

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

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

/* Pulsing Button */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s var(--ease-elastic);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--darker-bg);
    box-shadow: 0 4px 15px var(--shadow-gold);
    animation: pulse 2s infinite;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px var(--shadow-gold);
    color: var(--darker-bg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    animation: pulse 2s infinite;
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--darker-bg);
    transform: translateY(-3px) scale(1.05);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px var(--shadow-gold);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 20px var(--shadow-gold);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('images/webp/hero-bg.webp') center/cover no-repeat;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9) 0%, rgba(15, 15, 15, 0.7) 50%, rgba(15, 15, 15, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    text-shadow: 0 0 30px var(--shadow-gold);
    animation: fadeInUp 0.8s var(--ease-entrance);
}

.hero-subtitle {
    font-family: 'Philosopher', sans-serif;
    font-size: 24px;
    color: var(--secondary-gold);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s var(--ease-entrance) 0.2s both;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s var(--ease-entrance) 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-entrance) 0.6s both;
}

.hero-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 500px;
    z-index: 1;
    animation: float 4s ease-in-out infinite;
}

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

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

/* Live Win Ticker */
.live-ticker {
    background: linear-gradient(90deg, var(--accent-brown), var(--dark-bg), var(--accent-brown));
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.ticker-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--primary-gold);
    padding: 0 20px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse-dot 1s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
    color: var(--text-light);
    font-weight: 600;
}

.ticker-item span {
    color: var(--primary-gold);
}

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

/* Table of Contents */
.toc {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    padding: 25px;
    margin: 40px 0;
}

.toc-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.toc-list {
    list-style: none;
    columns: 2;
    column-gap: 30px;
}

.toc-list li {
    margin-bottom: 10px;
    break-inside: avoid;
}

.toc-list a {
    color: var(--text-gray);
    display: block;
    padding: 5px 0;
    transition: all 0.3s;
}

.toc-list a:hover {
    color: var(--primary-gold);
    padding-left: 10px;
}

.toc-list a::before {
    content: '→ ';
    opacity: 0;
    transition: opacity 0.3s;
}

.toc-list a:hover::before {
    opacity: 1;
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section-alt {
    background: rgba(26, 26, 26, 0.5);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

/* Info Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    overflow: hidden;
}

.info-table th,
.info-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-gold);
}

.info-table th {
    background: rgba(139, 105, 20, 0.3);
    color: var(--primary-gold);
    font-family: 'Cinzel', serif;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

/* Symbols Table */
.symbols-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.symbols-table th,
.symbols-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid var(--border-gold);
}

.symbols-table th {
    background: rgba(139, 105, 20, 0.3);
    color: var(--primary-gold);
    font-family: 'Cinzel', serif;
}

.symbols-table td:first-child {
    font-weight: 600;
    color: var(--primary-gold);
}

/* Casino Cards */
.casino-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.casino-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(15, 15, 15, 0.9));
    border: 1px solid var(--border-gold);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s var(--ease-elastic);
    position: relative;
    overflow: hidden;
}

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

.casino-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-gold);
    border-color: var(--primary-gold);
}

.casino-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.casino-card .bonus {
    font-size: 20px;
    color: var(--secondary-gold);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Pros & Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.pros, .cons {
    padding: 30px;
    border-radius: 10px;
}

.pros {
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.cons {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.pros h3 {
    color: #4caf50;
}

.cons h3 {
    color: #f44336;
}

.pros-cons ul {
    list-style: none;
}

.pros-cons li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: bold;
}

/* Mobile Section */
.mobile-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.mobile-features li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 18px;
}

.mobile-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 20px;
}

.mobile-image {
    text-align: center;
}

.mobile-image img {
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Demo Section */
.demo-section {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.2), rgba(26, 26, 26, 0.8));
    border-radius: 20px;
    border: 1px solid var(--border-gold);
}

.demo-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.demo-feature {
    text-align: center;
}

.demo-feature-icon {
    font-size: 40px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

/* FAQ */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: var(--primary-gold);
    font-family: 'Cinzel', serif;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-sand);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 20px;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-gold);
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--primary-gold);
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-gray);
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-responsible {
    background: rgba(139, 105, 20, 0.1);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-responsible h4 {
    margin-bottom: 20px;
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.responsible-links a {
    color: var(--text-gray);
    padding: 10px 20px;
    border: 1px solid var(--border-gold);
    border-radius: 5px;
    transition: all 0.3s;
}

.responsible-links a:hover {
    background: var(--primary-gold);
    color: var(--darker-bg);
    border-color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid var(--border-gold);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-contact {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-contact a {
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a:hover {
    color: var(--primary-gold);
}

.copyright {
    color: var(--text-gray);
    font-size: 14px;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Steps */
.steps {
    counter-reset: step;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 10px;
    border-left: 3px solid var(--primary-gold);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: var(--darker-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 10px;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-image {
        display: none;
    }
    
    .content-grid,
    .mobile-section,
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }
    
    .nav {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .toc-list {
        columns: 1;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .demo-features {
        flex-direction: column;
        gap: 20px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--primary-gold); }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
