:root {
    --primary-color: #e30613;
    --secondary-color: #ffd700;
    --text-color: #333;
    --background-light: #f5f5f5;
    --white: #ffffff;
    --max-width: 1200px;
}

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
header {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

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

.logo {
    height: 40px;
    width: auto;
    transition: transform 0.2s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-slogan {
    color: #555;
    font-style: italic;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-right {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.nav-link:hover {
    background-color: var(--background-light);
}

.nav-link i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Main Tabs */
.main-tabs {
    background: var(--white);
    border-bottom: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    width: 100%;
}

.tabs-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2px;
    padding: 0 2rem;
    background: var(--background-light);
}

.tab {
    padding: 1rem 2.5rem;
    text-decoration: none;
    color: var(--text-color);
    background: var(--white);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
    border-bottom: 3px solid transparent;
    text-align: center;
    flex: 0 1 auto;
}

.tab:hover {
    background: var(--white);
    border-bottom: 3px solid var(--secondary-color);
    color: var(--secondary-color);
}

.tab.active {
    background: var(--white);
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    font-weight: 600;
}

/* Main Container */
.main-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

/* Bingo Promo */
.bingo-promo {
    display: block;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.bingo-promo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.promo-content {
    flex: 1;
    color: var(--white);
}

.promo-title {
    font-size: 2.5rem;
    margin: 0.5rem 0 1.5rem;
}

.highlight {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.promo-tags {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(255,255,255,0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    color: var(--text-color);
    font-weight: bold;
    width: fit-content;
}

.cta-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    width: fit-content;
}

/* Jackpots */
.jackpots {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.jackpot-box {
    display: block;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: calc(50% - 0.75rem);
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.jackpot-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.jackpot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.jackpot-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.jackpot-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.jackpot-time {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.button-group {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
    width: 120px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-color);
    border: 1px solid #ddd;
}

/* Lotto Power Banner */
.lotto-power {
    margin: 2rem 0;
}

.banner {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.banner-logo {
    height: 40px;
}

.banner-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.banner-text .highlight {
    font-size: 1.2rem;
    font-weight: bold;
}

.banner-text .price {
    color: var(--primary-color);
    font-weight: bold;
}

.banner-text .date {
    font-size: 0.9rem;
    color: #666;
}

.btn-play {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.6rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

/* Feature Boxes */
.feature-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #eee;
    margin-bottom: 2rem;
}

.feature-box {
    background: var(--white);
    padding: 1rem;
}

.placeholder-box {
    background: #f5f5f5;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.placeholder-box:hover {
    background: #ebebeb;
}

/* Lottery Results */
.lottery-results {
    margin: 2rem 0;
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.partnership-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem;
    margin-bottom: 2rem;
    background: var(--background-light);
    border-radius: 8px;
}

.partnership-banner span {
    color: #666;
    font-size: 1rem;
}

.faber-logo, .lotto-partner-logo {
    height: 30px;
    width: auto;
}

.results-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.results-container {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid #eee;
    transition: transform 0.2s;
}

.results-container:hover {
    transform: translateY(-2px);
}

.game-tab {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.game-logo {
    height: 25px;
    width: auto;
}

.results-content {
    padding: 1.5rem;
}

.draw-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.numbers {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.number, .super-number, .euro-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.number {
    background: var(--background-light);
    color: var(--text-color);
}

.super-number {
    background: var(--primary-color);
    color: var(--white);
}

.euro-number {
    background: var(--secondary-color);
    color: var(--text-color);
}

.number:hover, .super-number:hover, .euro-number:hover {
    transform: scale(1.1);
}

.additional-info {
    text-align: center;
    margin: 1rem 0;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 6px;
}

.game-id {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
}

.game-number {
    font-weight: bold;
    color: var(--text-color);
    letter-spacing: 1px;
}

.disclaimer {
    text-align: center;
    color: #999;
    font-size: 0.8rem;
    font-style: italic;
}

/* Info Banner */
.info-banner {
    background: #ffe4d9;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.banner-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-text {
    flex: 1;
}

.banner-text h3 {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: linear-gradient(to bottom, #333, #222);
    margin-top: auto;
    padding: 4rem 0 0;
    color: #fff;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

.certifications {
    max-width: var(--max-width);
    margin: 0 auto 4rem;
    padding: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cert-logo {
    height: 45px;
    width: auto;
    opacity: 0.85;
    transition: all 0.3s ease;
    filter: none;
}

.cert-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.customer-service {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.customer-service h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.customer-service h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.phone-info, .contact-form {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-info:hover, .contact-form:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.phone-icon, .form-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.phone-number {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.service-hours {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--secondary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-btn:hover {
    background: #ffde33;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

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

.link-column h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.link-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.link-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.25rem;
}

.link-column a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.link-column a:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

.link-column a:hover::before {
    transform: translateX(2px);
}

.age-restriction {
    max-width: var(--max-width);
    margin: 2rem auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.age-restriction .age-logo {
    height: 50px;
    width: auto;
    flex-shrink: 0;
}

.age-restriction p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.footer-info {
    background: rgba(0, 0, 0, 0.2);
    padding: 3rem 0;
    margin-top: 0;
}

.footer-info .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-info h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
    max-width: 800px;
}

.footer-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    max-width: 900px;
}

.footer-info ul {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    padding-left: 1.5rem;
    max-width: 900px;
}

.footer-info ul li {
    margin-bottom: 0.75rem;
}

.footer-info a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-slogan {
    text-align: center;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin: 2.5rem 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.legal-notice {
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

.legal-notice .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-notice p {
    margin-bottom: 0.75rem;
}

.legal-notice a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-notice a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        padding: 0 1.5rem 2rem;
    }

    .certifications {
        padding: 2rem 1.5rem;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .cert-logo {
        height: 35px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .legal-notice .container {
        padding: 0 1.5rem;
    }

    .phone-info, .contact-form {
        padding: 1rem;
    }

    .footer-info {
        padding: 2rem 0;
    }

    .footer-info .container {
        padding: 0 1.5rem;
    }
    
    .age-restriction {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .age-restriction .age-logo {
        margin-bottom: 1rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

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

.cert-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .bingo-promo {
        aspect-ratio: 4/3;
        height: auto;
    }
    
    .jackpot-box {
        height: auto;
        aspect-ratio: 2/1;
    }
    
    .cookie-banner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .results-tabs {
        flex-direction: column;
    }

    .partnership-banner {
        flex-direction: column;
        text-align: center;
    }

    .numbers {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Magazine Slider */
.magazine-slider {
    max-width: var(--max-width);
    margin: 2rem auto;
    padding: 0 1rem;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

.slide-content {
    display: flex;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.slide-image {
    flex: 1;
    position: relative;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-text {
    flex: 1;
    padding: 2rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.slide-text .btn-primary {
    align-self: flex-end;
    margin-top: auto;
}

.slide-text h2 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: bold;
}

.slide-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #666;
}

.check-icon {
    color: var(--primary-color);
    font-weight: bold;
}

.slider-nav {
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    pointer-events: none;
    transform: translateY(50%);
}

.prev-slide,
.next-slide {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.prev-slide:hover,
.next-slide:hover {
    background: var(--white);
}

.slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .slide-content {
        flex-direction: column;
    }

    .slide-image {
        aspect-ratio: 16/9;
    }

    .slide-text {
        padding: 1.5rem;
    }

    .slide-text h2 {
        font-size: 1.2rem;
    }

    .slide-text .btn-primary {
        align-self: flex-start;
    }
    
    .slider-nav {
        bottom: auto;
        top: 50%;
    }
}

/* Impressum Page Styles */
.impressum-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.impressum-content h1 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.company-info {
    max-width: 800px;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h2 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.info-block h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.info-block p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-block a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .impressum-content {
        padding: 1rem;
        margin-top: 1rem;
    }

    .impressum-content h1 {
        font-size: 1.5rem;
    }
}

/* Help Page Styles */
.help-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.help-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

.help-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.help-nav {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.help-nav h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.help-nav-section {
    margin-bottom: 1.5rem;
}

.help-nav-section h4 {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.help-nav-section ul {
    list-style: none;
}

.help-nav-section a {
    color: #666;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.help-nav-section a:hover {
    color: var(--primary-color);
}

.help-main h1 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.help-section {
    margin-bottom: 3rem;
    scroll-margin-top: 2rem;
}

.help-section h2 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.help-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.help-section ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.help-section li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .help-content {
        padding: 1rem;
        margin-top: 1rem;
    }

    .help-layout {
        grid-template-columns: 1fr;
    }

    .help-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .help-main h1 {
        font-size: 1.5rem;
    }

    .help-section h2 {
        font-size: 1.2rem;
    }
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #f8f8f8;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    border-radius: 4px;
}

.age-restriction .age-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.age-restriction p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

@media (max-width: 768px) {
    .age-restriction {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        margin: 0 15px;
    }

    .age-restriction .age-logo {
        width: 80px;
        height: 80px;
        margin: 10px auto;
    }

    .age-restriction p {
        font-size: 13px;
    }
}

/* Age Warning Banner */
.age-warning-banner {
    position: relative;
    background-color: #d32f2f;
    color: var(--white);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0;
}

.age-warning-banner.show {
    max-height: 200px;
    padding: 12px 20px;
}

.age-warning-banner .warning-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.age-warning-banner p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
}

.age-warning-banner a {
    color: var(--white);
    text-decoration: underline;
}

.age-warning-banner a:hover {
    text-decoration: none;
}

.age-warning-banner .dismiss-btn {
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.age-warning-banner .dismiss-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    .age-warning-banner {
        text-align: center;
        gap: 8px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .age-warning-banner.show {
        padding: 8px 10px;
    }

    .age-warning-banner .warning-logo {
        width: 20px;
        height: 20px;
    }

    .age-warning-banner p {
        font-size: 11px;
        line-height: 1.3;
        flex: 0 0 100%;
        order: 2;
        margin-top: 4px;
    }

    .age-warning-banner .dismiss-btn {
        padding: 4px 8px;
        font-size: 11px;
        order: 1;
    }
}

main {
    flex: 1;
}

@media (max-width: 768px) {
    .tabs-container {
        display: flex;
        flex-direction: row;
        padding: 0;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    
    .tabs-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }
    
    .tab {
        flex: 0 0 auto;
        width: auto;
        white-space: nowrap;
        padding: 0.6rem 1rem;
        border-bottom: 3px solid transparent;
        border-left: none;
        font-size: 0.9rem;
    }
    
    .tab:hover {
        border-bottom: 3px solid var(--secondary-color);
        border-left: none;
    }
    
    .tab.active {
        border-bottom: 3px solid var(--primary-color);
        border-left: none;
    }
} 