/* ============================================
   НОВЫЙ ДИЗАЙН: Темная неоновая тема
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

*,
::before,
::after {
    box-sizing: border-box;
}

:root {
    /* Основная палитра */
    --bg-primary: #0a0e17;
    --bg-secondary: #111827;
    --bg-card: #1a2235;
    --bg-card-hover: #232d42;
    
    /* Акцентные цвета */
    --accent-primary: #00f0ff;
    --accent-secondary: #ff00aa;
    --accent-tertiary: #ffdd00;
    --accent-gradient: linear-gradient(135deg, #00f0ff 0%, #ff00aa 50%, #ffdd00 100%);
    --accent-gradient-hover: linear-gradient(135deg, #ffdd00 0%, #ff00aa 50%, #00f0ff 100%);
    
    /* Текст */
    --text-primary: #ffffff;
    --text-secondary: #a3b3c9;
    --text-muted: #6b7b91;
    
    /* Границы и тени */
    --border-color: rgba(255, 255, 255, 0.08);
    --glow-cyan: 0 0 30px rgba(0, 240, 255, 0.3);
    --glow-magenta: 0 0 30px rgba(255, 0, 170, 0.3);
    --glow-yellow: 0 0 30px rgba(255, 221, 0, 0.3);
    
    /* Кнопки */
    --btn-bg: linear-gradient(135deg, #00f0ff 0%, #00b4d8 100%);
    --btn-bg-hover: linear-gradient(135deg, #00b4d8 0%, #00f0ff 100%);
    --btn-bg-cta: linear-gradient(135deg, #ff00aa 0%, #ff5500 100%);
    --btn-bg-cta-hover: linear-gradient(135deg, #ff5500 0%, #ff00aa 100%);
}

html {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 17px;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Фоновый эффект */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 0, 170, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 221, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Типографика */
h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--accent-primary);
}

p {
    margin: 1rem 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

/* ============================================
   HEADER
   ============================================ */

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    position: relative;
}

.logo {
    height: 50px;
    width: auto;
    margin: 0;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.3));
    transition: filter 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.5));
}

/* Navigation */
.nav-list {
    display: none;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .nav-list {
        display: flex;
    }
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Header Button */
.header-box {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .header-box {
        display: flex;
    }
}

.line-vertical_navbar {
    display: none;
}

.header-btn {
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--btn-bg-cta);
    color: var(--text-primary);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(255, 0, 170, 0.3);
}

.header-btn:hover {
    background: var(--btn-bg-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 170, 0.4);
}

/* Blinking animation */
.blinking-btn {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 0, 170, 0.3);
    }
    50% {
        box-shadow: 0 4px 40px rgba(255, 0, 170, 0.6);
    }
}

/* Mobile Menu Button */
.menuButton {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .menuButton {
        display: none;
    }
}

/* Добавляем relative для header чтобы absolute работал */
.header {
    position: sticky;
}

.menuButton:hover {
    border-color: var(--accent-primary);
    background: rgba(0, 240, 255, 0.1);
}

.menuButton span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menuButton.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.menuButton.active span {
    background: var(--bg-primary);
}

.menuButton.active .top {
    transform: translateY(8px) rotate(45deg);
}

.menuButton.active .mid {
    opacity: 0;
}

.menuButton.active .bot {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation */
.nav-mob {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 14, 23, 0.98);
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
}

.nav-mob.is-visible {
    transform: translateY(0);
}

.nav-list-mob {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    min-height: 100vh;
    padding: 6rem 2rem 2rem;
}

.nav-link-mob {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-mob:hover,
.nav-link-mob.active {
    color: var(--accent-primary);
}

.nav-list-mob .header-btn {
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.section-top {
    padding-top: 1rem;
}

@media (min-width: 768px) {
    .section-top {
        padding-top: 2rem;
    }
}

.main_block {
    display: flex;
    flex-direction: column-reverse;
}

@media (min-width: 768px) {
    .main_block {
        flex-direction: column;
    }
}

.hero-text {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-secondary);
    margin: 1.5rem auto;
    max-width: 700px;
}

/* ============================================
   DEMO BLOCK / GAME PREVIEW
   ============================================ */

.demo-main {
    margin: 2rem 0;
}

/* Скрываем блок с iframe игры */
#game-container {
    display: none;
}

.iframe-bwb {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.iframe-bwb__bg-image {
    width: 100%;
    aspect-ratio: 16/9;
    background-image: url('../images/Aviatrix-background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.iframe-bwb__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.55);
}

.btn-demo {
    padding: 1rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-primary);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-demo:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    box-shadow: var(--glow-cyan);
}

.button-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    background: var(--btn-bg-cta);
    color: var(--text-primary);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(255, 0, 170, 0.3);
    position: relative;
    top: auto;
    left: auto;
    transform: none;
}

.button-demo:hover {
    background: var(--btn-bg-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 170, 0.5);
    color: var(--text-primary);
}

.button-demo svg {
    width: 24px;
    height: 24px;
}

.button-demo svg path {
    fill: var(--text-primary);
}

@media (min-width: 768px) {
    .iframe-bwb__content {
        flex-direction: row;
        gap: 2rem;
    }
    
    .btn-demo {
        font-size: 1.1rem;
        padding: 1.25rem 3rem;
    }
    
    .button-demo {
        font-size: 1.1rem;
        padding: 1.25rem 3rem;
    }
}

/* ============================================
   CTA BUTTONS
   ============================================ */

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    background: var(--btn-bg-cta);
    color: var(--text-primary);
    border-radius: 50px;
    transition: all 0.3s ease;
    max-width: 350px;
    margin: 2.5rem auto;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(255, 0, 170, 0.3);
}

.button:hover {
    background: var(--btn-bg-cta-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 0, 170, 0.4);
}

.button:active {
    transform: translateY(-1px);
}

.button-none {
    display: none;
    padding: 1.25rem 2.5rem;
    font-weight: 600;
    background: var(--btn-bg-cta);
    color: var(--text-primary);
    border-radius: 50px;
    transition: all 0.3s ease;
    max-width: 350px;
    margin: 1.5rem auto;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(255, 0, 170, 0.3);
}

.button-none.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-none:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 0, 170, 0.4);
}

/* ============================================
   IMAGE BOXES
   ============================================ */

.img-box {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin: 1.5rem auto;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

/* Pros & Cons */
.pros-cons {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1rem 0;
    border: 1px solid var(--border-color);
}

.pros-cons p {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pros-cons p::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

/* Lists */
ol {
    counter-reset: item;
    padding-left: 0;
}

ol li {
    display: block;
    margin: 1rem 0;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    padding-left: 4rem;
    color: var(--text-secondary);
}

ol li::before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--bg-primary);
}

ol li strong {
    display: block;
    margin-bottom: 0.25rem;
}

/* Conclusion */
.conclusion {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 240, 255, 0.05) 100%);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: var(--glow-cyan);
}

.conclusion h2 {
    margin-top: 0;
}

.conclusion h2::after {
    background: var(--accent-primary);
}

/* ============================================
   TABLES
   ============================================ */

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

th {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2) 0%, rgba(255, 0, 170, 0.2) 100%);
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    font-size: 0.95rem;
}

td {
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
}

tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* ============================================
   AUTHOR SECTION
   ============================================ */

.author-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .author-container {
        flex-direction: row;
        align-items: flex-start;
    }
}

.author-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .author-left {
        flex: 0 0 200px;
        align-items: flex-start;
    }
}

.author-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-primary);
    box-shadow: var(--glow-cyan);
}

.author-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    text-decoration: none;
}

.author-alias {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.author-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.author-right {
    flex: 1;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .author-right {
        padding-left: 1.5rem;
    }
}

/* ============================================
   FEATURE BOXES
   ============================================ */

.feature-box-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .feature-box-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .feature-box {
        flex-direction: row;
        text-align: left;
    }
}

.feature-img img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .feature-img {
        flex: 0 0 200px;
    }
}

.feature-text {
    padding: 1rem 0;
}

@media (min-width: 768px) {
    .feature-text {
        flex: 1;
        padding: 0 0 0 1.5rem;
    }
}

.feature-text h3 {
    font-size: 1.25rem;
    margin: 0.5rem 0;
    color: var(--accent-primary);
}

.feature-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   CARDS
   ============================================ */

.card-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
}

.card {
    flex: 1 1 250px;
    max-width: 300px;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-primary);
}

.card img {
    width: 100%;
    max-width: 120px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.2));
}

.card h3 {
    color: var(--text-primary);
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .card-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        width: 100%;
        max-width: 100%;
    }
}

/* ============================================
   ACCORDION
   ============================================ */

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .accordion-container {
        flex-direction: row;
        align-items: flex-start;
    }
}

.accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .accordion {
        width: 40%;
    }
}

.accordion-button {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.accordion-content.active {
    max-height: 500px;
    padding: 1rem;
}

.video-content {
    display: none;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .video-content {
        display: block;
        width: 60%;
    }
}

iframe.embed_feature {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

#video-frame-mob {
    width: 100%;
    height: 200px;
    border-radius: 12px;
}

@media (min-width: 768px) {
    #video-frame-mob {
        display: none;
    }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

#scrollToTopBtn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: none;
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.3);
    transition: all 0.3s ease;
}

#scrollToTopBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.5);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-secondary);
    padding: 3rem 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-left {
    flex: 1 1 300px;
}

.logo-footer {
    height: 50px;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.social-icons img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.social-icons a:hover img {
    filter: brightness(0);
    opacity: 1;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.badges img {
    height: 36px;
    opacity: 0.6;
    filter: grayscale(100%) brightness(2);
    transition: all 0.3s ease;
}

.badges a:hover img {
    opacity: 1;
    filter: none;
}

.footer-links {
    display: flex;
    flex: 1 1 300px;
    justify-content: flex-end;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer p {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        justify-content: flex-start;
        gap: 1.5rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.no-scroll {
    overflow: hidden;
}

.hidden {
    position: absolute;
    left: -9999px;
    visibility: hidden;
}

.bold {
    font-weight: 700;
}

.bonusnow {
    display: none;
}

@media (min-width: 768px) {
    .bonusnow {
        display: inline-block;
    }
}

.flex-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .flex-box {
        flex-direction: row;
    }
}

.pulse img {
    animation: pulse-scale 3s infinite ease-in-out;
}

@keyframes pulse-scale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

/* Button Block */
.button-block {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.button-block img {
    transition: transform 0.4s ease;
}

.accordion-content.active + .button-block img {
    transform: rotate(180deg);
}

/* Language Dropdown (keep structure) */
.language-dropdown,
.lang-switcher-new,
.lang-selector-mobile {
    display: none;
}

@media (min-width: 992px) {
    .language-dropdown,
    .lang-switcher-new {
        display: block;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling indicator */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ============================================
   RESPONSIVE FINE-TUNING
   ============================================ */

@media (max-width: 480px) {
    .section {
        padding: 2rem 1rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.35rem;
    }
    
    .button,
    .button-demo,
    .btn-demo {
        width: 100%;
        max-width: none;
    }
}