/* --- Базові стилі --- */
body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #131316;
    color: #f1f1f1;
}
.content {
    font-family: 'Montserrat', Arial, sans-serif;
}
::-webkit-scrollbar {
    width: 8px;
    background: #23242a;
}
::-webkit-scrollbar-thumb {
    background: #D79E3E;
    border-radius: 4px;
}
hr {
    border: none;
    border-top: 1px solid #23242a;
    margin: 18px 0;
    opacity: 0.7;
}
html {
    scroll-behavior: smooth;
}
#oglad, #koef, #profile, #stat, #prognoz, #de-divytys, #faq {
    scroll-margin-top: 90px;
}

/* --- ПК-Хедер --- */
.pc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    background: #18191B;
    border-bottom: 2px solid #FFD24C;
    box-shadow: 0 2px 16px #FFD24C22;
    width: 100%;
    z-index: 100;
    position: relative;
}
.pc-header .logo {
    display: flex;
    align-items: center;
    min-width: 120px;
    min-height: 48px;
    padding: 0;
}
.pc-header .logo img {
    max-height: 48px;
    max-width: 160px;
    width: auto;
    height: auto;
    border-radius: 12px;
    background: #18191B;
    object-fit: contain;
    box-shadow: 0 2px 12px #0002;
    padding: 4px 8px;
    transition: box-shadow 0.2s, background 0.2s;
    display: block;
}
.pc-header nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.pc-header nav ul li a {
    color: #f1f1f1;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    position: relative;
}
.pc-header nav ul li a:hover,
.pc-header nav ul li a:focus {
    background: #23242a;
    color: #D79E3E;
}

/* --- Мобільний хедер --- */
header.mob_header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: #18191B;
    min-height: 60px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-bottom: 2px solid #FFD24C;
    padding: 0;
}
header.mob_header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    padding: 0 10px;
    position: relative;
}
header.mob_header .logo.m_only {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    margin: 0;
    padding: 0;
}
header.mob_header .logo img {
    max-height: 44px;
    max-width: 120px;
    border-radius: 10px;
    background: #18191B;
    object-fit: contain;
    box-shadow: 0 2px 12px #0002;
    padding: 2px 6px;
    margin: 0 auto;
    display: block;
}

/* --- Бургер-кнопка --- */
.nav-open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(180deg, #FFD24C 0%, #D79E3E 107.35%);
    border-radius: 50%;
    cursor: pointer;
    margin-right: 8px;
    margin-left: 0;
    z-index: 120;
    box-shadow: 0 2px 8px #FFD24C33;
    border: 2px solid #18191B;
    transition: box-shadow 0.2s;
    order: 0;
    position: static;
}
.nav-open i {
    display: block;
    width: 24px;
    height: 3px;
    background: #18191B;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s;
}
#nav:checked + .nav-open i:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
#nav:checked + .nav-open i:nth-child(2) {
    opacity: 0;
}
#nav:checked + .nav-open i:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* --- Кнопки в мобільному хедері --- */
.header__btns.mobile {
    display: flex !important;
    gap: 8px;
    margin-left: 0;
    margin-right: 0;
    z-index: 110;
    order: 2;
}
.header__btns.mobile .general_btn {
    background: #FFD24C;
    color: #18191B;
    border-radius: 18px;
    padding: 7px 16px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 8px #FFD24C33;
    border: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    text-transform: uppercase;
    margin: 0;
    text-decoration: none;
}
.header__btns.mobile .general_btn:hover,
.header__btns.mobile .general_btn:focus {
    background: #D79E3E;
    color: #fff;
    box-shadow: 0 4px 16px #D79E3E44;
    transform: translateY(-2px) scale(1.04);
}

/* --- Мобільне меню (бургер) --- */
.nav-container {
    display: none;
    flex-direction: column;
    align-items: center;
    background: #23242a;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 200;
    padding: 0;
    box-shadow: 0 8px 32px #00000044;
    animation: fadeInMenu 0.3s;
    justify-content: flex-start;
}
@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(-30px);}
    to { opacity: 1; transform: translateY(0);}
}
#nav:checked ~ .nav-container {
    display: flex;
}
.nav-container .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px 0 18px 0;
    width: 100%;
}
.nav-container .logo img {
    max-height: 54px;
    max-width: 160px;
    border-radius: 12px;
    background: #18191B;
    object-fit: contain;
    box-shadow: 0 2px 12px #0002;
    padding: 4px 8px;
    margin: 0 auto;
}
.nav-container .site-header-left-nav ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    width: 100%;
}
.nav-container .site-header-left-nav ul li {
    width: 100%;
    text-align: center;
}
.nav-container .site-header-left-nav ul li a {
    color: #FFD24C;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 0;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    display: block;
    width: 180px;
    margin: 0 auto;
    letter-spacing: 0.02em;
}
.nav-container .site-header-left-nav ul li a:hover,
.nav-container .site-header-left-nav ul li a:focus {
    background: #FFD24C;
    color: #18191B;
}
.nav-container .header__btns {
    margin: 32px 0 0 0;
    gap: 12px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.nav-container .header__btns .general_btn {
    background: #FFD24C;
    color: #18191B;
    border-radius: 18px;
    padding: 9px 22px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 2px 8px #FFD24C33;
    border: none;
    margin: 0 6px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    text-transform: uppercase;
    text-decoration: none;
}
.nav-container .header__btns .general_btn:hover,
.nav-container .header__btns .general_btn:focus {
    background: #D79E3E;
    color: #fff;
    box-shadow: 0 4px 16px #D79E3E44;
    transform: translateY(-2px) scale(1.04);
}

/* --- Кнопки загальні ефекти --- */
.general_btn {
    background: linear-gradient(90deg, #d1a440 0%, #f7ce4f 100%);
    color: #18191B;
    border: none;
    border-radius: 25px;
    padding: 10px 28px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px #d1a44033;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    outline: none;
    margin: 0 4px;
    display: inline-block;
}
.general_btn:hover, .general_btn:focus {
    background: #D79E3E;
    color: #fff;
    box-shadow: 0 4px 16px #D79E3E44;
    transform: translateY(-2px) scale(1.04);
}
.general_btn:active {
    background: #cfa13a;
    color: #fff;
}

/* --- Контент, таблиці, FAQ, футер --- */
.content_page {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 12px 40px 12px;
    background: transparent;
}
.content h1, .content h2, .content h3 {
    color: #FFD24C;
    font-weight: 800;
    margin-top: 32px;
    margin-bottom: 16px;
    line-height: 1.2;
}
.content h1 { font-size: 2.2rem; }
.content h2 { font-size: 1.5rem; }
.content h3 { font-size: 1.2rem; }
.content p, .content ul, .content ol {
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 18px;
}
.content ul, .content ol {
    padding-left: 24px;
}
.content ul li, .content ol li {
    margin-bottom: 8px;
}
.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: #23242a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px #0002;
}
.content th, .content td {
    padding: 12px 10px;
    text-align: left;
}
.content th {
    background: #18191B;
    color: #FFD24C;
    font-weight: 700;
    font-size: 1.05rem;
}
.content td {
    background: #23242a;
    color: #fff;
    font-size: 1rem;
    border-bottom: 1px solid #23242a;
}
.content tr:last-child td {
    border-bottom: none;
}
.accordion {
    margin: 32px 0;
}
.a-container {
    background: #23242a;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px #0002;
    overflow: hidden;
}
.a-btn {
    cursor: pointer;
    padding: 16px 20px;
    font-size: 1.08rem;
    font-weight: 700;
    color: #FFD24C;
    background: #18191B;
    border: none;
    outline: none;
    transition: background 0.2s, color 0.2s;
    position: relative;
}
.a-btn span {
    float: right;
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml;utf8,<svg fill="FFD24C" height="18" width="18" xmlns="http://www.w3.org/2000/svg"><path d="M6 9l3 3 3-3" stroke="%23FFD24C" stroke-width="2" fill="none" stroke-linecap="round"/></svg>') no-repeat center;
    transition: transform 0.3s;
}
.a-container.active .a-btn span {
    transform: rotate(180deg);
}
.a-panel {
    display: none;
    padding: 0 20px 16px 20px;
    background: #23242a;
    color: #fff;
    font-size: 1rem;
}
.a-container.active .a-panel {
    display: block;
}
footer {
    background: #18191B;
    color: #fff;
    padding: 24px 0 0 0;
    font-size: 0.98rem;
}
.footer_menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer_menu ul li a {
    color: #FFD24C;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.footer_menu ul li a:hover {
    color: #fff;
    text-decoration: underline;
}
.responsive-image {
    display: block;
    margin: 0 auto 24px auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* --- Sidebar stepper --- */
.sidebar-menu-modern {
    position: fixed;
    top: 110px;
    left: 24px;
    width: 180px;
    background: linear-gradient(135deg, #18191B 80%, #FFD24C22 100%);
    border-radius: 18px;
    box-shadow: 0 8px 32px #FFD24C33, 0 0 0 6px #18191B inset;
    z-index: 200;
    padding: 28px 0 28px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2.5px solid #FFD24C;
    min-height: 340px;
    overflow: visible;
    transition: background 0.2s, box-shadow 0.2s;
}
.sidebar-menu-modern nav {
    position: relative;
    width: 100%;
}
.sidebar-menu-modern ul {
    list-style: none;
    margin: 0;
    padding: 0 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    width: 100%;
}
.sidebar-menu-modern li {
    position: relative;
    width: 100%;
    min-height: 36px;
    display: flex;
    align-items: center;

}
.sidebar-menu-modern a {
    display: flex;
    align-items: center;
    color: #FFD24C;
    font-size: 15px;
    font-weight: 500;
    padding: 7px 18px 7px 36px;
    border-radius: 10px;
    text-decoration: none;
    transition: color 0.18s, background 0.18s, font-weight 0.18s, box-shadow 0.18s;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    height: 36px;
    width: 140px;
    opacity: 0.82;
    background: none;
    box-shadow: none;
    letter-spacing: 0.01em;
    font-family: 'Montserrat', Arial, sans-serif;
    text-shadow: 0 1px 2px #18191B88;
}
.sidebar-menu-modern a .dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD24C 60%, #D79E3E 100%);
    box-shadow: 0 1px 8px #FFD24C33, 0 0 0 7px #FFD24C33;
    transition: background 0.2s, box-shadow 0.2s, border 0.2s;
    flex-shrink: 0;
    border: 2.5px solid #FFD24C;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.sidebar-menu-modern a.active,
.sidebar-menu-modern a:focus,
.sidebar-menu-modern a:hover {
    color: white;
    opacity: 1;
    font-weight: 700;
    box-shadow: 0 2px 16px #FFD24C33;
    z-index: 2;
}
.sidebar-menu-modern a.active .dot,
.sidebar-menu-modern a:focus .dot,
.sidebar-menu-modern a:hover .dot {
    background: radial-gradient(circle at 60% 40%, #FFD24C 60%, #18191B 100%);
    border: 2.5px solid #D79E3E;
    box-shadow: 0 0 0 10px #FFD24C77, 0 0 0 0 #D79E3E;
    animation: punch-glow 0.5s;
}

.sidebar-menu-modern a:not(.active) {
    background: none;
    box-shadow: none;
}
.sidebar-menu-modern a:not(.active) .dot {
    background: linear-gradient(135deg, #FFD24C 60%, #D79E3E 100%);
    border: 2.5px solid #FFD24C;
}
.sidebar-marker-modern {
    position: absolute;
    left: 0;
    width: 180px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(90deg, #FFD24C22 60%, #fffbe622 100%);
    box-shadow: 0 2px 16px #FFD24C33;
    transition: top 0.28s cubic-bezier(.4,2,.6,1), background 0.2s;
    z-index: 1;
    pointer-events: none;
}
.sidebar-menu-modern::before {
    content: '';
    display: block;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    background:
    url('/images/favicon.svg') center/cover no-repeat;
        radial-gradient(circle at 60% 40%, #FFD24C 60%, #D79E3E 100%);        
    border-radius: 50%;
    box-shadow: 0 0 0 6px #18191B, 0 4px 24px #FFD24C55;
    z-index: 10;
    border: 3px solid #FFD24C;
}
@media (max-width: 1200px) {
    .sidebar-menu-modern { left: 2px; }
}
@media (max-width: 1023px) {
    .sidebar-menu-modern { display: none !important; }
}
@media (max-width: 600px) {
    .sidebar-menu-modern { display: none !important; }
}

/* --- Медіа-запити для адаптивності --- */
@media (max-width: 600px) {
    .content_page {
        padding: 12px 2vw 32px 2vw;
    }
    .content h1 { font-size: 1.3rem; }
    .content h2 { font-size: 1.08rem; }
    .content h3 { font-size: 1rem; }
    .content table th, .content table td { font-size: 0.98rem; }
    .footer_menu ul { gap: 10px; }
    .pc-header .logo img,
    header.mob_header .logo img,
    .nav-container .logo img {
        max-width: 50px;
        max-height: 50px;
        padding: 2px 4px;
        border-radius: 8px;
    }
}
input[type="checkbox"].hidden {
    display: none !important;
}
@media (min-width: 1024px) {
    .nav-open,
    #nav,
    .nav-container,
    .header__btns.mobile,
    header.mob_header {
        display: none !important;
    }
    .pc-header {
        display: flex !important;
    }
}
@media (max-width: 1023px) {
    .pc-header {
        display: none !important;
    }
    header.mob_header {
        display: flex !important;
    }
}
input[type="checkbox"].hidden {
    display: none !important;
}
@media (min-width: 1024px) {
    .nav-open,
    #nav,
    .nav-container,
    .header__btns.mobile,
    header.mob_header {
        display: none !important;
    }
    .pc-header {
        display: flex !important;
    }
}
@media (max-width: 1023px) {
    .pc-header {
        display: none !important;
    }
    header.mob_header {
        display: flex !important;
    }
}

header.mob_header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    padding: 0 10px;
    position: relative;
}
.nav-open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(180deg, #FFD24C 0%, #D79E3E 107.35%);
    border-radius: 50%;
    cursor: pointer;
    margin-right: 8px;
    margin-left: 0;
    z-index: 120;
    box-shadow: 0 2px 8px #FFD24C33;
    border: 2px solid #18191B;
    transition: box-shadow 0.2s;
    order: 0;
    position: static;
}
.nav-open i {
    display: block;
    width: 24px;
    height: 3px;
    background: #18191B;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s;
}
#nav:checked + .nav-open i:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
#nav:checked + .nav-open i:nth-child(2) {
    opacity: 0;
}
#nav:checked + .nav-open i:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
.logo.m_only {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    margin: 0;
    padding: 0;
}
.logo.m_only img {
    max-height: 44px;
    max-width: 120px;
    border-radius: 10px;
    background: #18191B;
    object-fit: contain;
    box-shadow: 0 2px 12px #0002;
    padding: 2px 6px;
    margin: 0 auto;
    display: block;
}
.header__btns.mobile {
    display: flex !important;
    gap: 8px;
    margin-left: 0;
    margin-right: 0;
    z-index: 110;
    order: 2;
}
.header__btns.mobile .general_btn {
    background: #FFD24C;
    color: #18191B;
    border-radius: 18px;
    padding: 7px 16px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 8px #FFD24C33;
    border: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    text-transform: uppercase;
    margin: 0;
}
.header__btns.mobile .general_btn:hover,
.header__btns.mobile .general_btn:focus {
    background: #D79E3E;
    color: #fff;
    box-shadow: 0 4px 16px #D79E3E44;
    transform: translateY(-2px) scale(1.04);
}

/* --- Відкрите меню --- */
.nav-container {
    display: none;
    flex-direction: column;
    align-items: center;
    background: #23242a;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 200;
    padding-top: 60px;
    box-shadow: 0 8px 32px #00000044;
    animation: fadeInMenu 0.3s;
    justify-content: flex-start;
}
@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(-30px);}
    to { opacity: 1; transform: translateY(0);}
}
#nav:checked ~ .nav-container {
    display: flex;
}
.close-burger {
    position: absolute;
    top: 22px;
    right: 22px;
    background: #FFD24C;
    color: #18191B;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 300;
    box-shadow: 0 2px 8px #FFD24C33;
    transition: background 0.2s, color 0.2s;
}
.close-burger:hover {
    background: #D79E3E;
    color: #fff;
}
.nav-container .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px 0 18px 0;
    width: 100%;
}
.nav-container .logo img {
    max-height: 54px;
    max-width: 160px;
    border-radius: 12px;
    background: #18191B;
    object-fit: contain;
    box-shadow: 0 2px 12px #0002;
    padding: 4px 8px;
    margin: 0 auto;
}
.nav-container .site-header-left-nav ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    width: 100%;
}
.nav-container .site-header-left-nav ul li {
    width: 100%;
    text-align: center;
}
.nav-container .site-header-left-nav ul li a {
    color: #FFD24C;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 0;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    display: block;
    width: 180px;
    margin: 0 auto;
    letter-spacing: 0.02em;
}
.nav-container .site-header-left-nav ul li a:hover,
.nav-container .site-header-left-nav ul li a:focus {
    background: #FFD24C;
    color: #18191B;
}
.nav-container .header__btns {
    margin: 32px 0 0 0;
    gap: 12px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.nav-container .header__btns .general_btn {
    background: #FFD24C;
    color: #18191B;
    border-radius: 18px;
    padding: 9px 22px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 2px 8px #FFD24C33;
    border: none;
    margin: 0 6px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    text-transform: uppercase;
}
.nav-container .header__btns .general_btn:hover,
.nav-container .header__btns .general_btn:focus {
    background: #D79E3E;
    color: #fff;
    box-shadow: 0 4px 16px #D79E3E44;
    transform: translateY(-2px) scale(1.04);
}
.bet-btns-hidden-google {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 24px 0 0 0;
}
.bet-btns-hidden-google a {
    display: inline-block;
    padding: 12px 22px;
    background: #007bff;
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
}
.bet-btns-hidden-google a:hover {
    background: #0056b3;
}
.bet-btns-hidden-google[hidden], .bet-btns-hidden-google[inert] {
    display: none !important;
}

		/* --- HERO BLOCK --- */
		.hero-main {
			background: linear-gradient(120deg, #18191B 80%, #FFD24C22 100%);
			border-radius: 22px;
			margin: 32px auto 36px auto;
			max-width: 1100px;
			box-shadow: 0 6px 32px #FFD24C33, 0 0 0 8px #18191B inset;
			padding: 40px 18px 32px 18px;
			display: flex;
			flex-direction: column;
			align-items: center;
			border: 3px solid #FFD24C;
			position: relative;
			overflow: hidden;
		}

		.hero-main::before {
			content: '';
			position: absolute;
			top: -60px;
			right: -60px;
			width: 180px;
			height: 180px;
			background: radial-gradient(circle, #FFD24C33 60%, transparent 100%);
			z-index: 0;
			pointer-events: none;
		}

		.hero-content {
			display: flex;
			flex-wrap: wrap;
			align-items: flex-start;
			gap: 40px;
			width: 100%;
			max-width: 1000px;
			position: relative;
			z-index: 1;
		}

		.hero-media {
			flex: 1 1 340px;
			display: flex;
			flex-direction: column;
			align-items: center;
			min-width: 320px;
			max-width: 600px;
		}

		.hero-img {
			width: 100%;
			max-width: 500px;
			border-radius: 16px;
			box-shadow: 0 4px 24px #FFD24C22, 0 2px 12px #0002;
			margin-bottom: 22px;
			border: 2.5px solid #FFD24C;
			background: #23242a;
		}

		.hero-timer {
			font-size: 1.7em;
			font-weight: 800;
			color: #FFD24C;
			background: #23242a;
			border-radius: 10px;
			padding: 14px 28px;
			margin-top: 12px;
			box-shadow: 0 2px 12px #FFD24C33;
			letter-spacing: 1px;
			border: 2px solid #FFD24C;
			text-align: center;
			text-shadow: 0 2px 8px #18191B99;
			transition: background 0.2s, color 0.2s;
		}

		.hero-info {
			flex: 2 1 340px;
			min-width: 320px;
			max-width: 540px;
			display: flex;
			flex-direction: column;
			gap: 22px;
		}

		.hero-info h1 {
			color: #FFD24C;
			font-size: 2.3rem;
			font-weight: 900;
			margin: 0 0 10px 0;
			line-height: 1.15;
			text-shadow: 0 2px 8px #18191B99;
		}

		.hero-desc {
			font-size: 1.18em;
			color: #fffbe6;
			margin-bottom: 8px;
			font-weight: 500;
			text-shadow: 0 1px 4px #18191B88;
		}

		/* --- HERO PROMO BUTTONS --- */
		.hero-promo {
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			gap: 28px;
			margin: 28px 0 0 0;
			width: 100%;
		}

		.hero-btn,
		.hero-btn-bonus {
			display: inline-block;
			min-width: 220px;
			padding: 20px 38px;
			font-size: 1.22em;
			font-weight: 900;
			text-transform: uppercase;
			letter-spacing: 0.04em;
			border-radius: 32px;
			border: none;
			outline: none;
			cursor: pointer;
			box-shadow: 0 6px 32px #FFD24C55, 0 2px 12px #0003;
			background: linear-gradient(90deg, #FFD24C 0%, #D79E3E 100%);
			color: #18191B;
			text-decoration: none;
			position: relative;
			overflow: hidden;
			transition:
				background 0.22s cubic-bezier(.4, 0, .2, 1),
				color 0.22s cubic-bezier(.4, 0, .2, 1),
				box-shadow 0.22s cubic-bezier(.4, 0, .2, 1),
				transform 0.18s cubic-bezier(.4, 0, .2, 1);
		}

		.hero-btn-bonus {
			background: linear-gradient(90deg, #ffb400 0%, #FFD24C 100%);
			color: #18191B;
			box-shadow: 0 8px 36px #FFD24C88, 0 2px 12px #0003;
			border: 2.5px solid #FFD24C;
		}

		.hero-btn::after,
		.hero-btn-bonus::after {
			content: '';
			position: absolute;
			left: 50%;
			top: 50%;
			width: 0;
			height: 0;
			background: radial-gradient(circle, #fffbe6cc 0%, transparent 80%);
			opacity: 0.7;
			transform: translate(-50%, -50%);
			transition: width 0.4s, height 0.4s;
			z-index: 0;
			pointer-events: none;
		}

		.hero-btn:hover::after,
		.hero-btn-bonus:hover::after,
		.hero-btn:focus::after,
		.hero-btn-bonus:focus::after {
			width: 260px;
			height: 260px;
		}

		.hero-btn:hover,
		.hero-btn:focus,
		.hero-btn-bonus:hover,
		.hero-btn-bonus:focus {
			background: #FFD24C;
			color: #18191B;
			box-shadow: 0 12px 40px #FFD24C99, 0 2px 12px #0003;
			transform: translateY(-3px) scale(1.045);
			z-index: 1;
		}

		@media (max-width: 900px) {
			.hero-promo {
				gap: 18px;
			}

			.hero-btn,
			.hero-btn-bonus {
				min-width: 160px;
				font-size: 1.05em;
				padding: 14px 18px;
			}
		}

		@media (max-width: 600px) {
			.hero-promo {
				flex-direction: column;
				align-items: center;
				gap: 14px;
			}

			.hero-btn,
			.hero-btn-bonus {
				width: 100%;
				min-width: 0;
				font-size: 1em;
				padding: 13px 10px;
			}
		}

		.hero-video {
			margin-top: 24px;
			max-width: 420px;
			width: 100%;
			border-radius: 14px;
			overflow: hidden;
			box-shadow: 0 2px 12px #FFD24C33, 0 2px 8px #0002;
			border: 2px solid #FFD24C;
			background: #23242a;
		}

		.hero-video iframe {
			width: 100%;
			height: 240px;
			border: none;
			display: block;
			background: #000;
		}

		@media (max-width: 900px) {
			.hero-content {
				flex-direction: column;
				align-items: center;
				gap: 24px;
			}

			.hero-media,
			.hero-info {
				max-width: 100%;
				min-width: 0;
			}

			.hero-video {
				max-width: 100%;
			}

			.hero-main {
				padding: 24px 4vw 18px 4vw;
			}

			.hero-info h1 {
				font-size: 1.5rem;
			}

			.hero-timer {
				font-size: 1.1em;
				padding: 10px 10px;
			}

			.hero-btn,
			.hero-btn-bonus {
				font-size: 1em;
				padding: 13px 18px;
			}
		}

		@media (max-width: 600px) {
			.hero-main {
				margin: 14px 0 18px 0;
				padding: 12px 2vw 12px 2vw;
			}

			.hero-img {
				max-width: 98vw;
			}

			.hero-info h1 {
				font-size: 1.1rem;
			}

			.hero-timer {
				font-size: 0.98em;
			}

			.hero-btn,
			.hero-btn-bonus {
				font-size: 0.98em;
				padding: 10px 10px;
			}

			.hero-video iframe {
				height: 180px;
			}
		}
	