/* ============================================
   7K Casino - Main Styles
   ============================================ */

/* CSS Variables */
:root {
    --color-bg: #000127;
    --color-bg-secondary: #141414;
    --color-bg-card: #000127;
    --color-bg-darker: #000127;
    --color-primary: #c9a227;
    --color-primary-dark: #a88a1f;
    --color-primary-glow: rgba(201, 162, 39, 0.3);
    --color-secondary: #e31c3d;
    --color-secondary-dark: #c41230;
    --color-secondary-glow: rgba(227, 28, 61, 0.3);
    --color-accent: #ffd700;
    --color-text: #ffffff;
    --color-text-muted: #6b6b6b;
    --color-text-light: #a0a0a0;
    --color-border: #2a2a2a;
    --color-success: #00c853;
    --color-error: #e31c3d;
    
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --header-height: 70px;
    --container-width: 1200px;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px var(--color-primary-glow);
    --shadow-glow-red: 0 0 20px var(--color-secondary-glow);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #c9a227 100%);
    color: #fff;
    box-shadow: var(--shadow-glow-red);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--color-secondary-glow);
    filter: brightness(1.1);
}

.btn--outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.btn--outline:hover {
    background: var(--color-bg-card);
    border-color: var(--color-text-muted);
}

.btn--gold {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #000;
    box-shadow: var(--shadow-glow);
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--color-primary-glow);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn--full {
    width: 100%;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: #000127;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: #000127;
    box-shadow: var(--shadow-md);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.header__logo,
.footer__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 55px;
    width: auto;
}

.footer__logo .logo-img {
    height: 55px;
}

.logo-7 {
    color: var(--color-secondary);
    text-shadow: 0 0 15px var(--color-secondary-glow);
}

.logo-k {
    color: var(--color-primary);
    text-shadow: 0 0 15px var(--color-primary-glow);
    margin-left: 2px;
}

/* Navigation */
.header__nav {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    gap: 4px;
}

.nav__link {
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-light);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.nav__link:hover {
    color: var(--color-text);
    background: var(--color-bg-card);
}

.nav__link.active {
    color: var(--color-secondary);
}

/* Header Buttons */
.header__buttons {
    display: flex;
    gap: 12px;
}

/* Burger Menu */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-fast);
}

.header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    padding: 30px 20px;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
}

.mobile-menu__link {
    display: block;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-light);
    background: var(--color-bg-card);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.mobile-menu__link:hover {
    color: var(--color-text);
    background: var(--color-bg-secondary);
}

.mobile-menu__link.active {
    color: var(--color-secondary);
    border-left: 3px solid var(--color-secondary);
}

.mobile-menu__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ============================================
   Main Content
   ============================================ */
.main {
    padding-top: var(--header-height);
}

/* ============================================
   Hero Banner
   ============================================ */
.hero-banner {
    background: linear-gradient(135deg, #000127 0%, #000127 50%, #000127 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(227, 28, 61, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-banner__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-banner__text {
    flex: 1;
    max-width: 500px;
}

.hero-banner__label {
    display: block;
    width: fit-content;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 16px;
}

.hero-banner__title {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero-banner__title .highlight {
    color: var(--color-primary);
    text-shadow: 0 0 30px var(--color-primary-glow);
}

.hero-banner__title .highlight-red {
    color: var(--color-secondary);
    text-shadow: 0 0 30px var(--color-secondary-glow);
}

.hero-banner__desc {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.hero-banner__image {
    flex: 1;
    max-width: 450px;
    position: relative;
}

.hero-banner__image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
}

/* ============================================
   Intro Section
   ============================================ */
.intro-section {
    padding: 40px 0;
    background: var(--color-bg);
}

.intro-section h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text);
}

.intro-section p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-light);
}

/* ============================================
   Slots Section
   ============================================ */
.slots-section {
    padding: 50px 0 50px;
    background: var(--color-bg);
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::before {
    content: '🔥';
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.slot-card {
    background: var(--color-bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.slot-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-glow-red);
}

.slot-card__image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--color-bg-secondary);
}

.slot-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.slot-card:hover .slot-card__image img {
    transform: scale(1.05);
}

.slot-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background var(--transition-normal);
    pointer-events: none;
}

.slot-card:hover .slot-card__overlay {
    background: rgba(0, 0, 0, 0.5);
}

.slot-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
    padding: 10px 20px;
    font-size: 12px;
    z-index: 2;
}

.slot-card:hover .slot-card__play {
    opacity: 1;
    visibility: visible;
}

.slot-card__play:hover {
    transform: translate(-50%, -50%);
    filter: brightness(1.1);
}

.slot-card__title {
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    color: var(--color-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================
   Article Section
   ============================================ */
.article-section {
    padding: 50px 0;
    background: var(--color-bg-secondary);
}

.article-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--color-text);
}

.article-images {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.article-images img {
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    object-fit: cover;
    max-width: 300px;
    height: 180px;
}

.article-images--small img {
    max-width: 220px;
    height: 140px;
}

.article-content {
    max-width: 100%;
}

/* Table of Contents */
.toc {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    margin-bottom: 30px;
}

.toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toc__list li {
    margin: 0;
    padding-left: 18px;
    position: relative;
    list-style-type: none;
}

.toc__list li::marker {
    content: none;
}

.toc__list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.toc__list a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 15px;
    transition: color var(--transition-fast);
}

.toc__list a:hover {
    color: var(--color-primary);
}

.article-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 35px 0 18px;
    color: var(--color-primary);
}

.article-content p {
    margin-bottom: 18px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.article-list {
    margin: 20px 0;
}

.article-list li {
    padding: 12px 0;
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border);
}

.article-list li:last-child {
    border-bottom: none;
}

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

.article-content ul {
    list-style: disc;
}

.article-content ol {
    list-style: decimal;
}

.article-content li {
    margin-bottom: 12px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.article-content li strong {
    color: var(--color-primary);
}

/* Info Table */
.info-table,
.bonus-table {
    margin: 25px 0;
    overflow-x: auto;
}

.info-table table,
.bonus-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.info-table th,
.info-table td,
.bonus-table th,
.bonus-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.info-table tr:last-child td,
.bonus-table tr:last-child td {
    border-bottom: none;
}

.info-table th {
    background: rgba(201, 162, 39, 0.15);
    color: var(--color-primary);
    font-weight: 600;
}

.info-table td:first-child {
    font-weight: 600;
    color: var(--color-text);
    width: 40%;
}

.info-table td:last-child {
    color: var(--color-text-light);
}

.bonus-table th {
    background: rgba(227, 28, 61, 0.15);
    color: var(--color-secondary);
    font-weight: 600;
}

.bonus-table td {
    color: var(--color-text-light);
}

/* FAQ Section */
.faq-section {
    margin-top: 30px;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    padding: 20px 25px;
    border: 1px solid var(--color-border);
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-bg-darker);
    border-top: 1px solid var(--color-border);
}

/* Providers Banner */
.providers-banner {
    padding: 35px 0;
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border);
}

.providers-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-text-light);
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.provider-item {
    opacity: 0.5;
    transition: opacity var(--transition-fast);
    filter: grayscale(100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.provider-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.provider-item img {
    height: 50px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
}

/* Footer Main */
.footer__main {
    padding: 45px 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer__logo {
    margin-bottom: 18px;
}

.footer__desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--color-bg-card);
    border-radius: 50%;
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
    border: 1px solid var(--color-border);
}

.social-link:hover {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-3px);
}

.footer__title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--color-text);
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 14px;
    color: #ffffff;
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--color-secondary);
}

/* Footer Bottom */
.footer__bottom {
    padding: 25px 0;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer__disclaimer {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer__copy {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ============================================
   Breadcrumbs
   ============================================ */
.breadcrumbs {
    padding: 15px 0;
    background: transparent;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    font-size: 13px;
}

.breadcrumbs__link {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumbs__link:hover {
    color: var(--color-primary);
}

.breadcrumbs__separator {
    margin: 0 10px;
    color: var(--color-text-muted);
    font-size: 12px;
}

.breadcrumbs__item--current span {
    color: var(--color-text-light);
    font-weight: 500;
}

/* ============================================
   Page Styles (for inner pages)
   ============================================ */
.page-header {
    padding: 50px 0 35px;
    background: linear-gradient(135deg, #1a0a0a 0%, #2a1010 100%);
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 50px 0;
}

.page-content .container {
    max-width: var(--container-width);
}

.page-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 35px 0 18px;
    color: var(--color-primary);
}

.page-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 28px 0 14px;
    color: var(--color-text);
}

.page-content p {
    margin-bottom: 18px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin: 18px 0;
    padding-left: 25px;
}

.page-content ul {
    list-style: disc;
}

.page-content ol {
    list-style: decimal;
}

.page-content li {
    margin-bottom: 10px;
    color: var(--color-text-light);
}

/* Page Content Article Indents */
.page-content .article-content h1,
.page-content .article-content h2,
.page-content .article-content h3,
.page-content .article-content p,
.page-content .article-content ul,
.page-content .article-content ol,
.page-content .article-content .toc {
    max-width: 100%;
}

.page-content .article-content h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--color-text);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .header__nav {
        display: none;
    }
    
    .header__buttons {
        display: none;
    }
    
    .header__burger {
        display: flex;
    }
    
    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-banner__title {
        font-size: 32px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }
    
    .hero-banner {
        padding: 30px 0;
    }
    
    .hero-banner__content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-banner__label {
        margin: 0 auto 16px;
    }
    
    .hero-banner__title {
        font-size: 28px;
    }
    
    .hero-banner__image {
        max-width: 300px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .article-title {
        font-size: 26px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    /* Footer Mobile */
    .providers-banner {
        padding: 25px 0;
    }
    
    .providers-title {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .providers-grid {
        gap: 20px 25px;
    }
    
    .provider-item img {
        height: 28px;
    }
    
    .footer__main {
        padding: 35px 0;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer__col:first-child {
        padding-bottom: 25px;
        border-bottom: 1px solid var(--color-border);
    }
    
    .footer__logo {
        display: inline-block;
        margin-bottom: 15px;
    }
    
    .footer__logo .logo-img {
        height: 45px;
    }
    
    .footer__desc {
        font-size: 13px;
        max-width: 280px;
        margin: 0 auto 15px;
    }
    
    .footer__social {
        justify-content: center;
    }
    
    .footer__col:nth-child(2),
    .footer__col:nth-child(3) {
        display: inline-block;
        vertical-align: top;
        width: 48%;
        text-align: left;
    }
    
    .footer__title {
        font-size: 14px;
        margin-bottom: 12px;
        color: var(--color-primary);
    }
    
    .footer__links li {
        margin-bottom: 8px;
    }
    
    .footer__links a {
        font-size: 13px;
    }
    
    .footer__bottom {
        padding: 20px 0;
    }
    
    .footer__disclaimer {
        font-size: 11px;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    .footer__copy {
        font-size: 11px;
    }
    
    .article-images img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-banner__title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .article-title {
        font-size: 22px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .slot-card__title {
        font-size: 11px;
        padding: 10px;
    }
    
    .info-table td,
    .bonus-table td,
    .bonus-table th {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    /* Footer Mobile Small */
    .providers-grid {
        gap: 15px 20px;
    }
    
    .provider-item img {
        height: 24px;
    }
    
    .footer__col:nth-child(2),
    .footer__col:nth-child(3) {
        width: 100%;
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid var(--color-border);
    }
    
    .footer__links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
    }
    
    .footer__links li {
        margin-bottom: 0;
    }
    
    .footer__desc {
        max-width: 100%;
    }
}
