/* Hot Frootastic - German Slot Site Styles */
/* Red-Yellow Color Scheme with Floating Fruits & Sevens */

:root {
    --primary-red: #dc2626;
    --primary-yellow: #fbbf24;
    --dark-red: #991b1b;
    --light-yellow: #fef3c7;
    --gold: #f59e0b;
    --orange: #f97316;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
}

* {
    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-red) 0%, var(--primary-red) 50%, var(--orange) 100%);
    color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Floating Fruits & Sevens Animation */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-fruit, .floating-seven {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: float 15s infinite ease-in-out;
}

.floating-seven {
    color: var(--primary-yellow);
    font-weight: bold;
    font-size: 2.5rem;
    text-shadow: 0 0 10px var(--gold);
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

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

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

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

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

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

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

nav a:hover {
    background: var(--gold);
    color: var(--dark-red);
    transform: translateY(-2px);
}

nav a.active {
    background: var(--primary-yellow);
    color: var(--dark-red);
}

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

/* Main Content */
main {
    position: relative;
    z-index: 10;
}

/* Hero Banner */
.hero {
    background: linear-gradient(135deg, rgba(153, 27, 27, 0.9) 0%, rgba(220, 38, 38, 0.9) 100%);
    padding: 4rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--gold);
}

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

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--gold) 50%, var(--primary-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

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

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

.btn-primary {
    background: linear-gradient(90deg, var(--gold) 0%, var(--orange) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
    animation: pulse 2s infinite;
}

.btn-secondary {
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    border: 2px solid var(--gold);
    animation: pulse 2s infinite 0.5s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(245, 158, 11, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
    }
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.8);
}

/* Live Win Ticker */
.win-ticker {
    background: linear-gradient(90deg, var(--black) 0%, #2d2d2d 100%);
    padding: 0.8rem 0;
    overflow: hidden;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

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

.win-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 2rem;
    color: var(--primary-yellow);
    font-weight: bold;
}

.win-amount {
    color: #22c55e;
    font-size: 1.1rem;
}

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

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

/* Section Styles */
.section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

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

.section-content {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.8;
}

.section-content p {
    margin-bottom: 1rem;
}

/* Table of Contents */
.toc {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 2px solid var(--gold);
}

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

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

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

.toc a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(251, 191, 36, 0.3);
}

.data-table th {
    background: var(--dark-red);
    color: var(--primary-yellow);
    font-weight: bold;
}

.data-table tr:hover {
    background: rgba(251, 191, 36, 0.1);
}

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

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

/* FAQ */
.faq-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1rem 1.5rem;
    background: rgba(153, 27, 27, 0.5);
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(153, 27, 27, 0.8);
}

.faq-answer {
    padding: 1rem 1.5rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

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

/* 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(--gold) 0%, var(--orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--white);
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: linear-gradient(135deg, rgba(153, 27, 27, 0.8) 0%, rgba(220, 38, 38, 0.8) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid var(--gold);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: linear-gradient(90deg, var(--black) 0%, #2d2d2d 100%);
    padding: 3rem 1rem 1rem;
    border-top: 5px solid var(--gold);
    position: relative;
    z-index: 10;
}

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

.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;
}

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

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

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

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-contact a:hover {
    text-decoration: underline;
}

/* Responsible Gaming Banner */
.rg-banner {
    background: linear-gradient(90deg, #166534 0%, #22c55e 100%);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.rg-banner p {
    margin: 0;
    font-weight: bold;
}

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

.rg-links a {
    color: var(--white);
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--gray);
    padding-top: 1rem;
    text-align: center;
    color: var(--gray);
}

.footer-bottom a {
    color: var(--gray);
    text-decoration: none;
    margin: 0 1rem;
}

/* Age Verification */
.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dark-red);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid var(--gold);
}

/* 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;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .toc ul {
        columns: 1;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

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

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.highlight {
    background: rgba(251, 191, 36, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
}

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

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

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