/* Book of Juno - Hauptstylesheet */
/* Deutsche Lokalisierung - de-DE */

:root {
    --primary-color: #1a1a4e;
    --secondary-color: #4a148c;
    --accent-color: #7c4dff;
    --gold-color: #ffd700;
    --gold-light: #ffecb3;
    --text-light: #ffffff;
    --text-dark: #1a1a2e;
    --bg-gradient: linear-gradient(135deg, #1a1a4e 0%, #4a148c 50%, #1a1a4e 100%);
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(124, 77, 255, 0.3);
    --success-color: #4caf50;
    --warning-color: #ff9800;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-gradient);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header */
header {
    background: rgba(26, 26, 78, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--gold-color), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover,
nav a.active {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: var(--gold-color);
    box-shadow: 0 0 15px rgba(124, 77, 255, 0.5);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 26, 78, 0.9) 0%, rgba(74, 20, 140, 0.9) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-banner.webp') center/cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 1rem;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--gold-color), var(--gold-light), var(--gold-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Live Win Ticker */
.live-ticker {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), rgba(124, 77, 255, 0.1));
    border: 2px solid var(--gold-color);
    border-radius: 50px;
    padding: 1rem 2rem;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.live-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.ticker-label {
    color: var(--gold-color);
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ticker-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #4caf50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--gold-color), #ff8c00);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: var(--text-light);
    border: 2px solid var(--gold-color);
    box-shadow: 0 4px 15px rgba(124, 77, 255, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

/* Pulse Animation for CTA Buttons */
.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--gold-color), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-color), transparent);
    margin: 1rem auto;
}

/* Table of Contents */
.toc {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.toc-title {
    font-size: 1.3rem;
    color: var(--gold-color);
    margin-bottom: 1rem;
    text-align: center;
}

.toc ul {
    list-style: none;
    columns: 2;
    column-gap: 2rem;
}

.toc li {
    margin-bottom: 0.5rem;
}

.toc a {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    transition: color 0.3s ease;
}

.toc a::before {
    content: '→';
    color: var(--gold-color);
}

.toc a:hover {
    color: var(--gold-color);
}

/* Content Cards */
.content-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 77, 255, 0.2);
}

.content-card h2 {
    color: var(--gold-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.content-card h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem;
}

.content-card p {
    margin-bottom: 1rem;
    text-align: justify;
}

.content-card img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin: 1rem auto;
    display: block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Tables */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

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

.info-table th {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: var(--gold-color);
    font-weight: bold;
}

.info-table tr:hover {
    background: rgba(124, 77, 255, 0.1);
}

.info-table td:first-child {
    font-weight: bold;
    color: var(--gold-light);
}

/* Symbol Table */
.symbol-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.symbol-table th,
.symbol-table td {
    padding: 0.8rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.symbol-table th {
    background: var(--secondary-color);
    color: var(--gold-color);
}

.symbol-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.symbol-icon {
    font-size: 2rem;
}

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

.pros,
.cons {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
}

.pros {
    border-left: 4px solid var(--success-color);
}

.cons {
    border-left: 4px solid #f44336;
}

.pros h3 {
    color: var(--success-color);
    margin-bottom: 1rem;
}

.cons h3 {
    color: #f44336;
    margin-bottom: 1rem;
}

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

.pros li::before {
    content: '✓';
    color: var(--success-color);
    margin-right: 0.5rem;
}

.cons li::before {
    content: '✗';
    color: #f44336;
    margin-right: 0.5rem;
}

/* FAQ */
.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: var(--gold-color);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(124, 77, 255, 0.1);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.5), rgba(26, 26, 78, 0.5));
    border-radius: 20px;
    margin: 3rem 0;
    border: 2px solid var(--gold-color);
}

.cta-section h2 {
    color: var(--gold-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: rgba(26, 26, 78, 0.95);
    border-top: 2px solid var(--gold-color);
    padding: 3rem 1rem 1rem;
    margin-top: 4rem;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--gold-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsible Gaming Links */
.responsible-gaming {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.responsible-gaming a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.responsible-gaming a:hover {
    color: var(--gold-color);
    text-decoration: underline;
}

/* Contact Info */
.contact-info {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    margin: 2rem 0;
}

.contact-info h3 {
    color: var(--gold-color);
    margin-bottom: 1rem;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Copyright */
.copyright {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Lists */
.content-card ul,
.content-card ol {
    margin: 1rem 0 1rem 1.5rem;
}

.content-card li {
    margin-bottom: 0.5rem;
}

/* Numbered Steps */
.steps-list {
    counter-reset: step;
    list-style: none;
    margin-left: 0;
}

.steps-list li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.steps-list li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(45deg, var(--gold-color), #ff8c00);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    nav {
        display: none;
        width: 100%;
        margin-top: 1rem;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        margin-top: 60px;
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .toc ul {
        columns: 1;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .responsible-gaming {
        flex-direction: column;
        align-items: center;
    }
}

/* Print Styles */
@media print {
    header,
    footer,
    .hero-buttons,
    .cta-section {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .content-card {
        border: 1px solid #ccc;
        break-inside: avoid;
    }
}

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

/* Focus Styles */
a:focus,
button:focus,
.btn:focus {
    outline: 3px solid var(--gold-color);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: var(--accent-color);
    color: white;
}
