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

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #f9d71c;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; }

p {
    margin-bottom: 1rem;
    color: #b0b0b0;
}

/* Links */
a {
    color: #f9d71c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffd700;
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, #f9d71c, #ffd700);
    color: #0a0a0a;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 215, 28, 0.3);
}

.btn-gold-small {
    background: linear-gradient(135deg, #f9d71c, #ffd700);
    color: #0a0a0a;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-gold-small:hover {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    transform: translateY(-1px);
}

/* Age Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none; /* по умолчанию скрыта, показываем через JS */
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

body.age-modal-open {
    overflow: hidden; /* блокируем прокрутку, когда модалка открыта */
}

.age-modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    border: 2px solid #f9d71c;
    box-shadow: 0 10px 30px rgba(249, 215, 28, 0.2);
}

.age-modal h2 {
    color: #f9d71c;
    margin-bottom: 20px;
}

.age-modal-buttons {
    margin: 20px 0;
}

.responsible-gaming {
    font-size: 0.9rem;
    color: #888;
    margin-top: 20px;
    font-style: italic;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid #f9d71c;
    border-radius: 8px;
    padding: 20px;
    max-width: 350px;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Header */
.header {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f9d71c;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-link {
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #f9d71c;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f9d71c;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.burger-label {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 1200; /* всегда поверх контента */
}

.burger-line {
    width: 100%;
    height: 3px;
    background: #f9d71c;
    position: absolute;
    left: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

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

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(2) {
    transform: translateY(-50%) scale(0);
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Состояние открытого меню для мобильной навигации */
body.nav-open .nav {
    transform: translateX(0);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    background: transparent;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
    transform: scale(1.03);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f9d71c, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(249, 215, 28, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(249, 215, 28, 0.3);
    min-width: 150px;
}

.highlight-item i {
    font-size: 1.5rem;
    color: #f9d71c;
}

.highlight-item span {
    color: #e0e0e0;
    font-size: 0.9rem;
    text-align: center;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b0b0b0;
}

/* Offers Section */
.offers {
    padding: 80px 0;
    background: #0f0f0f;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #f9d71c;
}

.offers-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.offer-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 215, 28, 0.1), transparent);
    transition: left 0.5s ease;
}

.offer-card:hover::before {
    left: 100%;
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: #f9d71c;
    box-shadow: 0 10px 30px rgba(249, 215, 28, 0.2);
}

.offer-header {
    margin-bottom: 1.5rem;
}

.offer-header h3 {
    color: #f9d71c;
    margin-bottom: 0.5rem;
}

.casino-logo-link {
    display: block;
    margin-bottom: 1rem;
}

.casino-logo {
    max-width: 160px;
    max-height: 60px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.rating {
    color: #f9d71c;
}

.offer-bonus {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(249, 215, 28, 0.1);
    border-radius: 8px;
}

.bonus-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #f9d71c;
}

.bonus-text {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.offer-features {
    text-align: left;
    margin: 1.5rem 0;
}

.offer-features p {
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    font-size: 1.5rem;
    color: #f9d71c;
}

.offers-additional {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.offer-card-small {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.offer-card-small:hover {
    border-color: #f9d71c;
    transform: translateY(-2px);
}

.offer-header-small h4 {
    color: #f9d71c;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.offer-features-small {
    margin: 1rem 0;
    text-align: left;
    font-size: 0.9rem;
}

.offer-features-small p {
    margin-bottom: 0.35rem;
    color: #e0e0e0;
}

.rating {
    margin-bottom: 1rem;
}

.bonus-amount-small {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f9d71c;
}

.bonus-text-small {
    color: #b0b0b0;
    font-size: 0.8rem;
}

.payment-methods-small {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
    font-size: 1.2rem;
    color: #f9d71c;
}

/* Checklist Section */
.checklist {
    padding: 80px 0;
    background: #0a0a0a;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.checklist-item {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #f9d71c;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(249, 215, 28, 0.1);
}

.checklist-item i {
    color: #f9d71c;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.checklist-item h4 {
    color: #f9d71c;
    margin-bottom: 0.5rem;
}

.checklist-item p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Safety Section */
.safety {
    padding: 80px 0;
    background: #0f0f0f;
}

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

.safety-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.safety-item:hover {
    border-color: #f9d71c;
    transform: translateY(-3px);
}

.safety-item i {
    font-size: 2.5rem;
    color: #f9d71c;
    margin-bottom: 1rem;
}

.safety-item h4 {
    color: #f9d71c;
    margin-bottom: 1rem;
}

.safety-item p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Bonuses Section */
.bonuses {
    padding: 80px 0;
    background: #0a0a0a;
}

.bonus-analysis {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.bonus-info {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #f9d71c;
}

.bonus-info h4 {
    color: #f9d71c;
    margin-bottom: 1rem;
}

.bonus-info p {
    color: #b0b0b0;
}

/* Protection Section */
.protection {
    padding: 80px 0;
    background: #0f0f0f;
}

.protection-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.protection-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 8px;
    border: 1px solid #333;
}

.protection-item i {
    font-size: 2.5rem;
    color: #f9d71c;
    margin-bottom: 1rem;
}

.protection-item h4 {
    color: #f9d71c;
    margin-bottom: 1rem;
}

.protection-item p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.faq-item {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid #f9d71c;
}

.faq-item h4 {
    color: #f9d71c;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #b0b0b0;
    line-height: 1.8;
}

/* Disclaimer Section */
.disclaimer {
    padding: 80px 0;
}

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

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

/* Global site background image */
.page-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.page-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
    transform: scale(1.05);
}

/* Секции поверх общего фона (кроме header / footer) */
.hero,
.offers,
.checklist,
.safety,
.bonuses,
.protection,
.faq,
.disclaimer,
.contact {
    background-color: rgba(0, 0, 0, 0.75);
    background-image: none;
}

/* Help / authority banners */
.banners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
    justify-items: center;
}

.banner-item {
    background: linear-gradient(135deg, #050505, #151515);
    border-radius: 10px;
    border: 1px solid #333;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 170px;
    aspect-ratio: 3 / 1; /* прямоугольные, фиксированное соотношение сторон */
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-item:hover {
    border-color: #f9d71c;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.banner-item-static {
    pointer-events: none; /* 18+ без ссылки */
}

.banner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1); /* иконки делаем белыми */
}

.banner-logo-no-filter {
    filter: none; /* 18+ остаётся в оригинальных цветах */
}

/* Placeholder images for 16:9 ratio */
.placeholder-16-9 {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    aspect-ratio: 16/9;
    border-radius: 8px;
    border: 2px dashed #f9d71c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9d71c;
    font-weight: 600;
    margin: 1rem 0;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #0a0a0a;
    text-align: center;
}

.contact-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-email {
    font-size: 1.3rem;
    color: #f9d71c;
    font-weight: 600;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 60px 0 30px;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.legal-info h3 {
    color: #f9d71c;
    margin-bottom: 1rem;
}

.legal-info p {
    color: #b0b0b0;
    line-height: 1.8;
}

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

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

.footer-links a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f9d71c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    color: #888;
}

/* Legal Pages Styles */
.legal-page {
    background: #0a0a0a;
    min-height: 100vh;
    padding: 80px 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #f9d71c;
    margin-bottom: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #ffd700;
    transform: translateX(-5px);
}

.legal-content {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #333;
}

.legal-content h2 {
    color: #f9d71c;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: #ffd700;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.2rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    background: rgba(249, 215, 28, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
}

.legal-footer p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Responsible Gaming specific styles */
.responsible-gaming-intro {
    background: rgba(249, 215, 28, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #f9d71c;
    margin-bottom: 2rem;
}

.principles-grid,
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.principle-item,
.tool-item {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
}

.principle-item:hover,
.tool-item:hover {
    border-color: #f9d71c;
    transform: translateY(-3px);
}

.principle-item i,
.tool-item i {
    font-size: 2.5rem;
    color: #f9d71c;
    margin-bottom: 1rem;
}

.warning-signs,
.help-organizations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.warning-item,
.org-item {
    background: rgba(249, 215, 28, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #f9d71c;
}

.warning-item i {
    color: #ff6b6b;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.org-item h4 {
    color: #f9d71c;
    margin-bottom: 0.5rem;
}

.self-assessment {
    background: rgba(255, 107, 107, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #ff6b6b;
    margin: 2rem 0;
}

.assessment-note {
    background: rgba(249, 215, 28, 0.2);
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    border: 1px solid #f9d71c;
}

.emergency-contact {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #f9d71c;
    text-align: center;
    margin-top: 2rem;
}

.emergency-contact h3 {
    color: #f9d71c;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger-label {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1100; /* выше, чем header */
        overflow-y: auto;
    }
    
    .burger-checkbox:checked ~ .nav {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 100px 2rem 2rem;
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        border-bottom: 1px solid #333;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-highlights {
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
        padding: 1rem 0;
    }
    
    .highlight-item {
        min-width: 120px;
        padding: 0.8rem;
    }
    
    .offers-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .offers-additional {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .safety-grid {
        grid-template-columns: 1fr; /* на мобильном по одному блоку в строке */
        gap: 1rem;
    }
    
    .protection-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .banners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .banner-item {
        max-width: 200px;
        aspect-ratio: 3 / 1;
    }
    
    /* если количество баннеров нечётное — последний по центру и не растягивается */
    .banner-item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Mobile optimizations - remove padding between sections */
    .hero,
    .offers,
    .checklist,
    .safety,
    .bonuses,
    .protection,
    .faq,
    .disclaimer,
    .contact {
        padding: 40px 0;
    }
    
    .checklist-item,
    .safety-item,
    .protection-item,
    .faq-item,
    .bonus-info {
        margin-bottom: 0.5rem;
    }
    
    .section-title {
        margin-bottom: 1.5rem;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .offer-card {
        padding: 1.5rem;
    }
    
    .offer-card-small {
        padding: 1rem;
    }
    
    .cookie-banner {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
    }
    
    .age-modal-content {
        margin: 20px;
        padding: 30px 20px;
    }
}