
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FFD700;
    --primary-dark: #FFA500;
    --secondary: #FF6B35;
    --dark: #0a0e27;
    --dark-light: #1a1f3a;
    --text: #ffffff;
    --text-muted: #a0a0b8;
    --success: #00ff88;
    --danger: #ff3366;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
    radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 36px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cta-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.4);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 215, 0, 0.6);
}

.cta-button-large {
    font-size: 20px;
    padding: 16px 40px;
}

.cta-secondary-large {
    font-size: 18px;
    padding: 14px 35px;
}

.hero {
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    text-align: left;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    float: right;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-image-placeholder img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.hero-image-placeholder .placeholder-text {
    font-size: 48px;
    color: rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s ease infinite;
    background-size: 200% 200%;
    line-height: 1.2;
}

@keyframes gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 100%;
}

.hero-cta {
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: rgba(26, 31, 58, 0.6);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

section {
    padding: 30px 0;
}
.container img {
    border-radius: 15px;
}
.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 18px;
    margin: 0 auto 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.spiel-features-grid {        
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(26, 31, 58, 0.6);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.feature-icon i {
    color: var(--primary);
}

.logo-icon i {
    color: var(--primary);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.difficulty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.difficulty-card {
    background: rgba(26, 31, 58, 0.8);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.difficulty-card.easy { border-color: rgba(0, 255, 136, 0.3); }
.difficulty-card.medium { border-color: rgba(255, 215, 0, 0.3); }
.difficulty-card.hard { border-color: rgba(255, 107, 53, 0.3); }
.difficulty-card.hardcore { border-color: rgba(255, 51, 102, 0.3); }

.difficulty-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
}

.difficulty-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.easy .difficulty-badge { background: rgba(0, 255, 136, 0.2); color: var(--success); }
.medium .difficulty-badge { background: rgba(255, 215, 0, 0.2); color: var(--primary); }
.hard .difficulty-badge { background: rgba(255, 107, 53, 0.2); color: var(--secondary); }
.hardcore .difficulty-badge { background: rgba(255, 51, 102, 0.2); color: var(--danger); }

.difficulty-card h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.multiplier {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 15px 0;
}

.faq-container {
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    background: rgba(26, 31, 58, 0.6);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 25px;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
}

.faq-answer {
    padding: 0 25px 25px;
    color: var(--text-muted);
    line-height: 1.8;
}

.cta-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    padding: 80px 0;
    text-align: center;
    border-radius: 30px;
    margin: 60px 0;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.cta-section h2 {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

footer {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.8) 0%, rgba(10, 14, 39, 1) 100%);
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    padding: 80px 0 0;
    color: var(--text-muted);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
    radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    font-size: 42px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.footer-logo-text {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.footer-badge:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--primary);
    transform: translateX(5px);
}

.footer-badge i {
    font-size: 16px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    padding: 0;
    margin-bottom: 12px;
}

.footer-list li::before {
    content: none;
}

.footer-list a {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-list a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-list a i {
    font-size: 14px;
    width: 16px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    color: var(--primary);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.footer-newsletter-text {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(26, 31, 58, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    color: var(--text);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-button {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 8px;
    color: var(--dark);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.footer-payment {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-payment-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.payment-icon {
    font-size: 36px;
    color: var(--text-muted);
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-icon:hover {
    color: var(--primary);
    transform: scale(1.2);
}

.footer-bottom {
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.footer-legal {
    text-align: center;
    margin-bottom: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.footer-copyright strong {
    color: var(--primary);
    font-weight: 700;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 13px;
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--primary);
}

.footer-legal-links .separator {
    color: rgba(255, 215, 0, 0.3);
}

.footer-license {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-license p {
    margin: 8px 0;
}

.footer-license i {
    color: var(--primary);
    margin-right: 5px;
}

.footer-warning {
    color: var(--secondary) !important;
    font-weight: 600;
}

.footer-disclaimer {
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
    font-size: 12px;
    line-height: 1.8;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.footer-disclaimer strong {
    color: var(--danger);
    font-weight: 700;
}

.footer-disclaimer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-disclaimer a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .footer-main {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    }

    .footer-column:nth-child(4),
    .footer-column:nth-child(5) {
    grid-column: span 1;
    }
}

@media (max-width: 768px) {
    footer {
    padding: 50px 0 0;
    }

    .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
    }

    .footer-logo {
    justify-content: center;
    }

    .footer-description {
    text-align: center;
    }

    .footer-badges {
    align-items: center;
    }

    .footer-title {
    text-align: center;
    }

    .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
    }

    .footer-list {
    text-align: center;
    }

    .footer-list a {
    justify-content: center;
    }

    .social-links {
    justify-content: center;
    }

    .payment-methods {
    gap: 20px;
    }

    .payment-icon {
    font-size: 30px;
    }

    .footer-legal-links {
    flex-direction: column;
    gap: 10px;
    }

    .footer-legal-links .separator {
    display: none;
    }
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 215, 0, 0.2);
    color: var(--primary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Content Boxes */
.content-box {
    background: rgba(26, 31, 58, 0.6);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 40px;
}

.content-box-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary);
}

.content-box-text {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.content-box-text-small {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.content-box-gradient {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 40px;
}

.content-box-gradient-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary);
    text-align: center;
}

.content-box-gradient-text {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 30px;
}

.content-box-center {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: rgba(26, 31, 58, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.content-box-center-text {
    color: var(--primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8;
}

.content-box-warning {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 51, 102, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 51, 102, 0.3);
}

.content-box-warning-text {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.content-box-warning-highlight {
    color: var(--danger);
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
}

.hero-subtitle-highlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 30px;
}

.text-center {
    text-align: center;
}

.text-center-large {
    text-align: center;
    margin-top: 40px;
}

.bonus-list {
    list-style: none;
    padding: 0;
}

.bonus-list-item {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
}

.bonus-list-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 900;
    font-size: 20px;
}

.mobile-center-text {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
}

.mobile-center-text strong {
    color: var(--primary);
}

.developer-box {
    text-align: center;
    margin-top: 40px;
    padding: 40px;
    background: rgba(26, 31, 58, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.developer-box-text {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
}

.developer-box-text strong {
    color: var(--primary);
}

/* Demo Game Styles */
.demo-game-preview {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
}

.demo-game-preview iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.demo-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.demo-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
    radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
    animation: pulse 3s ease-in-out infinite;
}

.demo-overlay-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 40px;
}

.demo-overlay-icon {
    font-size: 120px;
    color: var(--primary);
    margin-bottom: 30px;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
    animation: bounce 2s infinite;
}

.demo-overlay-title {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.demo-overlay-text {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.demo-start-btn {
    font-size: 22px;
    padding: 18px 50px;
}

.demo-game-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.98);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.demo-game-wrapper {
    width: 100%;
    max-width: 1400px;
    height: 90vh;
    position: relative;
    background: var(--dark-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.demo-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 51, 102, 0.9);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.demo-close-btn:hover {
    background: var(--danger);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 51, 102, 0.5);
}

.demo-game-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.demo-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.demo-launch-btn {
    font-size: 18px;
    padding: 16px 40px;
}


@media (max-width: 768px) {
    .demo-game-preview {
    height: 400px;
    margin: 30px auto;
    }

    .demo-overlay-icon {
    font-size: 80px;
    margin-bottom: 20px;
    }

    .demo-overlay-title {
    font-size: 32px;
    }

    .demo-overlay-text {
    font-size: 16px;
    margin-bottom: 30px;
    }

    .demo-start-btn {
    font-size: 18px;
    padding: 14px 35px;
    }

    .demo-game-wrapper {
    height: 85vh;
    border-radius: 10px;
    }

    .demo-close-btn {
    top: 10px;
    right: 10px;
    padding: 10px 20px;
    font-size: 14px;
    }

    .demo-cta-buttons {
    flex-direction: column;
    }

    .demo-cta-buttons .cta-button {
    width: 100%;
    max-width: 350px;
    }
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-muted);
    line-height: 1.8;
}

ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 900;
    font-size: 18px;
}

@media (max-width: 768px) {
    .hero {
    padding: 40px 0;
    }

    .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    }

    .hero-left {
    text-align: center;
    }

    .hero-right {
    min-height: 300px;
    }

    .hero-image-placeholder {
    min-height: 300px;
    }

    section {
    padding: 10px 0;
    }

    .features-grid,
    .spiel-features-grid,
    .difficulty-grid {
    grid-template-columns: 1fr;
    }

    .hero-cta {
    flex-direction: column;
    align-items: center;
    }

    .cta-button,
    .cta-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Table of Contents */
.toc-section {
  padding: 0;
  margin-bottom: 40px;
}

.toc-toggle {
  width: 100%;
  background: rgba(26, 31, 58, 0.8);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
}

.toc-toggle:hover {
  background: rgba(26, 31, 58, 1);
  border-color: var(--primary);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.toc-toggle-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.toc-toggle-icon {
  font-size: 18px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.toc-toggle.active .toc-toggle-icon {
  transform: rotate(180deg);
}

.toc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  background: rgba(26, 31, 58, 0.6);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-top: none;
  border-radius: 0 0 15px 15px;
}

.toc-content.active {
  max-height: 600px;
  padding: 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.toc-column-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  padding: 0;
  margin-bottom: 12px;
}

.toc-list li::before {
  content: none;
}

.toc-list a {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.toc-list a:hover {
  color: var(--primary);
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
}

.toc-list a i {
  font-size: 14px;
  width: 18px;
  color: var(--primary);
}

@media (max-width: 992px) {
  .toc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .toc-toggle {
    padding: 15px 20px;
  }

  .toc-toggle-text {
    font-size: 16px;
  }

  .toc-content.active {
    padding: 20px;
  }

  .toc-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .toc-column-title {
    font-size: 16px;
  }

  .toc-list a {
    font-size: 14px;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--dark);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 25px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 35px rgba(255, 215, 0, 0.6);
}

.back-to-top:active {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* Header Buttons Optimization */
.header-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.header-content .cta-button {
  white-space: nowrap;
  padding: 10px 20px;
  font-size: 14px;
}

.btn-text-short {
  display: none;
}

@media (max-width: 768px) {
  .header-content {
    gap: 10px;
  }

  .header-buttons {
    gap: 8px;
  }

  .header-content .cta-button {
    padding: 8px 12px;
    font-size: 12px;
  }

  .header-content .cta-button i {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-content .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .btn-text-full {
    display: none;
  }

  .btn-text-short {
    display: inline;
  }
}


/* ===================================
   Reviews Section
   =================================== */

#reviews {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.95) 0%, rgba(15, 18, 35, 0.98) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.reviews-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 50px 0;
  position: relative;
  z-index: 1;
}

.review-stat {
  background: rgba(26, 31, 58, 0.6);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.review-stat:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-number span {
  font-size: 28px;
  color: var(--text-muted);
}

.stat-label {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.stat-stars {
  color: var(--primary);
  font-size: 20px;
  margin-top: 10px;
}

.stat-stars i {
  margin: 0 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 50px 0;
  position: relative;
  z-index: 1;
}

.review-card {
  background: rgba(26, 31, 58, 0.6);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 80px;
  color: rgba(255, 215, 0, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--bg-dark);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.author-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
}

.author-location {
  font-size: 14px;
  color: var(--text-muted);
}

.review-rating {
  color: var(--primary);
  font-size: 16px;
  display: flex;
  gap: 3px;
}

.review-rating i {
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.review-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.review-date {
  font-size: 14px;
  color: var(--text-muted);
  opacity: 0.7;
}

.reviews-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
  z-index: 1;
}

.reviews-cta-text {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 25px;
}

.reviews-cta-text i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 24px;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
  #reviews {
    padding: 60px 0;
  }
  
  .reviews-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
  }
  
  .review-stat {
    padding: 25px;
  }
  
  .stat-number {
    font-size: 40px;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
  }
  
  .review-card {
    padding: 25px;
  }
  
  .review-card::before {
    font-size: 60px;
    top: 10px;
    left: 15px;
  }
  
  .author-avatar {
    width: 45px;
    height: 45px;
    font-size: 25px;
  }
  
  .author-name {
    font-size: 16px;
  }
  
  .review-body {
    font-size: 15px;
  }
  
  .reviews-cta {
    padding: 30px 20px;
    margin-top: 40px;
  }
  
  .reviews-cta-text {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .reviews-stats {
    margin: 20px 0;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .stat-number span {
    font-size: 24px;
  }
  
  .review-card {
    padding: 20px;
  }
  
  .review-header {
    flex-direction: column;
    gap: 15px;
  }
  
  .review-rating {
    align-self: flex-start;
  }
}


/* Language Switcher */
.language-switcher {
  position: relative;
  margin-right: 15px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-toggle:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.lang-toggle i.fa-globe {
  color: var(--primary);
  font-size: 16px;
}

.lang-toggle i.fa-chevron-down {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.lang-toggle:hover i.fa-chevron-down {
  transform: rotate(180deg);
}

.lang-current {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: rgba(10, 14, 39, 1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 8px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.lang-option:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
}

.lang-option.active {
  background: rgba(255, 215, 0, 0.15);
  color: var(--primary);
  font-weight: 600;
}

.lang-flag {
  font-size: 20px;
  line-height: 1;
}

.lang-name {
  flex: 1;
}

/* Footer Languages */
.footer-languages {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.footer-lang-label {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

.footer-lang-label i {
  color: var(--primary);
  margin-right: 5px;
}

.footer-lang {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 6px;
}

.footer-lang:hover {
  color: var(--primary);
  background: rgba(255, 215, 0, 0.1);
}

.footer-lang.active {
  color: var(--primary);
  font-weight: 600;
  background: rgba(255, 215, 0, 0.15);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .language-switcher {
    margin-right: 10px;
  }

  .lang-toggle {
    padding: 8px 12px;
    font-size: 13px;
  }

  .lang-toggle i.fa-globe {
    font-size: 14px;
  }

  .lang-dropdown {
    min-width: 160px;
    right: -10px;
  }

  .lang-option {
    padding: 10px 12px;
    font-size: 13px;
  }

  .lang-flag {
    font-size: 18px;
  }

  .footer-languages {
    justify-content: center;
    text-align: center;
  }

  .footer-lang {
    font-size: 13px;
    padding: 4px 8px;
  }
}

@media (max-width: 480px) {
  .lang-toggle {
    padding: 6px 10px;
  }

  .lang-current {
    display: none;
  }

  .lang-toggle i.fa-chevron-down {
    display: none;
  }

  .lang-dropdown {
    right: -20px;
  }
}
