/* ================= БАЗОВЫЕ НАСТРОЙКИ ================= */
:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333;
    --bg-light: #f9f9f9;
    --green-text: #27ae60;
    --footer-bg: #151a22;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #f4f7f6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= ХЕДЕР И НАВИГАЦИЯ ================= */
header {
    background-color: #2c3e50;
    color: white;
    padding: 8px 0; /* БЫЛО 15px 0. Уменьшили отступы сверху и снизу */
    position: sticky;
    top: 0;
    z-index: 9999;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px; /* БЫЛО 70px. Сделали саму полоску тоньше */
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px; /* БЫЛО 24px. Чуть уменьшили логотип, чтобы он влез в тонкий хедер */
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.gift-icon {
    color: #f1c40f !important;
    font-size: 20px;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
}

/* ================= HERO БЛОК (PREMIUM) ================= */
.hero {
    background-color: #2c3e50; 
    /* Делаем градиент затемнения чуть глубже к низу */
    background-image: linear-gradient(rgba(30, 43, 56, 0.7), rgba(20, 30, 40, 0.95)), url('/img/hero-mobile.avif');
    background-position: center;
    background-size: cover;
    color: white;
    padding: 130px 20px 100px;
    text-align: center;
    min-height: 400px;
}

@media (min-width: 768px) {
    .hero {
        background-image: linear-gradient(rgba(30, 43, 56, 0.7), rgba(20, 30, 40, 0.95)), url('/img/hero.avif');
    }
}

.hero h1 {
    background: linear-gradient(to right, #f1c40f, #f39c12);
    -webkit-background-clip: text;
    background-clip: text; /* Добавили стандартное свойство для линтера */
    -webkit-text-fill-color: transparent;
    font-size: 52px;
    margin-bottom: 20px;
    letter-spacing: -1px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)); /* Убрали px у нуля */
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #e0e6ed; /* Чуть приглушенный белый для дороговизны */
    font-weight: 400;
    line-height: 1.8;
}

/* ================= КОНТЕНТ ================= */
.content-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

/* Отступы для обычных абзацев */
.content-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.content-block h1 { font-size: 36px; border-bottom: 2px solid var(--accent-color); padding-bottom: 10px; }
.content-block h2 { font-size: 30px; margin-top: 40px; }
.content-block h3 { font-size: 24px; margin-top: 30px; }
.content-block h4 { font-size: 20px; margin-top: 20px; }

/* ================= КРАСИВЫЕ СПИСКИ В ТЕКСТЕ ================= */
.content-block ul,
.content-block ol {
    margin: 20px 0 20px 20px;
    padding-left: 20px;
}

.content-block li {
    margin-bottom: 15px;
    padding-left: 10px;
    line-height: 1.6;
}

.content-block ol li::marker {
    color: var(--primary-color);
    font-weight: 700;
}

.content-block ul li::marker {
    color: var(--accent-color);
    font-size: 1.2em;
}

/* ================= КРАСИВЫЕ ТАБЛИЦЫ ================= */
.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;   
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
}

.content-block table td p,
.content-block table th p,
.content-block table td strong,
.content-block table th strong {
    margin: 0 !important;
    padding: 0 !important;
    background-color: transparent !important;
}

.content-block table th,
.content-block table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid #eaeaea; 
    color: #444;
    font-size: 15px;
}

.content-block table thead tr,
.content-block table tbody tr:first-child {
    background-color: #2c3e50 !important; 
}

.content-block table thead tr th,
.content-block table tbody tr:first-child td,
.content-block table tbody tr:first-child td p,
.content-block table tbody tr:first-child td strong {
    color: #ffffff !important; 
    font-weight: 700;
    border-bottom: none;
}

@media (min-width: 768px) {
    .content-block table tbody tr:not(:first-child):hover {
        background-color: #f8f9fa;
        transition: background-color 0.2s ease;
    }
}

@media (max-width: 768px) {
    .content-block table {
        display: block;
        overflow-x: auto;
        white-space: nowrap; 
    }
}

/* ================= БЛОК ПЛЮСОВ И МИНУСОВ (PREMIUM UPGRADE) ================= */
.pros-cons-wrapper {
    display: flex;
    gap: 30px;
    margin: 50px 0;
}

/* Оформление карточек с эффектом парения */
.pros-box, .cons-box {
    flex: 1;
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden; /* Важно, чтобы верхняя полоска не вылезала за скругления */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pros-box:hover, .cons-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* Красивая градиентная полоска по верхнему краю карточек */
.pros-box::before {
    content: ''; 
    position: absolute; 
    top: 0; left: 0; right: 0; height: 5px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
}
.cons-box::before {
    content: ''; 
    position: absolute; 
    top: 0; left: 0; right: 0; height: 5px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

/* Заголовки карточек */
.pros-box h3 { 
    color: #27ae60; 
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 15px;
}
.cons-box h3 { 
    color: #e74c3c; 
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 15px;
}

/* Вводный текст перед списком */
.pros-box p, .cons-box p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 15px;
}

/* Настройки списка */
.pros-list, .cons-list {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}

.pros-list li::marker, .cons-list li::marker {
    content: none;
}

/* Выравнивание текста и иконок */
.pros-list li, .cons-list li {
    margin-bottom: 20px; 
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-left: 0;
    color: #333;
    line-height: 1.6;
    font-weight: 600; /* Делаем текст плюсов/минусов чуть более акцентным */
}

/* ПРЕМИУМ-ИКОНКИ (В кружочках с фоном) */
.pros-list li i, .cons-list li i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%; /* Идеальный круг */
    font-size: 14px;
    flex-shrink: 0; 
    margin-top: -2px; /* Идеальное выравнивание по первой строке текста */
}

/* Зеленые иконки с нежным фоном */
.pros-list li i { 
    background-color: rgba(39, 174, 96, 0.12);
    color: #27ae60; 
}

/* Красные иконки с нежным фоном */
.cons-list li i { 
    background-color: rgba(231, 76, 60, 0.12);
    color: #e74c3c; 
}

/* Адаптивность для телефонов */
@media (max-width: 768px) {
    .pros-cons-wrapper {
        flex-direction: column;
        gap: 25px;
    }
    .pros-box, .cons-box {
        padding: 30px 25px;
    }
}

/* ================= ФУТЕР ================= */
footer {
    background: linear-gradient(rgba(21, 26, 34, 0.95), rgba(21, 26, 34, 0.95)), url('/img/hero.avif') center/cover;
    color: #a0a5b0;
    padding: 40px 20px 20px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    border-top: 3px solid #333;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}

.responsible-text {
    color: #00d040;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.footer-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    color: white;
}

.badge-18 {
    border: 2px solid white;
    border-radius: 8px;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 18px;
}

.badge-gamcare, .badge-gambleaware {
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-gamcare span {
    background: #5b2c86;
    color: white;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 18px;
}

.badge-gambleaware span {
    color: #ff5722;
}

.help-link {
    color: white;
    text-decoration: underline;
}

.phone-contact {
    font-weight: bold;
    font-size: 18px;
}

.footer-contact-email {
    color: white;
    font-size: 16px;
    margin-bottom: 30px;
}

.footer-disclaimer {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #888;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 13px;
}

.footer-bottom a {
    color: #a0a5b0;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

/* ================= АДАПТИВНОСТЬ ================= */
@media (max-width: 768px) {
    .hamburger { display: block; }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 20px 0;
    }

    .nav-menu.active { display: flex; }
    .nav-menu li { margin: 15px 0; text-align: center; }
    
    .pros-cons-wrapper { flex-direction: column; }
    .footer-nav { flex-direction: column; gap: 20px; text-align: center; }
    .footer-badges { flex-direction: column; text-align: center; }

    /* Сжимаем огромные отступы и убираем минимальную высоту для героя */
    .hero {
        padding: 40px 15px 30px;
        min-height: auto;
    }

    /* Уменьшаем гигантский заголовок для мобилок */
    .hero h1 {
        font-size: 32px;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    /* Делаем подзаголовок аккуратнее */
    .hero p {
        font-size: 16px;
        line-height: 1.5;
    }
}

/* ================= FAQ АККОРДЕОН ================= */
.faq-section {
    margin-top: 60px;
    text-align: left; 
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.faq-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    background-color: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease;
    
    /* Убиваем странную зеленую/серую подсветку при клике с телефона */
    -webkit-tap-highlight-color: transparent; 
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question i {
    color: var(--accent-color);
    transition: transform 0.3s ease; 
}

.faq-item.active .faq-question {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg); 
}

/* ИСПРАВЛЕНО: Теперь отступы есть со всех сторон, текст не липнет к краям */
.faq-answer {
    display: none;
    padding: 20px; 
    color: #444;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ================= НАСТРОЙКА КОНТЕЙНЕРА КАРТОЧЕК ================= */
.cols__top {
    list-style: none;
    padding: 0;
    /* Увеличили отступ снизу до 60px, чтобы оттолкнуть текст статьи от последней карточки */
    margin: 40px 0 60px 0; 
    display: flex;
    flex-direction: column;
}

/* ================= САМИ КАРТОЧКИ ================= */
.top-card {
    margin-bottom: 25px; /* <--- ИМЕННО ЭТО РАЗЛЕПИТ КАРТОЧКИ */
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02), 0 10px 25px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Чтобы после самой последней карточки не было лишней пустой дыры */
.top-card:last-child {
    margin-bottom: 0;
}

/* Золотая карточка ТОП-1 */
.top-card--top {
    border: 2px solid #f1c40f; 
    background: linear-gradient(145deg, #ffffff 0%, #fffcf0 100%);
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.15); /* Золотистое свечение */
}

.top-card--top:hover {
    box-shadow: 0 15px 40px rgba(241, 196, 15, 0.25); /* Свечение усиливается */
}

.top-card--top-three {
    border: 2px solid #3498db; /* Синяя рамка */
}

.top-card__logo {
    background: none;
    border: none;
    cursor: pointer;
    flex: 0 0 150px;
    padding: 0;
}

.top-card__logo img {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1; 
    border-radius: 8px;
    display: block;
}

.top-card__main-info {
    flex: 1;
    padding: 0 20px;
}

.top-card__name {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

/* Стилизация рейтинга (Звездочка + Текст) */
.rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    height: auto;
    width: auto;
    background: none;
}

.rating::before {
    content: "\f005"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #f1c40f; 
    font-size: 16px;
}

.rating__fill {
    display: none; 
}

.rating .visually-hidden {
    display: block; 
    font-weight: 700;
    font-size: 15px;
    color: var(--primary-color);
}

.top-card__link {
    font-size: 13px;
    color: #7f8c8d;
    text-decoration: underline;
}

.top-card__link:hover {
    color: var(--accent-color);
}

.top-card__secondary-info {
    list-style: none;
    flex: 1.5;
    padding: 0 15px;
    margin: 0;
}

.top-card__secondary-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    padding-left: 0;
}

.top-card__secondary-info li::marker {
    content: none;
}

.top-card__secondary-info i {
    color: var(--accent-color);
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.top-card__payments {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px; 
    flex: 1.5; 
    justify-content: center;
    align-items: center;
    max-width: 260px; 
    margin: 0;
    padding: 0;
}

.top-card__payments li {
    padding: 0;
    margin: 0;
}

.top-card__payments li::marker {
    content: none;
}

.top-card__payments li img {
    width: 45px;
    height: 28px;
    aspect-ratio: 45 / 28; 
    object-fit: contain;
}

.top-card__btn {
    /* Сочный градиентный фон */
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px; /* Чуть круглее */
    font-size: 15px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    /* Добавляем кнопке красное свечение */
    box-shadow: 0 6px 15px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    white-space: nowrap;
}

.top-card__btn:hover {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.5);
    transform: translateY(-2px); /* Кнопка сама тянется к мышке */
}

@media (max-width: 992px) {
    .top-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 15px;
        gap: 15px;
    }
    .top-card__logo {
        flex: 0 0 auto;
        max-width: 180px;
        margin: 0 auto;
    }
    .top-card__main-info {
        padding: 0;
    }
    .rating {
        margin: 8px auto; justify-content: center;
    }
    .top-card__secondary-info {
        padding: 0;
    }
    .top-card__secondary-info li {
        justify-content: center; 
    }
    .top-card__payments {
        max-width: 100%;
        margin-top: 10px;
    }
    .top-card__btn {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
        padding: 15px;
    }
}

/* ================= КАРТИНКИ ВНУТРИ ТЕКСТА ================= */
.content-block img {
    max-width: 100%;       
    height: auto;          
    border-radius: 8px;    
    margin: 30px auto;     
    display: block;        
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
}

/* ================= БЛОК АВТОРА ================= */
.author-box-pro {
    display: grid !important;
    grid-template-columns: 120px 1fr !important;
    gap: 30px !important; 
    align-items: start !important;
    
    background: #ffffff !important; 
    border: 1px solid #e0e4e8 !important; 
    border-radius: 16px !important; 
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04) !important; 
    padding: 30px !important; 
    margin: 40px 0 !important; 
}

.author-media-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
}

.author-media-col img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    box-shadow: none !important; 
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.author-email-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #f8f9fa !important;
    color: #333333 !important;
    border: 1px solid #e9ecef !important;
    border-radius: 30px !important;
    padding: 8px 16px !important;
    font-family: Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: 0.2s ease !important;
    box-shadow: none !important;
}

.author-email-btn:hover {
    background-color: #e2e6ea !important;
}

.author-email-btn svg {
    width: 16px !important;
    height: 16px !important;
    margin-right: 8px !important;
    fill: #ffc107 !important;
    flex-shrink: 0 !important;
}

.author-text-col h3 {
    margin: 0 0 12px 0 !important;
    color: #164e7c !important;
    font-family: inherit !important;
    font-size: 1.5em !important;
    line-height: 1.3 !important;
}

.author-text-col p {
    margin: 0 !important;
    color: #4a4a4a !important;
    line-height: 1.6 !important;
    font-size: 16px !important;
}

@media (max-width: 600px) {
    .author-box-pro {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 20px !important;
        padding: 20px !important; 
    }
    .author-media-col {
        align-items: center !important;
    }
    .author-email-btn {
        width: auto !important;
        padding: 8px 30px !important;
    }
}

/* ================= ДАТА ОБНОВЛЕНИЯ ================= */
.update-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    background: rgba(255, 255, 255, 0.08); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    
    border: 1px solid rgba(255, 255, 255, 0.15); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
    
    color: #e9ecef; 
    padding: 10px 20px;
    border-radius: 50px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    
    margin-top: 20px;
    margin-bottom: 30px;
}

.update-badge svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    fill: #ffc107; 
}

.update-badge strong {
    margin-left: 5px;
    color: #ffffff; 
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* ================= MICRO COOKIE BANNER ================= */
.cookie-micro-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #ffffff;
    border: 1px solid #e0e4e8;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 99999;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #333333;
    
    /* Анимация появления снизу */
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.cookie-micro-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-content i {
    color: #f39c12; /* Золотистый цвет для печеньки */
    font-size: 18px;
}

.cookie-content span {
    line-height: 1.4;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-content a:hover {
    color: var(--accent-color);
}

.cookie-btn {
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cookie-btn:hover {
    background-color: #c0392b;
}

/* Адаптив для телефонов */
@media (max-width: 600px) {
    .cookie-micro-banner {
        left: 15px;
        right: 15px;
        bottom: 15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 10px;
    }
}