/* Magic Mirror Deluxe - Hauptstylesheet */
/* Farbschema: Dunkelblau + Goldene Loewen */

:root {
    --primary-dark: #0a1628;
    --secondary-dark: #1a2a44;
    --accent-gold: #d4af37;
    --accent-gold-light: #f4d03f;
    --accent-gold-dark: #b8860b;
    --text-light: #ffffff;
    --text-muted: #b0b8c8;
    --border-gold: #c9a227;
    --success-green: #28a745;
    --danger-red: #dc3545;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header Styles */
header {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.98) 0%, rgba(26, 42, 68, 0.95) 100%);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent-gold);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

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

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

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

nav a:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(26, 42, 68, 0.8) 100%),
                url('../images/banner-magic-mirror.webp');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

/* Pulsierende Buttons */
.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Live Gewinne Ticker */
.live-wins {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 50%, rgba(212, 175, 55, 0.1) 100%);
    padding: 15px 0;
    border-top: 1px solid var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
    overflow: hidden;
}

.live-wins-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    animation: scroll 20s linear infinite;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    font-weight: 600;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

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

.section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Table of Contents */
.toc {
    background: rgba(26, 42, 68, 0.6);
    border: 1px solid var(--accent-gold);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
}

.toc h3 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

.toc li {
    margin-bottom: 10px;
}

.toc a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

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

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

/* Info Tables */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(26, 42, 68, 0.4);
    border-radius: 10px;
    overflow: hidden;
}

.info-table th,
.info-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.info-table th {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    font-weight: 600;
}

.info-table tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

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

.symbol-table th,
.symbol-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.symbol-table th {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    color: var(--accent-gold);
    font-weight: 600;
}

.symbol-table tr:nth-child(even) {
    background: rgba(26, 42, 68, 0.3);
}

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

/* Content Blocks */
.content-block {
    background: rgba(26, 42, 68, 0.4);
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.content-block h2 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.content-block h3 {
    color: var(--accent-gold-light);
    font-size: 1.4rem;
    margin: 25px 0 15px;
}

.content-block p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-block ul,
.content-block ol {
    color: var(--text-muted);
    margin: 20px 0;
    padding-left: 30px;
}

.content-block li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Images */
.content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin: 30px auto;
    display: block;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.pros,
.cons {
    background: rgba(26, 42, 68, 0.5);
    border-radius: 10px;
    padding: 25px;
}

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

.cons {
    border-left: 4px solid var(--danger-red);
}

.pros h4 {
    color: var(--success-green);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.cons h4 {
    color: var(--danger-red);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

.pros li::before {
    content: "✓ ";
    color: var(--success-green);
    font-weight: bold;
}

.cons li::before {
    content: "✗ ";
    color: var(--danger-red);
    font-weight: bold;
}

/* FAQ */
.faq-item {
    background: rgba(26, 42, 68, 0.4);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--accent-gold);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

/* CTA Buttons in Content */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.98) 0%, rgba(26, 42, 68, 0.95) 100%);
    border-top: 2px solid var(--accent-gold);
    padding: 60px 0 30px;
}

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

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

.footer-section h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact a {
    color: var(--accent-gold);
    text-decoration: none;
}

/* Responsible Gambling */
.responsible-gambling {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

.responsible-gambling p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.age-restriction {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 53, 69, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    color: #ff6b6b;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 968px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .toc ul {
        columns: 1;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .content-block {
        padding: 25px;
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.scroll-top.visible {
    display: flex;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--accent-gold);
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}
