/* Triple Flame Casino - German Slot Site Styles */
/* Red-Yellow Theme with Floating 7s and Flames */

:root {
    --primary-red: #c41e3a;
    --dark-red: #8b0000;
    --light-red: #ff4444;
    --primary-yellow: #ffd700;
    --gold: #ffb800;
    --orange: #ff6b00;
    --dark-bg: #1a0a0a;
    --darker-bg: #0d0505;
    --text-light: #ffffff;
    --text-gold: #ffd700;
    --flame-orange: #ff4500;
}

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

/* Floating 7s Animation */
.floating-seven {
    position: fixed;
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-red);
    text-shadow: 0 0 20px var(--primary-yellow), 0 0 40px var(--flame-orange);
    z-index: 0;
    pointer-events: none;
    animation: float 15s infinite ease-in-out;
    opacity: 0.3;
}

.floating-seven:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.floating-seven:nth-child(2) { top: 30%; right: 8%; animation-delay: 3s; }
.floating-seven:nth-child(3) { top: 60%; left: 3%; animation-delay: 6s; }
.floating-seven:nth-child(4) { top: 80%; right: 5%; animation-delay: 9s; }
.floating-seven:nth-child(5) { top: 45%; left: 10%; animation-delay: 12s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
    25% { transform: translateY(-30px) rotate(5deg); opacity: 0.4; }
    50% { transform: translateY(-50px) rotate(-5deg); opacity: 0.3; }
    75% { transform: translateY(-20px) rotate(3deg); opacity: 0.5; }
}

/* Flame Particles */
.flame-particle {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--primary-yellow) 0%, var(--flame-orange) 50%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: flame-rise 8s infinite linear;
    opacity: 0.4;
}

.flame-particle:nth-child(6) { left: 15%; animation-delay: 0s; }
.flame-particle:nth-child(7) { left: 35%; animation-delay: 2s; }
.flame-particle:nth-child(8) { left: 55%; animation-delay: 4s; }
.flame-particle:nth-child(9) { left: 75%; animation-delay: 6s; }
.flame-particle:nth-child(10) { left: 90%; animation-delay: 1s; }

@keyframes flame-rise {
    0% { bottom: -50px; transform: scale(0.5); opacity: 0; }
    20% { opacity: 0.6; }
    80% { opacity: 0.4; }
    100% { bottom: 100vh; transform: scale(1.5); opacity: 0; }
}

/* Header */
header {
    background: linear-gradient(180deg, var(--dark-red) 0%, var(--primary-red) 50%, var(--dark-red) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 69, 0, 0.4);
    border-bottom: 3px solid var(--primary-yellow);
}

.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: 10px;
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--primary-yellow), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

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

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

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

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

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

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

/* Hero Banner */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(139, 0, 0, 0.3) 0%, rgba(26, 10, 10, 0.8) 100%);
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-yellow), var(--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.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5)); }
    to { filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.8)); }
}

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

.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;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.7);
    background: linear-gradient(45deg, var(--flame-orange), var(--primary-red));
}

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

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

/* Pulsing Button Animation */
.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); }
}

/* Live Win Ticker */
.win-ticker {
    background: linear-gradient(90deg, var(--dark-red), var(--primary-red), var(--dark-red));
    padding: 0.8rem 0;
    overflow: hidden;
    border-top: 2px solid var(--primary-yellow);
    border-bottom: 2px solid var(--primary-yellow);
}

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

.win-ticker-item {
    padding: 0 3rem;
    font-size: 1rem;
    color: var(--primary-yellow);
}

.win-ticker-item span {
    color: var(--text-light);
    font-weight: bold;
}

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

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 20px;
    position: relative;
    z-index: 10;
}

/* Table of Contents */
.toc {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3) 0%, rgba(26, 10, 10, 0.5) 100%);
    border: 2px solid var(--primary-red);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.toc h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.toc ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

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

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

.toc a::before {
    content: '🔥 ';
}

/* Sections */
section {
    margin: 3rem 0;
}

section h2 {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-red);
    display: inline-block;
}

section h3 {
    font-size: 1.4rem;
    color: var(--gold);
    margin: 1.5rem 0 1rem;
}

section p {
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.8;
}

/* Info Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: rgba(139, 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(--primary-red);
}

.info-table th {
    background: var(--primary-red);
    color: var(--text-light);
    font-weight: bold;
}

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

/* 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(--primary-red);
}

.symbol-table th {
    background: linear-gradient(180deg, var(--primary-red), var(--dark-red));
    color: var(--text-light);
}

.symbol-table td {
    background: rgba(139, 0, 0, 0.2);
}

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

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

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.image-grid img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid var(--primary-red);
    transition: transform 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.05);
}

/* FAQ */
.faq-item {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2) 0%, rgba(26, 10, 10, 0.3) 100%);
    border: 1px solid var(--primary-red);
    border-radius: 10px;
    margin: 1rem 0;
    padding: 1.5rem;
}

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

.faq-item p {
    margin: 0;
    color: var(--text-light);
    opacity: 0.9;
}

/* Lists */
ol, ul {
    margin: 1rem 0 1rem 2rem;
}

li {
    margin: 0.5rem 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
    border: 3px solid var(--primary-yellow);
}

.cta-section h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

/* Footer */
footer {
    background: linear-gradient(180deg, var(--darker-bg) 0%, #000 100%);
    border-top: 3px solid var(--primary-red);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

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

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

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

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

.footer-section a:hover {
    opacity: 1;
    color: var(--primary-yellow);
}

.footer-contact p {
    margin: 0.5rem 0;
}

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

/* Responsible Gaming Banner */
.responsible-gaming {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--primary-yellow);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

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

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

.responsible-links a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-red);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.responsible-links a:hover {
    background: var(--primary-red);
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-red);
    opacity: 0.7;
}

/* Play Page */
.play-redirect {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.play-redirect h1 {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.play-redirect p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.loader {
    width: 80px;
    height: 80px;
    border: 5px solid var(--primary-red);
    border-top: 5px solid var(--primary-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@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 h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .toc ul {
        grid-template-columns: 1fr;
    }
    
    .floating-seven {
        font-size: 2rem;
    }
}

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