/* Dragon's Treasure - Hauptstylesheet */
/* Farbschema: Blau, Rot, Gold mit schwebenden Drachen */

:root {
    --primary-blue: #0a1628;
    --secondary-blue: #1a3a5c;
    --accent-blue: #2d5a87;
    --primary-red: #c41e3a;
    --secondary-red: #8b0000;
    --accent-red: #ff4444;
    --primary-gold: #ffd700;
    --secondary-gold: #daa520;
    --accent-gold: #ffec8b;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #b0b0b0;
    --bg-dark: #0d1b2a;
    --bg-card: #1b263b;
    --border-gold: #b8860b;
}

* {
    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-blue) 0%, var(--bg-dark) 50%, var(--secondary-blue) 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Schwebender Drache Animation */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-20px) rotate(-2deg); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6), 0 0 60px rgba(196, 30, 58, 0.3); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes dragonFly {
    0% { transform: translateX(-100px) translateY(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(calc(100vw + 100px)) translateY(-50px); opacity: 0; }
}

/* Header */
.header {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.98) 0%, rgba(13, 27, 42, 0.95) 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

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

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    animation: float 4s ease-in-out infinite;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.nav {
    display: flex;
    gap: 2rem;
}

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-red));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav a:hover::after {
    width: 80%;
}

.nav a:hover {
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(26, 58, 92, 0.8) 100%),
                url('../images/hero-banner.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffd700' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.6);
}

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

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

.btn-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.btn-pulse:hover {
    animation: none;
}

/* Live Gewinne Ticker */
.live-wins {
    background: linear-gradient(90deg, var(--secondary-blue), var(--accent-blue));
    padding: 1rem 0;
    overflow: hidden;
    border-top: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
}

.live-wins-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.live-wins-label {
    font-weight: bold;
    color: var(--primary-gold);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.live-indicator {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 1s ease-in-out infinite;
}

.live-wins-ticker {
    flex: 1;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    gap: 3rem;
    animation: ticker 30s linear infinite;
}

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

.win-item {
    white-space: nowrap;
    color: var(--text-light);
}

.win-amount {
    color: var(--primary-gold);
    font-weight: bold;
}

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

/* Table of Contents */
.toc {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border-gold);
}

.toc h2 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

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

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

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

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

/* Sections */
.section {
    margin-bottom: 4rem;
}

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

.section h2 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

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

.section h3 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin: 2rem 0 1rem;
}

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

/* Content Cards */
.content-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.content-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
}

.data-table th {
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-blue));
    color: var(--primary-gold);
    padding: 1rem;
    text-align: left;
    font-weight: bold;
}

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

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

/* Symbol Table */
.symbol-table img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

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

.pros, .cons {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 2rem;
}

.pros {
    border-left: 4px solid #00c851;
}

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

.pros h4, .cons h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pros h4 {
    color: #00c851;
}

.cons h4 {
    color: var(--primary-red);
}

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

.pros li, .cons li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

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

.cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Images */
.section-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    margin: 2rem auto;
    display: block;
    border: 2px solid var(--border-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* FAQ */
.faq {
    margin-top: 2rem;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

/* CTA Buttons in Content */
.cta-container {
    text-align: center;
    margin: 3rem 0;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--primary-blue) 100%);
    border-top: 2px solid var(--primary-gold);
    padding: 3rem 0 1rem;
}

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

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

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

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

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

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

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

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

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

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

/* Responsible Gaming */
.responsible-gaming {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.responsible-gaming h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.rg-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.rg-links a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.age-restriction {
    display: inline-block;
    background: var(--primary-red);
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 1rem;
}

/* Dragon Decoration */
.dragon-decoration {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
}

.dragon-decoration.top-right {
    top: 100px;
    right: -50px;
    width: 300px;
    animation: float 6s ease-in-out infinite;
}

.dragon-decoration.bottom-left {
    bottom: 100px;
    left: -50px;
    width: 250px;
    animation: float 5s ease-in-out infinite reverse;
}

/* Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav {
        display: none;
    }
    
    .toc ul {
        columns: 1;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

/* Numbered Lists */
.numbered-list {
    counter-reset: item;
    list-style: none;
}

.numbered-list li {
    counter-increment: item;
    margin-bottom: 1rem;
    padding-left: 3rem;
    position: relative;
}

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

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(196, 30, 58, 0.1));
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box p {
    margin: 0;
    font-style: italic;
    color: var(--accent-gold);
}
