/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow-x: hidden;
}

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

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.age-modal-header {
    margin-bottom: 20px;
}

.age-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 15px;
}

.age-modal h2 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.age-modal-body p {
    margin-bottom: 15px;
    color: #555;
}

.age-warning {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 10px;
    border-radius: 10px;
    margin: 15px 0;
}

.btn-age-confirm {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-age-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #3498db;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Header */
.header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Burger Menu */
.burger-checkbox {
    display: none;
}

.burger-label {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
}

.burger-label span {
    display: block;
    width: 100%;
    height: 3px;
    background: #2c3e50;
    border-radius: 3px;
    position: absolute;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.burger-label span:nth-child(1) {
    top: 0;
}

.burger-label span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.burger-label span:nth-child(3) {
    bottom: 0;
}

.burger-checkbox:checked ~ .burger-label span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    margin-top: -1.5px;
}

.burger-checkbox:checked ~ .burger-label span:nth-child(2) {
    transform: scale(0);
}

.burger-checkbox:checked ~ .burger-label span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
    margin-bottom: -1.5px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.92) 0%, rgba(118, 75, 162, 0.94) 100%), 
                url("images/Casino Category Overview Image.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.badge-item i {
    color: #f39c12;
}

.hero-description p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    max-width: 100%;
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

/* Placeholder */
.placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #6c757d;
    font-size: 1.1rem;
    border: 2px dashed #dee2e6;
}

.placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.7;
}

/* Offers Section */
.offers {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 249, 255, 0.98) 100%),
                url("images/Slots Category Card Image.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.offers h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #2c3e50;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.offer-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.top-offer {
    border-color: #e74c3c;
    position: relative;
    overflow: hidden;
}

.top-offer::before {
    content: "TOP";
    position: absolute;
    top: 15px;
    right: -30px;
    background: #e74c3c;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.offer-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.offer-header h3 {
    color: #2c3e50;
    font-size: 1.3rem;
}

.offer-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
}

.offer-logo-link--dark {
    padding: 11px 24px;
    border-radius: 999px;
    background: radial-gradient(circle at 0 0, #2c3e50 0%, #000814 60%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.offer-logo {
    height: 52px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.offer-logo--bwin {
    height: 44px;
    max-width: 150px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
}

.rating i {
    color: #f39c12;
}

.rating span {
    margin-left: 5px;
    font-weight: 600;
    color: #2c3e50;
}

.offer-bonus {
    text-align: center;
    margin-bottom: 25px;
}

.bonus-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    line-height: 1;
}

.bonus-text {
    display: block;
    font-size: 1rem;
    color: #7f8c8d;
    margin-top: 5px;
}

.offer-features {
    margin-bottom: 25px;
}

.offer-features ul {
    list-style: none;
}

.offer-features li {
    padding: 5px 0;
    color: #555;
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: center;
}

.payment-methods i {
    font-size: 1.8rem;
    color: #3498db;
}

.btn-offer {
    width: 100%;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

/* Responsible Gaming */
.responsible {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(248, 249, 255, 0.96) 0%, rgba(232, 244, 248, 0.98) 100%),
                url("images/Table Games Category Visual.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.responsible h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #2c3e50;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.checklist-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.checklist-item i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.checklist-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.checklist-item p {
    color: #555;
    line-height: 1.6;
}

/* Safety Section */
.safety {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 249, 255, 0.98) 100%),
                url("images/Live Casino Games Image.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.safety h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #2c3e50;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.safety-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.safety-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.safety-item i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
}

.safety-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.safety-item p {
    color: #555;
    line-height: 1.6;
}

/* Bonus Analysis */
.bonuses {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4f8 100%);
}

.bonuses h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #2c3e50;
}

.bonus-analysis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.analysis-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.analysis-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.analysis-item i {
    font-size: 2rem;
    color: #9b59b6;
    margin-bottom: 10px;
}

.analysis-item h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.analysis-item p {
    color: #555;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #2c3e50;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* Disclaimer */
.disclaimer {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4f8 100%);
}

.disclaimer h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #2c3e50;
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.disclaimer-content p {
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.banner-item {
    aspect-ratio: 16/9;
}

.banner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #101319;
    border-radius: 12px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.banner-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    background: #151924;
}

.banner-link-static {
    cursor: default;
    box-shadow: none;
}

.banner-link-static:hover {
    transform: none;
    box-shadow: none;
    background: #101319;
}

.banner-logo {
    max-width: 100%;
    max-height: 70%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.banner-logo--no-filter {
    filter: none;
}

.banner-placeholder {
    height: 100%;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
}

.legal-info h3 {
    margin-bottom: 20px;
    color: #ecf0f1;
}

.legal-info p {
    color: #bdc3c7;
    line-height: 1.7;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    margin-bottom: 5px;
    color: #bdc3c7;
}

/* Legal Pages */
.legal-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4f8 100%);
    padding: 60px 0;
}

.legal-page h1 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2.5rem;
    text-align: center;
}

.legal-page h2 {
    color: #34495e;
    margin: 40px 0 20px 0;
    font-size: 1.8rem;
}

.legal-page h3 {
    color: #34495e;
    margin: 25px 0 15px 0;
    font-size: 1.3rem;
}

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.legal-page ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.legal-page li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

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

.back-link {
    margin-top: 50px;
    text-align: center;
}

.back-link a {
    display: inline-block;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-link a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
    text-decoration: none;
}

.emergency-box,
.warning-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #f39c12;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.emergency-box h3,
.warning-box h3 {
    color: #d68910;
    margin-bottom: 15px;
}

.emergency-box p,
.warning-box p {
    color: #8b4513;
    margin-bottom: 0;
}

/* Legal Pages */
.legal-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4f8 100%);
    padding: 60px 0;
}

.legal-page h1 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2.5rem;
    text-align: center;
}

.legal-page h2 {
    color: #34495e;
    margin: 40px 0 20px 0;
    font-size: 1.8rem;
}

.legal-page h3 {
    color: #34495e;
    margin: 25px 0 15px 0;
    font-size: 1.3rem;
}

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.legal-page ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.legal-page li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

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

.back-link {
    margin-top: 50px;
    text-align: center;
}

.back-link a {
    display: inline-block;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-link a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
    text-decoration: none;
}

.emergency-box,
.warning-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #f39c12;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.emergency-box h3,
.warning-box h3 {
    color: #d68910;
    margin-bottom: 15px;
}

.emergency-box p,
.warning-box p {
    color: #8b4513;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile optimizations */
    .container {
        padding: 0 15px;
    }
    
    /* Remove section padding on mobile */
    .hero,
    .offers,
    .responsible,
    .safety,
    .bonuses,
    .faq,
    .disclaimer {
        padding: 40px 0;
    }
    
    /* Reduce margins and font sizes */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .badge-item {
        width: 100%;
        justify-content: center;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offer-card {
        padding: 20px;
    }
    
    .checklist-grid,
    .safety-grid,
    .bonus-analysis {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .checklist-item,
    .safety-item,
    .analysis-item {
        padding: 20px;
    }
    
    .banner-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .banner-item {
        flex: 0 1 calc(50% - 15px);
        max-width: 200px;
    }
    
    /* Reduce section title sizes */
    .offers h2,
    .responsible h2,
    .safety h2,
    .bonuses h2,
    .faq h2,
    .disclaimer h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Burger menu */
    .burger-label {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1000;
        overflow-y: auto;
        padding-top: 80px;
    }
    
    .burger-checkbox:checked ~ .nav {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #ecf0f1;
        border-radius: 0;
    }
    
    .nav-link:hover {
        background: #f8f9fa;
        color: #e74c3c;
    }
    
    /* Cookie banner mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    /* Age modal mobile */
    .age-modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .bonus-amount {
        font-size: 2rem;
    }
    
    .offer-header h3 {
        font-size: 1.1rem;
    }
    
    .banner-grid {
        justify-content: center;
    }
    
    .banner-item {
        flex: 0 1 70%;
        max-width: 240px;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .checklist-grid,
    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonus-analysis {
        grid-template-columns: repeat(2, 1fr);
    }
}