/* Общие стили и переменные */
:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --tertiary-black: #2d2d2d;
    --primary-yellow: #FFD700;
    --secondary-yellow: #FFA500;
    --accent-yellow: #FFFF00;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --border-gray: #444444;
}

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

/* Основные стили для body и html */
html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-white);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Кнопки */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    color: var(--primary-black);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--secondary-yellow), var(--primary-yellow));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn--secondary {
    background: transparent;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
}

.btn--secondary:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

/* Header */
.header {
    background-color: var(--primary-black);
    border-bottom: 1px solid var(--primary-yellow);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header__left {
    flex-shrink: 0;
}

.header__center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.header__right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo__img {
    height: 40px;
    width: auto;
}

.logo__text {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    line-height: 1;
}

.logo__text span {
    color: var(--text-white);
    font-size: 16px;
}

.logo__text .accent {
    color: var(--primary-yellow);
    font-size: 20px;
}

/* Navigation */
.nav__list {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__list a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
}

.btn--outline {
    color: var(--primary-yellow);
    border: 1px solid var(--primary-yellow);
    background: transparent;
}

.btn--outline:hover {
    background: rgba(255, 215, 0, 0.1);
}

.btn--primary {
    background: var(--primary-yellow);
    color: var(--primary-black);
    border: 1px solid var(--primary-yellow);
}

.btn--primary:hover {
    background: var(--secondary-yellow);
    border-color: var(--secondary-yellow);
}

/* Burger */
.burger {
    display: none;
    width: 30px;
    height: 30px;
    position: relative;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    z-index: 102;
}

.burger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--primary-yellow);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.3s;
}

.burger span::before,
.burger span::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--primary-yellow);
    position: absolute;
    left: 0;
    transition: transform 0.3s;
}

.burger span::before {
    top: -10px;
}

.burger span::after {
    bottom: -10px;
}

.burger.active span {
    background-color: transparent;
}

.burger.active span::before {
    transform: rotate(45deg);
    top: 0;
}

.burger.active span::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background-color: var(--secondary-black);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}

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

.mobile-menu__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
}

.mobile-menu__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu__logo .logo__img {
    height: 35px;
    width: auto;
}

.mobile-menu__logo .logo__text {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    line-height: 1;
}

.mobile-menu__logo .logo__text span {
    color: var(--text-white);
    font-size: 14px;
}

.mobile-menu__logo .logo__text .accent {
    color: var(--primary-yellow);
    font-size: 16px;
}

.mobile-menu__close {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.mobile-menu__close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu__close span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    background: var(--text-white);
    transition: background 0.3s ease;
}

.mobile-menu__close:hover span {
    background: var(--primary-yellow);
}

.mobile-menu__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav {
    flex: 1;
    padding: 20px;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 15px 0;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--primary-yellow);
}

.mobile-auth {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-auth .btn {
    width: 100%;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Media Queries */
@media (min-width: 1153px) {
    .burger {
        display: none;
    }
    
    .mobile-menu {
        display: none;
    }
    
    .menu-overlay {
        display: none;
    }
    
    .header__center {
        display: flex;
    }
    
    .auth-buttons {
        display: flex;
    }
}

@media (max-width: 1152px) {
    .header__center {
        display: none;
    }

    .auth-buttons {
        display: none;
    }

    .burger {
        display: block;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        max-width: 280px;
    }
    
    .mobile-menu__inner {
        padding: 70px 15px 15px;
    }
    
    .logo__img {
        height: 35px;
    }
    
    .logo__text span {
        font-size: 14px;
    }
    
    .logo__text .accent {
        font-size: 18px;
    }
}

/* Основной контент */
.content {
    max-width: 100%;
}

.content > div {
    margin-bottom: 40px;
}

.content > div:last-child {
    margin-bottom: 0;
}

/* Заголовки секций */
h1.section-title {
    font-size: 40px;
    color: var(--primary-yellow);
    text-align: center;
    margin-bottom: 35px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

/* Enhanced main title */
h1.main-title {
    font-size: 44px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 45px;
    background: linear-gradient(45deg, var(--text-white), var(--primary-yellow) 50%, var(--secondary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

h1.main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 3px;
}

.highlight {
    color: var(--primary-yellow);
    -webkit-text-fill-color: var(--primary-yellow);
    text-shadow: 0 0 10px var(--primary-yellow);
}

/* Контент о казино */
.about__content {
    max-width: 900px;
    margin: 0 auto 40px;
}

.about__content p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.about__content h2 {
    font-size: 28px;
    color: var(--primary-yellow);
    margin: 30px 0 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about__content strong {
    color: var(--primary-yellow);
    font-weight: bold;
}

/* Game categories */
.about__content h3 {
    font-size: 20px;
    color: var(--primary-yellow);
    margin: 25px 0 15px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.game-categories {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px 30px;
    margin: 25px 0;
    border: 1px solid var(--border-gray);
}

.game-categories ul {
    list-style: none;
    padding: 0;
}

.game-categories li {
    color: var(--text-gray);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-gray);
    font-size: 16px;
}

.game-categories li:last-child {
    border-bottom: none;
}

/* Bonus table */
.bonus-table-container {
    margin: 30px 0;
}

.table-responsive {
    overflow-x: auto;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid var(--border-gray);
}

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-gray);
}

.bonus-table th {
    background-color: rgba(0, 0, 0, 0.4);
    color: var(--primary-yellow);
    font-weight: bold;
    text-align: left;
    padding: 15px;
    border-bottom: 2px solid var(--primary-yellow);
}

.bonus-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-gray);
}

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

.bonus-table tr:hover {
    background-color: rgba(255, 215, 0, 0.05);
}

/* Enhanced Table Styles */
.enhanced-table {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    width: 100%;
    table-layout: fixed;
}

.enhanced-table th {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    padding: 16px 15px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    border-bottom: 2px solid var(--primary-yellow);
}

.enhanced-table tr {
    transition: all 0.3s ease;
}

.enhanced-table tr.primary-row {
    background-color: rgba(255, 215, 0, 0.05);
}

.enhanced-table tr.special-row {
    background-color: rgba(255, 215, 0, 0.1);
}

.enhanced-table tr:hover {
    background-color: rgba(255, 215, 0, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.highlight-value {
    color: var(--primary-yellow);
    font-weight: bold;
}

.bonus-type {
    width: 25%;
}

.bonus-amount {
    width: 35%;
}

.bonus-wager, .bonus-time {
    width: 20%;
}

/* Media queries for table */
@media (max-width: 768px) {
    .bonus-table th, 
    .bonus-table td {
        padding: 10px;
        font-size: 14px;
    }
    
    .game-categories {
        padding: 15px 20px;
    }
    
    h1.main-title {
        font-size: 32px;
        padding-bottom: 12px;
        margin-bottom: 35px;
        line-height: 1.3;
    }
    
    h1.main-title::after {
        width: 80px;
        height: 2px;
    }
    
    .enhanced-table {
        table-layout: auto;
    }
    
    .bonus-type, .bonus-amount, .bonus-wager, .bonus-time {
        width: auto;
    }
}

@media (max-width: 480px) {
    .bonus-table th, 
    .bonus-table td {
        padding: 8px 5px;
        font-size: 12px;
    }
    
    .about__content h3 {
        font-size: 18px;
    }
    
    .game-categories {
        padding: 12px 15px;
    }
    
    .game-categories li {
        font-size: 14px;
    }
    
    h1.main-title {
        font-size: 26px;
        padding-bottom: 10px;
        margin-bottom: 25px;
        white-space: normal;
        line-height: 1.3;
    }
    
    h1.main-title::after {
        width: 60px;
    }
    
    .enhanced-table th {
        font-size: 12px;
        padding: 10px 5px;
    }
    
    .highlight-value {
        display: block;
        margin-bottom: 3px;
    }
}

@media (max-width: 380px) {
    .table-responsive {
        margin: 0 -10px;
        width: calc(100% + 20px);
        border-radius: 0;
    }
    
    .bonus-table th, 
    .bonus-table td {
        padding: 6px 4px;
        font-size: 11px;
    }
    
    .enhanced-table th {
        font-size: 11px;
        padding: 8px 4px;
        letter-spacing: 0;
    }
}

/* Advantages list */
.advantages-list {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px 30px;
    margin: 25px 0;
    border: 1px solid var(--border-gray);
}

.advantages-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 10px 20px;
}

.advantages-list li {
    color: var(--text-gray);
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
}

.advantages-list li::before {
    content: "✓";
    color: var(--primary-yellow);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Mobile Features */
.mobile-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
    padding: 0 10px;
}

.feature {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(45, 45, 45, 0.7));
    border-radius: 20px;
    padding: 30px 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 2px solid transparent;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 18px;
    z-index: 1;
}

.feature:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-yellow);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 32px;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 8px 35px rgba(255, 215, 0, 0.7);
    }
}

.feature-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.feature-content h3 {
    font-size: 20px;
    color: var(--primary-yellow);
    margin: 0 0 12px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feature:hover .feature-content h3 {
    color: var(--accent-yellow);
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.feature-content p {
    color: var(--text-gray);
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.feature:hover .feature-content p {
    color: var(--text-white);
}

/* Media queries for new sections */
@media (max-width: 768px) {
    .advantages-list {
        padding: 15px 20px;
    }
    
    .advantages-list ul {
        grid-template-columns: 1fr;
    }
    
    .mobile-features {
        gap: 25px;
        margin: 30px 0;
        padding: 0 5px;
    }
    
    .feature {
        padding: 25px 20px;
        gap: 15px;
    }
    
    .feature-content h3 {
        font-size: 18px;
    }
    
    .feature-content p {
        font-size: 14px;
    }
    
    .feature-icon {
        min-width: 45px;
        height: 45px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .advantages-list {
        padding: 12px 15px;
    }
    
    .advantages-list li {
        font-size: 14px;
    }
    
    .mobile-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 25px 0;
        padding: 0;
    }
    
    .feature {
        padding: 20px 18px;
        border-radius: 16px;
    }
    
    .feature-content h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .feature-content p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .feature-icon {
        min-width: 40px;
        height: 40px;
        font-size: 24px;
        border-radius: 10px;
    }
}

/* Platform Specifications */
.platform-specs {
    margin: 30px 0;
}

.platform-specs h3 {
    margin-bottom: 20px;
}

.platform-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-gray);
}

.platform-table tr {
    transition: background-color 0.3s ease;
}

.platform-table tr:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.3);
}

.platform-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.1);
}

.platform-table tr:hover {
    background-color: rgba(255, 215, 0, 0.05);
}

.platform-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-gray);
}

.platform-table tr:last-child td {
    border-bottom: none;
}

.param-name {
    width: 40%;
    font-weight: bold;
    color: var(--primary-yellow);
}

.param-value {
    width: 60%;
    color: var(--text-white);
}

/* Media queries for platform table */
@media (max-width: 768px) {
    .platform-table td {
        padding: 10px;
        font-size: 14px;
    }
    
    .param-name {
        width: 45%;
    }
    
    .param-value {
        width: 55%;
    }
}

@media (max-width: 480px) {
    .platform-table td {
        padding: 8px;
        font-size: 12px;
    }
}

.content-image {
    margin: 2rem 0;
    text-align: center;
}

.content-banner {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Special Content Image Styles */
.content-image--special {
    margin: 3rem 0;
    padding: 20px;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.2), rgba(255, 215, 0, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.image-wrapper {
    position: relative;
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-wrapper:hover {
    transform: translateY(-5px);
}

.content-banner--glow {
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.2));
}

.image-wrapper:hover .content-banner--glow {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-wrapper:hover .image-caption {
    transform: translateY(0);
}

.caption-text {
    color: var(--primary-yellow);
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .content-image--special {
        margin: 2rem 0;
        padding: 15px;
    }
    
    .caption-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .content-image--special {
        margin: 1.5rem 0;
        padding: 10px;
    }
    
    .caption-text {
        font-size: 14px;
    }
}

/* Navigation Menu */
.nav-menu {
    background: linear-gradient(to bottom, var(--secondary-black), var(--primary-black));
    border-bottom: 1px solid var(--border-gray);
    padding: 10px 0;
    position: sticky;
    top: 80px;
    z-index: 900;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-yellow);
    background: rgba(255, 215, 0, 0.1);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Media Queries for Navigation */
@media (max-width: 768px) {
    .nav-menu {
        top: 70px;
        padding: 8px 0;
    }
    
    .nav-list {
        gap: 10px;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .nav-list::-webkit-scrollbar {
        display: none;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        top: 60px;
        padding: 6px 0;
    }
    
    .nav-link {
        padding: 5px 10px;
        font-size: 12px;
    }
}

/* Бургер кнопка */
.burger-btn {
    display: none;
    width: 40px;
    height: 40px;
    padding: 8px;
    cursor: pointer;
    margin-left: 20px;
    border-radius: 8px;
    background: rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.burger-btn:hover {
    background: rgba(255, 215, 0, 0.2);
}

.burger-btn__lines {
    position: relative;
    width: 100%;
    height: 100%;
}

.burger-btn__lines span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-yellow);
    transition: all 0.3s ease;
}

.burger-btn__lines span:nth-child(1) {
    top: 25%;
}

.burger-btn__lines span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.burger-btn__lines span:nth-child(3) {
    bottom: 25%;
}

.burger-btn.active .burger-btn__lines span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.burger-btn.active .burger-btn__lines span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active .burger-btn__lines span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Main Content */
.main {
    padding-top: 90px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero {
    margin-bottom: 50px;
}

.hero__content {
    text-align: center;
}

.hero__banner-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
    max-width: 100%;
}

.hero__banner-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.4);
}

.hero__banner {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.hero__banner-wrapper:hover .hero__banner {
    transform: scale(1.02);
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.4s ease;
}

.hero__text {
    text-align: center;
    color: var(--text-white);
    padding: 20px;
    max-width: 90%;
}

.hero__title {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-yellow);
    text-shadow: 
        0 0 20px var(--primary-yellow),
        0 0 40px var(--primary-yellow),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    animation: glow 2s ease-in-out infinite alternate;
    text-transform: uppercase;
    letter-spacing: 3px;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 20px var(--primary-yellow),
            0 0 40px var(--primary-yellow),
            2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    to {
        text-shadow: 
            0 0 30px var(--primary-yellow),
            0 0 60px var(--primary-yellow),
            0 0 80px var(--primary-yellow),
            2px 2px 4px rgba(0, 0, 0, 0.8);
    }
}

.hero__tagline {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 30px;
    background: linear-gradient(45deg, var(--text-white), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__actions .btn {
    min-width: 200px;
    padding: 15px 30px;
    font-size: 18px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--secondary-black), var(--tertiary-black));
    border-top: 1px solid var(--primary-yellow);
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer__content {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
}

.footer__main {
    max-width: 600px;
}

.footer__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer__logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-white);
}

.footer__logo-accent {
    color: var(--primary-yellow);
}

.footer__description {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer__warning {
    color: var(--primary-yellow);
    font-weight: bold;
    font-size: 16px;
    margin: 0;
}

.footer__bottom {
    border-top: 1px solid var(--border-gray);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__copyright {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

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

.payments__text {
    color: var(--text-gray);
    font-size: 14px;
}

.payments__icons {
    display: flex;
    gap: 10px;
}

.payment__item {
    background: var(--tertiary-black);
    color: var(--primary-yellow);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid var(--primary-yellow);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main {
        padding-top: 70px;
    }

    .hero__banner-wrapper {
        border-radius: 15px;
        margin: 0 10px;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__tagline {
        font-size: 20px;
    }

    .hero__actions .btn {
        min-width: 180px;
        padding: 12px 25px;
        font-size: 16px;
    }

    .footer {
        padding: 30px 0 15px;
    }

    .footer__content {
        margin-bottom: 20px;
    }

    .footer__logo {
        margin-bottom: 15px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer__payments {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .main {
        padding-top: 60px;
    }

    .hero__banner-wrapper {
        border-radius: 10px;
        margin: 0 5px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__tagline {
        font-size: 16px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
        min-width: auto;
    }

    .footer__logo-text {
        font-size: 20px;
    }

    .footer__warning {
        font-size: 14px;
    }

    .payment__item {
        font-size: 11px;
        padding: 4px 8px;
    }
} 