/* ===== RESET ===== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
*, *:after, *:before { box-sizing: border-box; }

/* ===== VARIABLES ===== */
:root {
    --navy:       #091529;
    --navy-mid:   #0d1e3a;
    --navy-light: #132040;
    --gold:       #f5a623;
    --gold-dark:  #c8841a;
    --gold-light: #ffd054;
    --red:        #cc0000;
    --red-dark:   #9e0000;
    --green:      #1a6e1a;
    --green-mid:  #145214;
    --white:      #ffffff;
    --text-light: #c5d0e0;
    --border-gold: #c8841a;
}

/* ===== BASE ===== */
body {
    background: var(--navy);
    font-family: 'Arial', sans-serif;
    color: var(--white);
    overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    padding: 8px 0;
}
.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-bar-text {
    font-size: 13px;
    color: var(--gold);
    font-weight: bold;
    letter-spacing: 1px;
}
.btn-topbar-login {
    padding: 6px 20px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    transition: background 0.2s;
}
.btn-topbar-login:hover { background: var(--red-dark); }

/* ===== HEADER ===== */
.header {
    background: var(--navy);
    border-bottom: 2px solid var(--border-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.6);
}
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    text-decoration: none;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
}
.logo-yukon { color: var(--white); }
.logo-gold  { color: var(--gold); }

/* Nav */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}
.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
    padding: 5px 0;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu a:hover::after { width: 100%; }

/* Buttons */
.btn {
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}
.btn-play {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(245,166,35,0.4);
}
.btn-play:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    box-shadow: 0 6px 20px rgba(245,166,35,0.6);
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}
.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 116px;
    left: 0;
    width: 100%;
    height: calc(100vh - 116px);
    background: var(--navy-mid);
    padding: 30px 20px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-top: 2px solid var(--border-gold);
}
.mobile-menu.active { transform: translateX(0); }
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 30px;
}
.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 15px;
    border-radius: 8px;
    transition: background 0.2s;
    display: block;
}
.mobile-nav a:hover { background: var(--navy-light); color: var(--gold); }
.mobile-actions { display: flex; flex-direction: column; gap: 15px; }

/* Responsive Header */
@media (max-width: 1024px) {
    .nav-menu, .header-actions { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: block; top: 116px; height: calc(100vh - 116px); }
    .header-container { height: 70px; }
}
@media (max-width: 640px) {
    .header-container { padding: 0 15px; height: 60px; }
    .logo { font-size: 24px; }
    .mobile-menu { top: 108px; height: calc(100vh - 108px); padding: 20px 15px; }
    .mobile-nav a { font-size: 16px; padding: 12px; }
    .top-bar-text { font-size: 11px; letter-spacing: 0; }
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    background: var(--navy);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.4;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at center, rgba(9,21,41,0.3) 0%, rgba(9,21,41,0.8) 100%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

/* Bonus Card */
.hero-bonus-card {
    background: var(--red);
    border: 4px solid var(--gold);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    min-width: 240px;
    max-width: 290px;
    box-shadow:
        0 0 0 6px rgba(200,132,26,0.3),
        0 10px 40px rgba(0,0,0,0.5);
    position: relative;
}
.hero-bonus-card::before {
    content: '';
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 1px solid rgba(245,166,35,0.3);
    border-radius: 8px;
    pointer-events: none;
}
.bonus-label {
    font-size: 13px;
    font-weight: bold;
    color: var(--white);
    background: rgba(0,0,0,0.3);
    padding: 5px 15px;
    border-radius: 4px;
    margin-bottom: 10px;
    display: inline-block;
    letter-spacing: 1px;
}
.bonus-number {
    font-size: 90px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 20px rgba(245,166,35,0.6);
    margin-bottom: 5px;
}
.bonus-text {
    font-size: 22px;
    font-weight: bold;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}
.bonus-amount {
    color: var(--gold);
    font-size: 26px;
}
.btn-signup {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #1e8e1e, #0f5c0f);
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(0,100,0,0.4);
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-signup:hover {
    background: linear-gradient(135deg, #25a825, #1a7a1a);
    box-shadow: 0 6px 25px rgba(0,120,0,0.5);
    transform: translateY(-2px);
}

/* Hero Video / Image Area */
.hero-video-area {
    flex: 1;
    max-width: 600px;
    min-height: 350px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: 4px solid var(--gold);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 0 4px rgba(200,132,26,0.3);
}
.hero-video-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .hero-section { min-height: 420px; }
    .hero-content { gap: 25px; }
    .bonus-number { font-size: 70px; }
    .bonus-text { font-size: 18px; }
    .hero-video-area { min-height: 280px; }
}
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
        padding: 30px 15px;
    }
    .hero-bonus-card { max-width: 100%; width: 100%; }
    .hero-video-area { width: 100%; min-height: 220px; }
    .bonus-number { font-size: 80px; }
}
@media (max-width: 480px) {
    .hero-section { min-height: auto; }
    .bonus-number { font-size: 65px; }
    .bonus-text { font-size: 16px; }
    .bonus-amount { font-size: 20px; }
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--navy-mid);
    border-top: 2px solid var(--border-gold);
    border-bottom: 2px solid var(--border-gold);
    padding: 30px 20px;
}
.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.feature-card {
    padding: 25px 30px;
    border-right: 1px solid rgba(200,132,26,0.3);
}
.feature-card:last-child { border-right: none; }
.feature-card--center { border-left: 1px solid rgba(200,132,26,0.3); }
.feature-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.feature-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}
.feature-text a {
    color: var(--gold);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .features-grid { grid-template-columns: 1fr; }
    .feature-card { border-right: none; border-bottom: 1px solid rgba(200,132,26,0.3); padding: 20px; }
    .feature-card:last-child { border-bottom: none; }
    .feature-card--center { border-left: none; }
}

/* ===== WINNERS TICKER ===== */
.winners-ticker {
    background: #0a1628;
    border-top: 1px solid rgba(200,132,26,0.4);
    border-bottom: 1px solid rgba(200,132,26,0.4);
    padding: 10px 0;
    overflow: hidden;
}
.ticker-wrapper { overflow: hidden; white-space: nowrap; }
.ticker-content {
    display: inline-block;
    animation: ticker 30s linear infinite;
    padding-left: 100%;
}
.ticker-content span {
    color: var(--gold);
    font-size: 13px;
    font-weight: bold;
    margin-right: 50px;
    letter-spacing: 0.5px;
}
@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== ANNIVERSARY BANNER ===== */
.anniversary-banner {
    background: linear-gradient(135deg, #0a4a2a 0%, #0d5c35 50%, #0a4a2a 100%);
    border-top: 2px solid var(--gold-dark);
    border-bottom: 2px solid var(--gold-dark);
    padding: 30px 20px;
}
.anniversary-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}
.anniversary-badge {
    text-align: center;
    min-width: 130px;
}
.anniversary-celebrating {
    font-size: 16px;
    color: var(--white);
    font-style: italic;
    margin-bottom: 2px;
}
.anniversary-years {
    font-size: 72px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 15px rgba(245,166,35,0.5);
}
.anniversary-sub {
    font-size: 18px;
    font-weight: bold;
    color: var(--gold);
    letter-spacing: 3px;
}
.anniversary-label {
    font-size: 13px;
    color: var(--white);
    margin-top: 4px;
    font-style: italic;
}
.anniversary-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--white);
}
.anniversary-text strong { color: var(--gold-light); }

@media (max-width: 768px) {
    .anniversary-content { flex-direction: column; gap: 20px; text-align: center; }
    .anniversary-text { font-size: 16px; }
    .anniversary-years { font-size: 56px; }
}

/* ===== GAMES CONTAINER ===== */
.games-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}
.games-section { margin-bottom: 45px; }

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.section-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.section-icon--star   { background: rgba(245,166,35,0.2); }
.section-icon--heart  { background: rgba(200,0,0,0.2); }
.section-icon--fire   { background: rgba(245,100,35,0.2); }
.section-icon--dice   { background: rgba(100,200,245,0.2); }
.section-icon--dealer { background: rgba(100,245,150,0.2); }

.section-title {
    color: var(--gold);
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Games Name List (Popular, Featured) */
.games-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.game-name-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 14px;
    background: var(--navy-light);
    border: 1px solid rgba(200,132,26,0.3);
    border-radius: 4px;
    transition: all 0.2s;
}
.game-name-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(245,166,35,0.1);
}

/* Games Grid (scrollable) */
.games-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}
.games-grid::-webkit-scrollbar { height: 8px; }
.games-grid::-webkit-scrollbar-track { background: var(--navy); border-radius: 4px; }
.games-grid::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
.games-grid::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.game-card {
    flex: 0 0 190px;
    width: 190px;
    text-decoration: none;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    background: var(--navy-mid);
    border: 2px solid var(--border-gold);
    transition: transform 0.2s, box-shadow 0.2s;
}
.game-card:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 25px rgba(245,166,35,0.3);
}
.game-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 70%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}
.game-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.game-info { padding: 10px; }
.game-title {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .game-card { flex: 0 0 155px; width: 155px; }
    .section-title { font-size: 18px; }
    .games-container { padding: 25px 15px; }
}
@media (max-width: 640px) {
    .game-card { flex: 0 0 130px; width: 130px; }
    .game-title { font-size: 11px; }
    .section-title { font-size: 16px; }
    .section-icon { width: 32px; height: 32px; font-size: 16px; }
    .games-grid::-webkit-scrollbar { height: 6px; }
}

/* ===== CONTENT SECTION ===== */
.content-section {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 60px 20px;
    background: var(--navy-mid);
    border-top: 2px solid var(--border-gold);
    border-bottom: 2px solid var(--border-gold);
}
.content-section h2 {
    color: var(--white);
    font-size: 30px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px;
    margin-top: 45px;
}
.content-section h2:first-child { margin-top: 0; }
.content-section h3 {
    color: var(--gold);
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 18px;
    margin-top: 30px;
}
.content-section p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}
.content-section p strong { color: var(--white); font-weight: bold; }
.content-section ul, .content-section ol {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    padding-left: 30px;
    list-style: disc;
}
.content-section ul li, .content-section ol li {
    margin-bottom: 10px;
    padding-left: 8px;
}
.content-section ul li::marker { color: var(--gold); }
.content-section a { color: var(--gold); text-decoration: none; }
.content-section a:hover { text-decoration: underline; color: var(--gold-light); }

/* Tables (mobile scrollable) */
.content-section .table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 28px;
    border-radius: 8px;
    background: var(--navy);
    border: 1px solid rgba(200,132,26,0.3);
}
.content-section .table-wrapper::-webkit-scrollbar { height: 8px; }
.content-section .table-wrapper::-webkit-scrollbar-track { background: var(--navy); border-radius: 4px; }
.content-section .table-wrapper::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
.content-section .table-wrapper::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.content-section table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}
.content-section table tbody tr:first-child { background: rgba(200,132,26,0.15); }
.content-section table tbody tr:first-child td {
    color: var(--gold);
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.content-section table td {
    padding: 16px 20px;
    color: var(--text-light);
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.content-section table tbody tr:not(:first-child):hover { background: rgba(200,132,26,0.07); }
.content-section table td strong { color: var(--white); }

@media (max-width: 1024px) {
    .content-section { padding: 40px 20px; }
    .content-section h2 { font-size: 26px; margin-top: 35px; }
    .content-section h3 { font-size: 20px; }
    .content-section p { font-size: 15px; }
    .content-section table td { padding: 13px 16px; font-size: 13px; }
}
@media (max-width: 640px) {
    .content-section { padding: 30px 15px; }
    .content-section h2 { font-size: 22px; margin-top: 30px; }
    .content-section h3 { font-size: 18px; }
    .content-section p { font-size: 14px; line-height: 1.7; }
    .content-section table { min-width: 420px; }
    .content-section table td { padding: 11px 13px; font-size: 12px; }
    .content-section ul, .content-section ol { font-size: 14px; padding-left: 20px; }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--navy);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(245,166,35,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(245,166,35,0.4);
}
.cta-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.btn-play-now {
    display: inline-block;
    padding: 18px 60px;
    background: linear-gradient(135deg, #1e8e1e, #0f5c0f);
    color: var(--white);
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    border-radius: 40px;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 25px rgba(0,120,0,0.5);
    border: 2px solid rgba(255,255,255,0.25);
    transition: all 0.3s;
}
.btn-play-now:hover {
    background: linear-gradient(135deg, #25a825, #1a7a1a);
    box-shadow: 0 6px 35px rgba(0,140,0,0.6);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .cta-section { padding: 50px 20px; }
    .cta-title { font-size: 30px; }
    .cta-text { font-size: 16px; }
    .btn-play-now { padding: 15px 45px; font-size: 18px; }
}
@media (max-width: 480px) {
    .cta-title { font-size: 24px; }
    .btn-play-now { padding: 14px 35px; font-size: 16px; }
}

/* ===== FOOTER ===== */
.footer {
    background: #060e1d;
    border-top: 2px solid var(--border-gold);
}
.footer-links-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    border-bottom: 1px solid rgba(200,132,26,0.2);
}
.footer-links-bar a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.footer-links-bar a:hover { color: var(--gold); text-decoration: underline; }

.footer-badges {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    border-bottom: 1px solid rgba(200,132,26,0.2);
}
.footer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    background: var(--navy-mid);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    color: var(--text-light);
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}
.footer-badge:hover { color: var(--gold); background: rgba(245,166,35,0.07); }
.footer-badge--age {
    color: var(--white);
    background: var(--red);
    border-color: var(--red-dark);
}
.footer-badge--age:hover { background: var(--red-dark); color: var(--white); }

.footer-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    border-bottom: 1px solid rgba(200,132,26,0.2);
}
.footer-responsible {
    margin-bottom: 20px;
    padding: 20px;
    background: var(--navy-mid);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
}
.footer-responsible h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}
.footer-responsible p {
    font-size: 13px;
    line-height: 1.7;
    color: #8899aa;
}
.footer-responsible a { color: var(--gold); text-decoration: none; }
.footer-responsible a:hover { text-decoration: underline; }
.footer-text {
    font-size: 13px;
    line-height: 1.8;
    color: #667788;
    margin-bottom: 15px;
}

.footer-bottom {
    background: #040c1a;
    padding: 20px 0;
}
.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.footer-age-warning {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 8px 18px;
    background: var(--navy-mid);
    border-radius: 6px;
    font-weight: bold;
    color: var(--gold);
    font-size: 14px;
}
.age-icon {
    width: 30px;
    height: 30px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}
.footer-bottom p {
    font-size: 12px;
    color: #55667a;
}
.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}
.footer-bottom a:hover { text-decoration: underline; }

@media (max-width: 640px) {
    .footer-links-bar { gap: 6px 12px; padding: 15px; }
    .footer-links-bar a { font-size: 12px; }
    .footer-badges { gap: 8px; padding: 15px; }
    .footer-info { padding: 20px 15px; }
}
