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

:root {
    /* Цветовая схема Helicopter X (новая палитра) */
    --primary-blue: #4e6ac6;           /* Основной синий - акцент */
    --primary-green: #5fe761;          /* Яркий зелёный - множители */
    --accent-yellow: #ffc800;          /* Золотой жёлтый - кнопки */
    --light-blue: #7a91d9;             /* Светлый синий - градиенты */
    --dark-navy: #0A1628;              /* Тёмно-синий - основной фон */
    --darker-navy: #050D1A;            /* Почти чёрный - более тёмный фон */
    --card-dark: #1A2332;              /* Тёмно-синий для карточек */
    
    /* Фоновые цвета */
    --dark-bg: #0D1520;                /* Основной тёмный фон */
    --darker-bg: #050D1A;              /* Ещё темнее для контраста */
    --card-bg: #1A2332;                /* Карточки */
    --sidebar-bg: #0F1823;             /* Сайдбар */
    
    /* Текстовые цвета */
    --text-primary: #FFFFFF;           /* Белый для основного текста */
    --text-secondary: #A0AEC0;         /* Серо-голубой для вторичного текста */
    --text-muted: #718096;             /* Приглушённый серый */
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    display: flex;
    margin: 0;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

p, i, b, a, h1, h2, h3, h4, h5, h6, ul, ol {
    color: var(--text-primary);
    font-family: "Inter", sans-serif;
}

h1 {
    margin-top: 0;
    font-weight: 900;
    font-size: 42px;
    line-height: 1.2;
    font-family: "Orbitron", sans-serif;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 20px;
}

h2 {
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
    font-family: "Orbitron", sans-serif;
    color: var(--primary-green);
}

h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 22px;
    }
    h3 {
        margin-top: 15px;
    }
}

/* TikTok Video Container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 325px;
    margin: 20px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(95, 231, 97, 0.2);
    border: 1px solid rgba(95, 231, 97, 0.3);
}

.video-container iframe {
    width: 100% !important;
    height: 739px !important;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
    }
    
    .video-container iframe {
        height: 600px !important;
    }
}

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

.video-grid .video-container {
    margin: 0;
}

.table-wrapper {
    overflow-x: auto;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(95, 231, 97, 0.4), transparent);
    margin: 34px 0;
}

/* Sidebar Navigation */
.sidebar {
    overflow-y: auto;
    z-index: 100;
    padding: 20px 20px 10px 20px;
    position: fixed;
    background-color: var(--sidebar-bg);
    height: 100%;
    width: 240px;
    border-right: 1px solid rgba(95, 231, 97, 0.2);
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    .sidebar {
        height: auto;
        border-right: none;
        width: 100%;
        border-bottom: 1px solid rgba(95, 231, 97, 0.2);
    }
}

.sidebar::-webkit-scrollbar {
    width: 0;
}

.sidebar .sidebar-header {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 30px; */
    margin-bottom: 5px;
    gap: 15px;
}

.sidebar .logotype {
    width: 120px;
    height: auto;
}

@media (max-width: 768px) {
    .sidebar .logotype {
        height: auto;
        width: 90px;
    }
}

.sidebar .burger-menu {
    display: none;
    cursor: pointer;
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .sidebar .burger-menu {
        display: block;
    }
}

.sidebar .block-menu {
    display: block;
}

@media (max-width: 768px) {
    .sidebar .block-menu {
        display: none;
        position: fixed;
        width: 100%;
        /* top: 75px; */
        top: 125px;
        left: 0;
        right: 0;
        z-index: 300;
        background-color: var(--sidebar-bg);
        padding: 20px;
        max-height: 80vh;
        overflow-y: auto;
        border-bottom: 1px solid rgba(95, 231, 97, 0.2);
    }
    
    .sidebar .block-menu.active {
        display: block;
    }
}

.sidebar .menu {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.sidebar .menu li {
    margin-bottom: 8px;
}

.sidebar .menu li a {
    text-decoration: none;
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-secondary);
}

.sidebar .menu li a:hover,
.sidebar .menu li a.active {
    background-color: rgba(95, 231, 97, 0.1);
    color: var(--primary-green);
    box-shadow: 0 0 15px rgba(95, 231, 97, 0.2);
}

.sidebar .download {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 8px;
    border: 2px solid var(--primary-green);
    background: linear-gradient(135deg, rgba(95, 231, 97, 0.2) 0%, rgba(78, 106, 198, 0.1) 100%);
    margin-bottom: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(95, 231, 97, 0.2);
}

.sidebar .download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(95, 231, 97, 0.4);
    background: linear-gradient(135deg, rgba(95, 231, 97, 0.3) 0%, rgba(78, 106, 198, 0.2) 100%);
}

.sidebar .download .text {
    flex: 1;
    margin: 0 12px;
}

.sidebar .download .text span {
    font-size: 11px;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 2px;
}

.sidebar .download .text p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--primary-green);
}

.sidebar .auth {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.sidebar .auth a {
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sidebar .auth .login {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.sidebar .auth .login:hover {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 0 20px rgba(78, 106, 198, 0.5);
}

.sidebar .auth .reg {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #ffda44 100%);
    color: var(--dark-navy);
    box-shadow: 0 4px 15px rgba(255, 200, 0, 0.4);
    font-weight: 700;
}

.sidebar .auth .reg:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 200, 0, 0.6);
}

.sidebar .auth-mobile {
    display: none;
}

@media (max-width: 768px) {
    .sidebar .auth {
        display: none;
    }
    
    .sidebar .auth-mobile {
        display: flex;
        gap: 10px;
    }
    
    .sidebar .auth-mobile a {
        text-decoration: none;
        padding: 10px;
        border-radius: 8px;
        width: 100%;
        text-align: center;
        font-weight: 600;
        font-size: 14px;
    }
    
    .sidebar .auth-mobile .login {
        border: 2px solid var(--primary-blue);
        color: var(--primary-blue);
    }
    
    .sidebar .auth-mobile .reg {
        background: linear-gradient(135deg, var(--accent-yellow) 0%, #ffda44 100%);
        color: var(--dark-navy);
    }
}

/* Main Content */
.content {
    width: calc(100% - 240px);
    margin-left: 240px;
    position: relative;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .content {
        width: 100%;
        margin-left: 0;
        margin-top: 75px;
    }
}

.container {
    position: relative;
    padding: 40px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
}

/* Hero Slides */
.slides {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    padding: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .slides {
        grid-template-columns: 1fr;
        padding: 20px 30px;
    }
}

@media (max-width: 768px) {
    .slides {
        padding: 20px 15px;
    }
}

.slide-first,
.slide-second {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(95, 231, 97, 0.2);
    border: 1px solid rgba(95, 231, 97, 0.3);
}

.slide-first:hover,
.slide-second:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(95, 231, 97, 0.4);
}

.slide-first a,
.slide-second a {
    display: block;
    text-decoration: none;
}

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

.slide-first {
    max-height: 300px;
    position: relative;
}

.slide-first .text {
    position: absolute;
    bottom: 80px;
    left: 30px;
    font-family: "Orbitron", sans-serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

@media (max-width: 768px) {
    .slide-first .text {
        font-size: 20px;
        left: 20px;
        line-height: 1.3;
        top: unset;
    }
}

.slide-first .button {
    position: absolute;
    bottom: 25px;
    left: 30px;
    font-family: "Orbitron", sans-serif;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #ffda44 100%);
    color: var(--dark-navy);
    padding: 12px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 200, 0, 0.6);
    margin: 0;
}

@media (max-width: 768px) {
    .slide-first .button {
        font-size: 16px;
        padding: 10px 20px;
        left: 20px;
    }
}

.slide-second {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--darker-navy) 100%);
    min-height: 300px;
    max-height: 300px;
    position: relative;
}

@media (max-width: 1024px) {
    .slide-second {
        display: none;
    }
}

.slide-second .text {
    position: absolute;
    top: 40px;
    left: 30px;
    font-family: "Orbitron", sans-serif;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--primary-green);
    margin: 0;
}

.slide-second .num {
    position: absolute;
    top: 80px;
    left: 30px;
    font-family: "Orbitron", sans-serif;
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #ffda44 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.slide-second .buttons {
    position: absolute;
    bottom: 25px;
    left: 30px;
    right: 30px;
    display: flex;
    gap: 12px;
}

.slide-second .button {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    margin: 0;
}

.slide-second .button-yellow {
    background: var(--accent-yellow);
    color: var(--dark-navy);
}

.slide-second .button-green {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
}

.slide-second .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(95, 231, 97, 0.4);
}

/* Content Box */
.box {
    width: 100%;
    padding: 30px;
    border-radius: 16px;
    background: var(--card-bg);
    margin-bottom: 30px;
    border: 1px solid rgba(95, 231, 97, 0.2);
    box-shadow: 0 2px 8px rgba(95, 231, 97, 0.1);
}

.box p {
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.box ul,
.box ol {
    margin: 20px 0;
    padding-left: 25px;
}

.box li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* .box img {
    width: 100%;
    border-radius: 12px;
    margin: 20px 0;
} */

/* Article Image */
.article-image {
    display: block;
    max-width: 600px;
    width: 100%;
    margin: 20px auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(95, 231, 97, 0.2);
    border: 1px solid rgba(95, 231, 97, 0.3);
}

@media (max-width: 768px) {
    .article-image {
        max-width: 100%;
        margin: 20px 0;
    }
}

/* Blockquote */
blockquote {
    margin: 25px 0;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(78, 106, 198, 0.1) 0%, rgba(95, 231, 97, 0.05) 100%);
    border-left: 4px solid var(--primary-green);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(95, 231, 97, 0.1);
}

blockquote strong {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-green);
    font-family: "Orbitron", sans-serif;
}

blockquote em {
    display: block;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-secondary);
}

blockquote em strong {
    display: inline;
    font-weight: 600;
    color: var(--text-primary);
    font-family: "Inter", sans-serif;
    font-size: inherit;
    margin: 0;
}

blockquote p {
    margin: 0;
}

blockquote p strong {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-green);
    font-family: "Orbitron", sans-serif;
}

blockquote p em {
    display: block;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* Spoiler/Accordion */
.spoiler-list {
    background-color: rgba(78, 106, 198, 0.08);
    border-radius: 8px;
    margin-bottom: 24px;
    border: 1px solid rgba(78, 106, 198, 0.2);
}

.spoiler-list .spoiler-btn {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

.spoiler-list .spoiler-btn p {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
}

.spoiler-list .spoiler-btn .arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.spoiler-list .spoiler-btn .arrow.open {
    transform: rotate(180deg);
}

.spoiler-list .spoiler-list-content {
    display: none;
}

.spoiler-list .spoiler-list-content.show {
    display: block;
}

.spoiler-list .spoiler-list-content ol {
    padding-left: 28px;
    padding-bottom: 10px;
    margin-top: 4px;
}

.spoiler-list .spoiler-list-content li {
    margin-bottom: 10px;
}

.spoiler-list .spoiler-list-content li a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.spoiler-list .spoiler-list-content li a:hover {
    color: var(--primary-green);
}

/* Table */
.table-responsive {
    overflow-x: auto;
    margin: 30px 0;
}

table {
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
    box-shadow: 0 2px 8px rgba(95, 231, 97, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

table th,
table td {
    padding: 16px;
    text-align: left;
}

table thead tr {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
}

table thead tr th {
    font-weight: 700;
    color: white;
    font-family: "Orbitron", sans-serif;
}

table thead tr th:first-child {
    border-radius: 8px 0 0 0;
}

table thead tr th:last-child {
    border-radius: 0 8px 0 0;
}

table tbody tr {
    background: var(--card-bg);
}

table tbody tr:nth-child(even) {
    background: rgba(78, 106, 198, 0.05);
}

table tbody tr td {
    border-top: 1px solid rgba(95, 231, 97, 0.1);
}

table tbody tr td:first-child {
    font-weight: 600;
    color: var(--primary-green);
}

table tbody tr td:not(:first-child) {
    color: var(--text-secondary);
}

/* Bonus Section */
.bonus {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(78, 106, 198, 0.5);
}

@media (max-width: 768px) {
    .bonus {
        padding: 30px 20px;
    }
}

.bonus::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.bonus .text {
    color: white;
    font-family: "Orbitron", sans-serif;
    font-weight: 900;
    font-size: 18px;
    margin: 0 0 10px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.bonus .text-heading {
    color: white;
    font-family: "Orbitron", sans-serif;
    font-weight: 900;
    font-size: 42px;
    margin: 0 0 30px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .bonus .text-heading {
        font-size: 28px;
    }
}

.bonus .actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

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

.bonus .actions .promo-code {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    background: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 20px;
    font-family: "Orbitron", sans-serif;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .bonus .actions .promo-code {
        width: 100%;
    }
}

.bonus .actions .promo-code:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.bonus .actions .btn {
    padding: 16px 40px;
    background: var(--accent-yellow);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    font-family: "Orbitron", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: var(--dark-navy);
    box-shadow: 0 4px 15px rgba(255, 200, 0, 0.5);
}

@media (max-width: 768px) {
    .bonus .actions .btn {
        width: 100%;
        text-align: center;
    }
}

.bonus .actions .btn:hover {
    background: #ffda44;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 200, 0, 0.7);
}

/* FAQ */
.faq {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .faq {
        grid-template-columns: 1fr;
    }
}

.faq .faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(78, 106, 198, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(78, 106, 198, 0.1);
}

.faq .faq-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(78, 106, 198, 0.3);
}

.faq .faq-item h3 {
    cursor: pointer;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    background: rgba(78, 106, 198, 0.08);
    transition: background 0.3s ease;
}

.faq .faq-item h3:hover {
    background: rgba(78, 106, 198, 0.15);
}

.faq .faq-item h3::after {
    content: '+';
    font-size: 24px;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq .faq-item.show h3::after {
    content: '−';
    transform: rotate(180deg);
}

.faq .faq-item .faq-item-content {
    display: none;
    padding: 20px;
}

.faq .faq-item .faq-item-content.show {
    display: block;
}

.faq .faq-item .faq-item-content p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--sidebar-bg);
    padding: 60px 40px 30px;
    border-radius: 20px 20px 0 0;
    margin-top: 60px;
    border-top: 1px solid rgba(78, 106, 198, 0.2);
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }
}

.footer .currency {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.footer .currency img {
    height: 30px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer .currency img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(78, 106, 198, 0.2);
}

@media (max-width: 768px) {
    .footer .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

.footer .footer-bottom .links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 768px) {
    .footer .footer-bottom .links {
        justify-content: center;
    }
}

.footer .footer-bottom .links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer .footer-bottom .links a:hover {
    color: var(--primary-green);
}

.footer .logos {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .footer .logos {
        justify-content: center;
    }
}

.footer .logos img {
    height: 25px;
    width: auto;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.footer .logos img:hover {
    opacity: 1;
}

.footer-copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 30px;
}

/* Cookies Banner */
.cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--card-bg);
    border-top: 2px solid var(--primary-green);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 -5px 30px rgba(95, 231, 97, 0.3);
}

@media (max-width: 768px) {
    .cookies {
        flex-direction: column;
        text-align: center;
    }
}

.cookies .cookies-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.cookies .cookies-block img {
    width: 50px;
    height: 50px;
}

.cookies .cookies-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.cookies .cookies-links .btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookies .cookies-links .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(95, 231, 97, 0.5);
}

/* Download App Button */
.download-app {
    display: none;
}

@media (max-width: 768px) {
    .download-app {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: var(--card-bg);
        border-top: 1px solid rgba(95, 231, 97, 0.2);
        padding: 15px;
        display: block;
    }
    
    .download-app a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px;
        background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 700;
        font-size: 14px;
        text-transform: uppercase;
        box-shadow: 0 4px 15px rgba(95, 231, 97, 0.4);
    }
    
    .download-app a img {
        margin-right: 10px;
        width: 20px;
        height: 20px;
    }
    
    .download-app a span {
        font-size: 10px;
        opacity: 0.9;
        margin-left: 10px;
        color: white;
    }
}

/* Utility Classes */
.mb-0 { margin-bottom: 0 !important; }
.mb-16 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 1rem; }
.w-100 { width: 100%; }
.text-center { text-align: center; }
.hidden { display: none; }

.list-group {
    padding-left: 0;
    margin-bottom: 20px;
}

.list-group-flush .list-group-item {
    border: 0;
    padding: 12px 0;
}

.list-group-item {
    list-style: none;
    color: var(--text-secondary);
    line-height: 1.7;
}

.reviews-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.reviews-list li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.reviews-list li strong {
    font-weight: 700;
    color: var(--text-primary);
}

.reviews-list li em {
    font-style: normal;
    font-weight: 400;
    color: var(--text-secondary);
}
