:root {
    --primary-color: #e74c3c;
    --secondary-color: #f1c40f;
    --text-color: #2c3e50;
    --background-light: #ecf0f1;
    --white: #ffffff;
    --max-width: 1200px;
    --accent-color: #3498db;
    --dark-accent: #2980b9;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Segoe UI', 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: var(--box-shadow);
}

.top-nav {
    border-bottom: 1px solid var(--medium-gray);
}

.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.3s ease;
}

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

.logo-slogan {
    color: var(--text-color);
    font-style: italic;
    font-size: 1rem;
    font-weight: 500;
}

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

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    gap: 0.3rem;
    transition: transform 0.2s ease;
}

.nav-link:hover {
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .logo-container {
        justify-content: center;
    }
    
    .nav-right {
        width: 100%;
        justify-content: space-around;
    }
    
    .tabs-container {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .tab {
        text-align: center;
        border-radius: var(--border-radius);
        padding: 0.8rem 0;
        font-size: 0.85rem;
    }
    
    .jackpots {
        grid-template-columns: 1fr;
    }
    
    .slide-content {
        flex-direction: column;
    }
    
    .slide-image {
        aspect-ratio: 16/9;
    }
    
    .slide-text {
        padding: 1.5rem;
    }
    
    .certifications {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .age-restriction {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .cookie-banner {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .cookie-banner p {
        padding-right: 0;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-buttons button {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        padding: 0.7rem 1rem;
        gap: 0.5rem;
    }
    
    .logo-container {
        justify-content: center;
    }
    
    .logo-slogan {
        display: none;
    }
    
    .nav-right {
        width: 100%;
        justify-content: center;
        gap: 3rem;
    }
    
    .tabs-container {
        flex-direction: row;
        padding: 0 0.75rem;
    }
    
    .tab {
        font-size: 0.75rem;
        padding: 0.7rem 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Main Tabs */
.main-tabs {
    border-bottom: 3px solid var(--primary-color);
    background: var(--white);
}

.tabs-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    padding: 0 2rem;
    width: 100%;
}

.tab {
    flex: 1;
    padding: 1rem 0;
    text-decoration: none;
    color: var(--text-color);
    background: var(--light-gray);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    text-align: center;
    margin: 0 2px;
}

.tab:first-child {
    margin-left: 0;
}

.tab:last-child {
    margin-right: 0;
}

.tab:hover {
    background: var(--medium-gray);
    transform: translateY(-3px);
}

.tab.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .tabs-container {
        padding: 0 1rem;
    }
    
    .tab {
        padding: 0.8rem 0;
        font-size: 0.85rem;
        margin: 0 1px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 480px) {
    .tabs-container {
        flex-direction: row;
    }
    
    .tab {
        font-size: 0.75rem;
        padding: 0.7rem 0;
    }
}

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

@media (max-width: 768px) {
    .main-container {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 1rem;
    }
}

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

/* Bingo Promo */
.bingo-promo {
    display: block;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--box-shadow);
}

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

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

.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: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    width: fit-content;
    transition: background-color 0.2s, color 0.2s;
}

.cta-button:hover {
    background: #000000;
    color: var(--white);
}

/* Jackpots */
.jackpots {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.jackpot-box {
    display: block;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

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

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

.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: 2px solid #000000;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
    width: 120px;
    background: transparent;
    color: #000000;
    transition: background-color 0.2s, color 0.2s;
}

.btn-primary:hover, .btn-secondary:hover {
    background: #000000;
    color: var(--white);
}

/* Lotto Power Banner */
.lotto-power {
    margin-bottom: 1.5rem;
}

.banner {
    display: block;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

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

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.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: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 0.6rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s, color 0.2s;
}

.btn-play:hover {
    background: #000000;
    color: var(--white);
}

@media (max-width: 768px) {
    .banner-content {
        padding: 0.8rem 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .banner-logo {
        height: 35px;
    }
    
    .banner-text .highlight {
        font-size: 1.1rem;
    }
    
    .banner-text .date {
        font-size: 0.85rem;
    }
    
    .btn-play {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .banner-content {
        padding: 0.7rem 1rem;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .banner-logo {
        height: 30px;
    }
    
    .banner-text {
        text-align: center;
    }
    
    .banner-text .highlight {
        font-size: 1rem;
    }
    
    .banner-text .date {
        font-size: 0.8rem;
    }
    
    .btn-play {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }
}

/* 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;
}

@media (max-width: 768px) {
    .feature-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .placeholder-box {
        height: 90px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .feature-boxes {
        grid-template-columns: 1fr;
    }
    
    .placeholder-box {
        height: 80px;
    }
}

/* Lottery Results */
.lottery-results {
    margin-bottom: 2rem;
}

.results-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.results-container {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.results-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.game-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

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

.eurojackpot-tab {
    background: var(--accent-color);
}

.eurojackpot-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.results-content {
    padding: 1.5rem;
}

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

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

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

.number {
    background: var(--light-gray);
    color: var(--text-color);
    border: 2px solid var(--medium-gray);
}

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

.euro-number {
    background: var(--accent-color);
    color: var(--white);
}

.additional-info {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.game-id {
    color: #666;
    font-size: 0.9rem;
}

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

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

@media (max-width: 768px) {
    .results-content {
        padding: 1.25rem;
    }
    
    .number, .super-number, .euro-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .additional-info {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .game-tab {
        padding: 0.8rem;
    }
    
    .game-logo {
        height: 22px;
    }
    
    .eurojackpot-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .results-content {
        padding: 1rem;
    }
    
    .draw-date {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .number, .super-number, .euro-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .game-id {
        font-size: 0.8rem;
    }
    
    .game-tab {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .game-logo {
        height: 20px;
    }
    
    .eurojackpot-text {
        font-size: 0.9rem;
    }
}

/* 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: var(--white);
    padding: 4rem 0 0;
    margin-top: 2rem;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.05);
}

.certifications {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.cert-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.cert-logo:hover {
    transform: scale(1.1);
    opacity: 1;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

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

.customer-service h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

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

.phone-info, .contact-form {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.phone-info:hover, .contact-form:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

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

.phone-number {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.service-hours {
    color: #666;
    font-size: 0.9rem;
}

.contact-btn {
    display: inline-block;
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--text-color);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.link-column h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.link-column h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.link-column a {
    display: block;
    color: #555;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.25rem;
}

.link-column a:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

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

/* Age Restriction */
.age-restriction {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--light-gray);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--border-radius);
}

.age-logo {
    height: 60px;
    width: auto;
}

.age-restriction p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
}

/* Footer Info Section */
.footer-info {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem;
    color: #555;
    background-color: var(--background-light);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.footer-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.footer-info h4 {
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.footer-info p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.footer-info ul {
    list-style-type: none;
    margin: 1.5rem 0;
}

.footer-info li {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    position: relative;
    padding-left: 1.5rem;
}

.footer-info li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

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

.footer-slogan {
    font-weight: bold;
    margin: 2.5rem 0;
    font-size: 1.1rem;
    color: var(--text-color);
    text-align: center;
}

.legal-notice {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: #777;
}

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

/* Age Warning Banner */
.age-warning-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--text-color);
    color: var(--white);
    padding: 0.75rem 2rem;
    position: relative;
    z-index: 100;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding: 0;
}

.age-warning-banner.show {
    max-height: 200px;
    padding: 0.75rem 2rem;
}

.warning-logo {
    height: 30px;
    width: auto;
    margin-right: 1rem;
}

.age-warning-banner p {
    flex: 1;
    font-size: 0.9rem;
    margin: 0;
}

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

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

.dismiss-btn {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.dismiss-btn:hover {
    background-color: var(--white);
    color: var(--text-color);
}

@media (max-width: 768px) {
    .age-warning-banner.show {
        padding: 0.6rem 1rem;
    }
    
    .warning-logo {
        height: 24px;
        margin-right: 0.75rem;
    }
    
    .age-warning-banner p {
        font-size: 0.8rem;
    }
    
    .dismiss-btn {
        padding: 0.3rem 0.8rem;
        font-size: 0.75rem;
        margin-left: 0.75rem;
    }
    
    /* Hide some text on mobile */
    .mobile-hide {
        display: none;
    }
}

@media (max-width: 480px) {
    .age-warning-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .age-warning-banner.show {
        padding: 0.5rem 0.75rem;
    }
    
    .age-warning-banner p {
        font-size: 0.7rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 60%;
    }
    
    .warning-logo {
        height: 20px;
        margin-right: 0.5rem;
    }
    
    .dismiss-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
        margin-left: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .dismiss-btn::after {
        content: "×";
        font-size: 1.2rem;
        font-weight: bold;
    }
    
    .dismiss-btn span {
        display: none;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.25rem 2rem;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-top: 3px solid var(--primary-color);
}

.cookie-banner p {
    flex: 1;
    margin: 0;
    padding-right: 2rem;
    line-height: 1.6;
}

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

.btn-accept {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.btn-settings {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-settings:hover {
    background-color: var(--text-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Media Queries */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .jackpots {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .results-tabs {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .logo-container {
        justify-content: center;
    }
    
    .nav-right {
        width: 100%;
        justify-content: space-around;
    }
    
    .tabs-container {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .tab {
        text-align: center;
        border-radius: var(--border-radius);
        padding: 0.8rem 0;
        font-size: 0.85rem;
    }
    
    .jackpots {
        grid-template-columns: 1fr;
    }
    
    .slide-content {
        flex-direction: column;
    }
    
    .slide-image {
        aspect-ratio: 16/9;
    }
    
    .slide-text {
        padding: 1.5rem;
    }
    
    .certifications {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .age-restriction {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .cookie-banner {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .cookie-banner p {
        padding-right: 0;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-buttons button {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .tabs-container {
        flex-direction: row;
        padding: 0 0.75rem;
    }
    
    .tab {
        font-size: 0.75rem;
        padding: 0.7rem 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

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

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

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

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

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

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

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

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

.slide-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
}

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

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

.prev-slide,
.next-slide {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--white);
}

@media (max-width: 768px) {
    .magazine-slider {
        margin: 2rem auto;
    }
    
    .slide-content {
        flex-direction: column;
    }
    
    .slide-image {
        aspect-ratio: 16/9;
    }
    
    .slide-text {
        padding: 1.5rem;
    }
    
    .slide-text h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .slide-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .benefits-list li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .prev-slide,
    .next-slide {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .magazine-slider {
        margin: 1.5rem auto;
    }
    
    .slide-text {
        padding: 1.25rem;
    }
    
    .slide-text h2 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-text p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .benefits-list li {
        font-size: 0.9rem;
        gap: 0.5rem;
        margin-bottom: 0.7rem;
    }
    
    .check-icon {
        font-size: 1rem;
    }
    
    .prev-slide,
    .next-slide {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .btn-primary {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* 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 {
    position: relative;
    background-color: #000000;
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    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: 15px 20px;
}

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

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

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

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

.age-warning-banner .dismiss-btn {
    padding: 8px 16px;
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.age-warning-banner .dismiss-btn:hover {
    background-color: #f0f0f0;
}

@media (max-width: 768px) {
    .age-warning-banner {
        text-align: center;
        gap: 12px;
    }

    .age-warning-banner.show {
        padding: 12px 15px;
    }

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

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

    .age-warning-banner {
        flex-direction: column;
    }
}

main {
    flex: 1;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

/* Partnership Banner */
.partnership-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--white);
    padding: 0.6rem 1.25rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid var(--medium-gray);
}

.partnership-banner span {
    color: #555;
    font-size: 0.85rem;
    font-weight: 500;
}

.faber-logo {
    height: 20px;
    width: auto;
}

.partner-logo {
    display: flex;
    align-items: center;
}

.lotto-partner-logo {
    height: 18px;
    width: auto;
}

@media (max-width: 768px) {
    .partnership-banner {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .partnership-banner span {
        font-size: 0.8rem;
    }
    
    .faber-logo {
        height: 18px;
    }
    
    .lotto-partner-logo {
        height: 16px;
    }
}

@media (max-width: 480px) {
    .partnership-banner {
        padding: 0.4rem 0.75rem;
        gap: 0.4rem;
    }
    
    .partnership-banner span {
        font-size: 0.75rem;
    }
    
    .faber-logo {
        height: 16px;
    }
    
    .lotto-partner-logo {
        height: 14px;
    }
} 