:root {
    /* Основные цвета */
    --color-primary: #fff;
    --color-primary-dark: #4338ca;
    --color-secondary: #7729d7;
    --color-accent: #fbbf24;

    /* Фоновые цвета */
    --bg-primary: #141824;
    --bg-secondary: #241f2b;
    --bg-dark: #0D121D;
    --bg-card: #1e293b;
    --bg-card-hover: #334155;
    --bg-overlay: rgba(44, 49, 68, 0.35);

    /* Текстовые цвета */
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #d1d5db;
    --text-light: #9ca3af;
    --text-dark: #6b7280;
    --text-button: #fff;

    /* Границы */
    --border-primary: #1e293b;
    --border-secondary: #374151;
    --border-card: #475569;
    --border-overlay: rgba(71, 85, 105, 0.3);

    /* Градиенты */
    --gradient-primary: linear-gradient(90deg, #9A32C9 0%, var(--color-secondary) 100%);
    --gradient-text: linear-gradient(135deg, var(--text-primary) 0%, #c5c5c5 100%);
    --gradient-card: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    --gradient-bg: linear-gradient(90deg, #39265a, #372235);
    --gradient-cta: linear-gradient(90deg, #161623 0%, #2E1414 102.14%);
    --gradient-benefits: linear-gradient(90deg, #1a0d2e 0%, #2d1b4e 50%, #1a0d2e 100%);

    /* Тени */
    --shadow-primary: 0 0 25px rgb(121 21 163);
    --shadow-secondary: rgba(0, 0, 0, 0.3);
    --shadow-card: rgba(0, 0, 0, 0.4);

    /* Статусные цвета */
    --status-new: #3b82f6;
    --status-jackpot: #fbbf24;
    --status-top: #10b981;
}

*, ::after, ::before {
    box-sizing: border-box;
    border-width: 0;
    margin: 0;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    margin: 0;
    padding: 0;
}

main {
    padding: 0;
    background: var(--gradient-cta);
}

.popular-slots-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.title-accent {
    width: 4px;
    height: 40px;
    background: var(--status-top);
    border-radius: 2px;
}

.all-games-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--status-top);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), gap 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: color, gap;
}

.all-games-link:hover {
    color: #fff;
    gap: 12px;
}

.all-games-link svg {
    width: 20px;
    height: 20px;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.slot-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3 / 4;
    display: flex;
    flex-direction: column;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.slot-card:hover {
    transform: translateY(-8px) translateZ(0);
}

.slot-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 360px;
    overflow: hidden;
    background: #0f0519;
    transform: translateZ(0);
    will-change: transform;
}

.slot-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0) scale(1);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.slot-card:hover .slot-image {
    transform: translateZ(0) scale(1.05);
}

/* Градиент снизу вверх */
.slot-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    transform: translateZ(0);
    will-change: opacity;
}

.slot-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    transform: translateZ(0);
}

.badge-rtp {
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transform: translateZ(0);
    will-change: transform;
}

.slot-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    z-index: 2;
    transform: translateZ(0);
    will-change: transform;
}

.slot-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateZ(0);
}

.slot-provider {
    font-size: 13px;
    color: #d1d5db;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    transform: translateZ(0);
}

/* Адаптивность */
@media (max-width: 1200px) {
    .slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .title-accent {
        height: 32px;
    }

    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .slot-title {
        font-size: 16px;
    }

    .slot-provider {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu {
    display: flex;
    position: relative;
    justify-content: flex-end;
    width: 100%;
    margin: 0 20px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-text);
    cursor: pointer;
    padding: 8px;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.menu ul li a {
    text-decoration: none;
    color: var(--color-text);
    transition: 0.3s;
    padding: 5px;
    display: block;
    border-radius: 6px;
    font-size: 13px;
}

.menu ul li a:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .menu ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        flex-direction: column;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }
    
    .menu.active ul {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        width: 100%;
        align-items: center;
        margin-top: 10px;
    }
    
    .menu ul li a {
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .menu ul li:last-child a {
        border-bottom: none;
    }
}

/* === Block Styles === */
/* Block: Header 5 (Logo + Action Icons) */
/* Header 5 - Logo + Action Icons */
.header-variant-5 {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-primary);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px var(--shadow-secondary);
}

.header-variant-5 .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-variant-5 .header-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header-variant-5 .logotype {
    flex-shrink: 0;
}

.header-variant-5 .logotype img {
    height: 50px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 10px var(--shadow-secondary));
    transition: transform 0.3s ease;
}

.header-variant-5 .logotype img:hover {
    transform: scale(1.05);
}

.header-variant-5 .header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-variant-5 .action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.header-variant-5 .action-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s ease;
    z-index: 0;
}

.header-variant-5 .action-btn svg,
.header-variant-5 .action-btn .action-label {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.header-variant-5 .action-btn:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--shadow-secondary);
}

.header-variant-5 .action-btn:hover::before {
    left: 0;
}

.header-variant-5 .action-btn:hover,
.header-variant-5 .action-btn:hover svg,
.header-variant-5 .action-btn:hover .action-label {
    color: var(--text-button);
}

.header-variant-5 .action-btn:active {
    transform: translateY(0);
}

/* Primary button */
.header-variant-5 .action-btn--primary {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-button);
    box-shadow: var(--shadow-primary);
}

.header-variant-5 .action-btn--primary svg,
.header-variant-5 .action-btn--primary .action-label {
    color: var(--text-button);
}

.header-variant-5 .action-btn--primary::before {
    background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary-dark) 100%);
}

.header-variant-5 .action-btn--primary:hover {
    box-shadow: 0 0 30px rgb(121 21 163);
}

/* Адаптивность */
@media (max-width: 768px) {
    .header-variant-5 {
        padding: 15px 0;
    }
    
    .header-variant-5 .header-flex-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .header-variant-5 .logotype img {
        height: 40px;
    }
    
    .header-variant-5 .action-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .header-variant-5 .action-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .header-variant-5 .action-label {
        display: none;
    }
    
    .header-variant-5 .action-btn {
        padding: 10px;
        width: 44px;
        height: 44px;
        justify-content: center;
    }
    
    .header-variant-5 .header-actions {
        gap: 8px;
    }
}

/* Анимация появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-variant-5 .action-btn {
    animation: fadeInUp 0.5s ease-out backwards;
}

.header-variant-5 .action-btn:nth-child(1) {
    animation-delay: 0.1s;
}

.header-variant-5 .action-btn:nth-child(2) {
    animation-delay: 0.2s;
}

/* Block: Hero 8 - Luxury VIP */
.hero8-vip {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
}

.hero8-bg-lines {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, transparent 49.5%, var(--border-primary) 49.5%, var(--border-primary) 50.5%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, var(--border-primary) 49.5%, var(--border-primary) 50.5%, transparent 50.5%);
    background-size: 100px 100px;
    opacity: 0.3;
}

.hero8-corner {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--color-accent);
    opacity: 0.4;
}

.hero8-corner-tl { top: 40px; left: 40px; border-right: none; border-bottom: none; }
.hero8-corner-tr { top: 40px; right: 40px; border-left: none; border-bottom: none; }
.hero8-corner-bl { bottom: 40px; left: 40px; border-right: none; border-top: none; }
.hero8-corner-br { bottom: 40px; right: 40px; border-left: none; border-top: none; }

.hero8-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero8-header {
    margin-bottom: 40px;
}

.hero8-vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.hero8-main {
    margin-bottom: 50px;
}

.hero8-title-wrap {
    margin-bottom: 24px;
}

.hero8-title {
    display: block;
    font-size: 56px;
    font-weight: 200;
    color: var(--text-primary);
    letter-spacing: 8px;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero8-title-line {
    width: 80px;
    height: 2px;
    background: var(--color-accent);
    margin: 24px auto 0;
}

.hero8-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.hero8-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    padding: 30px 0;
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
}

.hero8-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero8-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.hero8-feature-icon svg {
    width: 32px;
    height: 32px;
}

.hero8-feature-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 2px;
}

.hero8-feature-val {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.hero8-feature-label {
    font-size: 13px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero8-feature-divider {
    width: 1px;
    height: 50px;
    background: var(--border-secondary);
}

.hero8-offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    padding: 30px 40px;
    margin-bottom: 50px;
}

.hero8-offer-content {
    text-align: left;
}

.hero8-offer-label {
    display: block;
    font-size: 12px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.hero8-offer-value {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.hero8-offer-percent {
    font-size: 48px;
    font-weight: 200;
    color: var(--color-accent);
}

.hero8-offer-text {
    font-size: 16px;
    color: var(--text-muted);
}

.hero8-offer-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--color-accent);
    color: var(--bg-dark);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero8-offer-btn:hover {
    background: var(--text-primary);
    transform: translateX(5px);
}

.hero8-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero8-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 13px;
}

.hero8-trust svg {
    color: var(--status-top);
}

@media (max-width: 900px) {
    .hero8-features {
        flex-direction: column;
        gap: 24px;
    }
    
    .hero8-feature-divider {
        width: 60px;
        height: 1px;
    }
    
    .hero8-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .hero8-feature-text {
        text-align: center;
    }
    
    .hero8-offer {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding: 30px 20px;
    }
    
    .hero8-offer-content {
        text-align: center;
    }
    
    .hero8-offer-value {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero8-vip {
        padding: 60px 20px;
    }
    
    .hero8-corner {
        width: 50px;
        height: 50px;
    }
    
    .hero8-corner-tl, .hero8-corner-tr { top: 20px; }
    .hero8-corner-bl, .hero8-corner-br { bottom: 20px; }
    .hero8-corner-tl, .hero8-corner-bl { left: 20px; }
    .hero8-corner-tr, .hero8-corner-br { right: 20px; }
    
    .hero8-title {
        font-size: 36px;
        letter-spacing: 4px;
    }
    
    .hero8-vip-badge {
        padding: 12px 24px;
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .hero8-desc {
        font-size: 16px;
    }
    
    .hero8-offer-percent {
        font-size: 36px;
    }
    
    .hero8-footer {
        gap: 20px;
    }
    
    .hero8-trust {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero8-title {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .hero8-offer-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
}

/* Block: SEO Text 2 (Simple Box) */
/* SEO Text 2 - Simple Box */
.seo-simple-box {
    padding: 60px 0;
    background: var(--bg-primary);
}

.seo-simple-box .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.seo-article-container {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 20px var(--shadow-card);
}

.seo-article-container h1,
.seo-article-container h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.seo-article-container h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 30px 0 15px;
    padding-left: 15px;
    border-left: 4px solid var(--color-accent);
}

.seo-article-container h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 25px 0 12px;
}

.seo-article-container p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.seo-article-container ul,
.seo-article-container ol {
    margin: 20px 0;
    padding-left: 30px;
    color: var(--text-muted);
}

.seo-article-container li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.seo-article-container a {
    color: var(--color-accent);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.seo-article-container a:hover {
    color: var(--text-primary);
}

.seo-article-container strong {
    color: var(--text-primary);
    font-weight: 600;
}

.seo-article-container em {
    font-style: italic;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .seo-simple-box {
        padding: 40px 0;
    }
    
    .seo-article-container {
        padding: 30px 20px;
        border-radius: 12px;
    }
    
    .seo-article-container h1,
    .seo-article-container h2 {
        font-size: 24px;
    }
    
    .seo-article-container h3 {
        font-size: 20px;
    }
    
    .seo-article-container p {
        font-size: 15px;
    }
}

/* Block: Футер 2 - Multi Column */
.footer2 {
    background: var(--bg-dark);
    color: var(--text-muted);
}

.footer2-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer2-main {
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--border-primary);
}

.footer2-main .footer2-container {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
}

.footer2-brand {
    max-width: 320px;
}

.footer2-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer2-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0 0 24px;
}

.footer2-socials {
    display: flex;
    gap: 12px;
}

.footer2-social {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 10px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer2-social svg {
    width: 20px;
    height: 20px;
}

.footer2-social:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--text-button);
    transform: translateY(-2px);
}

.footer2-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer2-col-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer2-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer2-col a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer2-col a:hover {
    color: var(--text-primary);
}

.footer2-payments {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-primary);
}

.footer2-payments .footer2-container {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer2-payments-label {
    font-size: 13px;
    color: var(--text-dark);
}

.footer2-payments-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer2-payments-list span {
    padding: 8px 16px;
    background: var(--bg-card);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-muted);
    border: 1px solid var(--border-primary);
}

.footer2-bottom {
    padding: 24px 0;
}

.footer2-bottom .footer2-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer2-copy {
    font-size: 13px;
    color: var(--text-dark);
}

.footer2-legal {
    display: flex;
    gap: 24px;
}

.footer2-legal a {
    font-size: 13px;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer2-legal a:hover {
    color: var(--text-primary);
}

.footer2-age {
    padding: 6px 12px;
    border: 2px solid var(--border-secondary);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .footer2-main .footer2-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer2-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer2-socials {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer2-links {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer2-payments .footer2-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer2-payments-list {
        justify-content: center;
    }
    
    .footer2-bottom .footer2-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer2-legal {
        flex-direction: column;
        gap: 12px;
    }
}