/* ========================================
   НОВЫЙ ДИЗАЙН: Cyberpunk / Neon Tech
   Тёмная тема с неоновыми акцентами
======================================== */

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

html {
    font-family: 'Orbitron', 'Rajdhani', system-ui, sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

hr {
    height: 0;
    color: inherit;
}

abbr[title] {
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp,
pre {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
select {
    text-transform: none;
}

p {
    margin: 12px 0;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
    -webkit-appearance: button;
}

::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

legend {
    padding: 0;
}

progress {
    vertical-align: baseline;
}

[type='search'] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

summary {
    display: list-item;
}

/* ========================================
   CSS VARIABLES - NEON THEME
======================================== */
:root {
    /* Основные цвета */
    --bg-primary: #0a0e17;
    --bg-secondary: #111827;
    --bg-card: rgba(17, 24, 39, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.03);
    
    /* Текст */
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Неоновые акценты */
    --neon-cyan: #00f5ff;
    --neon-purple: #a855f7;
    --neon-pink: #ec4899;
    --neon-green: #10b981;
    --neon-orange: #f97316;
    
    /* Градиенты */
    --gradient-neon: linear-gradient(135deg, #00f5ff 0%, #a855f7 50%, #ec4899 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e17 0%, #1a1f2e 100%);
    --gradient-card: linear-gradient(145deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.8));
    --gradient-btn: linear-gradient(135deg, #00f5ff 0%, #a855f7 100%);
    --gradient-btn-hover: linear-gradient(135deg, #00d4e0 0%, #9333ea 100%);
    
    /* Эффекты */
    --glow-cyan: 0 0 20px rgba(0, 245, 255, 0.5);
    --glow-purple: 0 0 20px rgba(168, 85, 247, 0.5);
    --glow-pink: 0 0 20px rgba(236, 72, 153, 0.5);
    
    /* Границы */
    --border-subtle: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(0, 245, 255, 0.3);
}

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

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

html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

a,
button {
    cursor: pointer;
    text-decoration: none;
}

ol,
ul,
menu {
    list-style: none;
}

img {
    max-inline-size: 100%;
    max-block-size: 100%;
}

input,
textarea {
    -webkit-user-select: auto;
}

meter {
    appearance: revert;
}

.bold {
    font-weight: 900;
}

:where(pre) {
    all: revert;
    box-sizing: border-box;
}

::placeholder {
    color: var(--text-muted);
}

::marker {
    content: initial;
}

:where([hidden]) {
    display: none;
}

:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-user-select: auto;
}

:where([draggable="true"]) {
    -webkit-user-drag: element;
}

:where(dialog:modal) {
    all: revert;
    box-sizing: border-box;
}

/* ========================================
   BODY & BASE STYLES
======================================== */
body {
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    box-sizing: border-box;
    overflow-x: hidden;
    margin: 0;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(ellipse at 20% 0%, rgba(0, 245, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    color: var(--text-primary);
    font-weight: 400;
    min-height: 100vh;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 245, 255, 0.3);
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
        letter-spacing: 0.2em;
    }
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-neon);
    box-shadow: var(--glow-cyan);
}

h3,
h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 25px 0 12px;
    color: var(--text-primary);
}

/* ========================================
   SECTION
======================================== */
.section {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--text-primary);
}

.section-top {
    padding-top: 10px;
}

@media (min-width: 762px) {
    .section-top {
        padding-top: 30px;
    }
}

/* ========================================
   HEADER
======================================== */
.header {
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-weight: 600;
    width: 100%;
    z-index: 998;
    transition: all 0.4s ease;
}

.logo {
    margin-left: 15px;
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.3));
    transition: filter 0.3s ease;
}

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

@media (min-width: 762px) {
    .logo {
        margin-right: 135px;
        margin-left: 15px;
    }
}

.logo-link {
    margin-right: 50px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
}

@media (min-width: 992px) {
    .header-container {
        justify-content: space-between;
        max-width: 1200px;
    }
    
    nav {
        margin-left: 75px;
    }
}

.nav-list {
    display: none;
}

@media (min-width: 992px) {
    .nav-list {
        display: flex;
        gap: 35px;
        align-items: center;
    }
}

.nav-item {
    position: relative;
}

.nav-item:hover {
    color: var(--neon-cyan);
}

.nav-link {
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-neon);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

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

.nav-link.active {
    color: var(--neon-cyan);
}

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

/* Header Button Box */
.header-box {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-left: 50px;
}

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

.line-vertical_navbar {
    background: linear-gradient(180deg, transparent, var(--neon-cyan), transparent);
    width: 1px;
    height: 2rem;
}

.header-btn {
    padding: 0.9rem 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--gradient-btn);
    color: var(--bg-primary);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.header-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan), var(--glow-purple);
}

.header-btn:hover::before {
    left: 100%;
}

@media (min-width: 768px) {
    .header-btn {
        background: var(--gradient-btn);
        color: var(--bg-primary);
    }
}

/* Mobile Menu Button */
.menuButton {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s;
    position: absolute;
    right: 15px;
    top: 20px;
    z-index: 999;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
}

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

.menuButton.active {
    background: var(--bg-secondary);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.menuButton:hover {
    border-color: var(--neon-cyan);
}

.menuButton span {
    width: 22px;
    height: 2px;
    background: var(--neon-cyan);
    border-radius: 100px;
    transition: 0.3s ease;
    box-shadow: 0 0 5px var(--neon-cyan);
}

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

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

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

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

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

.nav-list-mob {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 100px;
}

.nav-link-mob {
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    padding: 10px 20px;
}

.nav-link-mob:hover,
.nav-link-mob.active {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

/* ========================================
   BUTTONS
======================================== */
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 18px 30px;
    color: var(--bg-primary);
    background: var(--gradient-btn);
    border-radius: 10px;
    transition: all 0.4s ease;
    max-width: 350px;
    height: 60px;
    margin: 35px auto 0;
    position: relative;
    overflow: hidden;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--glow-cyan), var(--glow-purple);
}

.button:hover::before {
    left: 100%;
}

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

.button-demo {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    top: 35%;
    left: 50%;
    z-index: 200;
    transform: translate(-50%, -50%);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 16px 35px;
    min-width: 220px;
    white-space: nowrap;
    color: var(--bg-primary);
    background: var(--gradient-btn);
    border-radius: 10px;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
}

@media (min-width: 762px) {
    .button-demo {
        font-size: 1.2rem;
        top: 40%;
        padding: 20px 35px;
        min-width: auto;
    }
}

.button-demo:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: var(--glow-cyan), var(--glow-purple);
}

.button-none {
    display: none;
    transform: translateY(20px);
    transition: all 0.5s ease;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 18px 25px;
    color: var(--bg-primary);
    background: var(--gradient-btn);
    border-radius: 10px;
    max-width: 350px;
    height: 60px;
    margin: 15px auto;
}

.button-none.show {
    display: flex;
    transform: translateY(0);
}

.button-none:hover {
    transform: scale(1.03);
    box-shadow: var(--glow-cyan);
}

/* ========================================
   MAIN BLOCK & DEMO
======================================== */
.main_block {
    display: flex;
    flex-direction: column-reverse;
}

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

.hero-text {
    font-weight: 500;
    text-align: center;
    margin: 20px auto;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.demo-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

@media (min-width: 992px) {
    .demo-main {
        align-items: center;
        flex-direction: row;
    }
}

.demo-main .iframe-bwb {
    width: 100%;
    max-height: 400px;
}

@media (min-width: 768px) {
    .demo-main .iframe-bwb {
        max-height: 650px;
    }
}

.iframe-bwb {
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--bg-secondary);
    margin: 20px 0 15px;
    border: 1px solid var(--border-subtle);
}

.iframe-bwb__bg-image {
    height: 350px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(25%) saturate(120%);
    background-image: url(../images/background_jetx.webp);
}

@media (min-width: 768px) {
    .iframe-bwb__bg-image {
        height: 500px;
    }
}

.iframe-bwb__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.iframe-bwb__button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    top: 60%;
    left: 50%;
    z-index: 200;
    transform: translate(-50%, -50%);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 14px 30px;
    min-width: 220px;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid var(--border-accent);
    border-radius: 10px;
    transition: all 0.4s ease;
    cursor: pointer;
}

@media (min-width: 768px) {
    .iframe-bwb__button {
        font-size: 1.2rem;
        padding: 18px 35px;
        min-width: auto;
    }
}

.iframe-bwb__button:hover {
    background: var(--gradient-btn);
    color: var(--bg-primary);
    border-color: transparent;
    box-shadow: var(--glow-cyan);
}

.btn-none {
    display: none;
    transition: 0.5s ease;
}

#game-container {
    margin-top: 15px;
    width: 100%;
    max-width: 100%;
    height: 350px;
    display: none;
}

@media (min-width: 768px) {
    #game-container {
        height: 500px;
    }
}

.game-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* ========================================
   IMAGE BOX
======================================== */
.img-box {
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px auto;
    border: 1px solid var(--border-subtle);
    position: relative;
}

.img-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 14, 23, 0.8) 100%);
    pointer-events: none;
}

.img-box img {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ========================================
   UTILITY CLASSES
======================================== */
.no-scroll {
    overflow: hidden;
}

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

strong {
    margin: 10px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon-cyan);
}

.bonusnow {
    display: none;
}

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

/* ========================================
   FAQ / QUESTIONS
======================================== */
.questions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--text-primary);
}

.questions-item {
    padding: 20px;
    border-radius: 12px;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.questions-item:hover {
    border-color: var(--border-accent);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.1);
}

.questions-content-box:hover .questions-title {
    color: var(--neon-cyan);
}

.questions-content-box:hover .questions-plus {
    background: var(--gradient-btn);
    border-color: transparent;
}

.questions-cover {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.questions-title {
    display: grid;
    grid-template-columns: 1fr 30px;
    cursor: pointer;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.questions-plus {
    border-radius: 8px;
    min-width: 30px;
    height: 30px;
    padding: 4px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.top-line,
.bottom-line {
    position: absolute;
    width: 12px;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 5px var(--neon-cyan);
}

.top-line {
    transform: rotate(90deg);
    transition: all 0.3s ease;
}

.questions-plus.active .top-line {
    transform: rotate(0deg);
}

.questions-content {
    overflow: hidden;
    height: 0;
    transition: height 0.3s ease;
}

@media (min-width: 768px) {
    .questions-faq {
        letter-spacing: 0.1rem;
        text-transform: uppercase;
        font-family: 'Orbitron', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        line-height: 1;
        text-align: center;
    }
}

/* ========================================
   LISTS
======================================== */
.list {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 15px;
    padding: 20px 0 0 40px;
    margin-bottom: 15px;
}

.list-vertical {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.list-item-vertical {
    flex: 1 1 300px;
    max-width: 500px;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 25px 25px 25px 60px;
    border-radius: 16px;
    position: relative;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s ease;
}

.list-item-vertical:hover {
    transform: translateY(-5px);
    border-color: var(--border-accent);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.15);
}

.list-item-vertical::before {
    content: attr(data-title);
    position: absolute;
    top: -15px;
    left: -15px;
    width: 50px;
    height: 50px;
    background: var(--gradient-btn);
    color: var(--bg-primary);
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--glow-cyan);
}

.list-item {
    position: relative;
    padding: 15px 25px 15px 50px;
    border-radius: 12px;
    font-weight: 600;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    transition: all 0.4s ease;
}

.list-item:hover {
    border-color: var(--border-accent);
    transform: translateX(5px);
}

.list-item::before {
    content: attr(data-title);
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient-btn);
    border-radius: 50%;
    z-index: 2;
    color: var(--bg-primary);
    box-shadow: var(--glow-cyan);
}

.list-item-1,
.list-item-2,
.list-item-3,
.list-item-4 {
    position: relative;
    padding: 15px 25px 15px 50px;
    border-radius: 12px;
    font-weight: 600;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    transition: all 0.4s ease;
}

.list-item-1:hover,
.list-item-2:hover,
.list-item-3:hover,
.list-item-4:hover {
    border-color: var(--border-accent);
    transform: translateX(5px);
}

.list-item-1::before,
.list-item-2::before,
.list-item-3::before,
.list-item-4::before {
    content: attr(data-title);
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient-btn);
    border-radius: 50%;
    z-index: 2;
    color: var(--bg-primary);
    box-shadow: var(--glow-cyan);
}

.list-item-none {
    list-style: disc;
    margin-left: 20px;
    color: var(--text-secondary);
}

.list-item-none::marker {
    color: var(--neon-cyan);
}

.list-item-number {
    list-style: decimal;
    margin-left: 20px;
    color: var(--text-secondary);
}

/* ========================================
   TABLES
======================================== */
.table-double {
    border-collapse: collapse;
    text-align: center;
    width: 100%;
    max-width: 900px;
    font-size: 0.95rem;
    color: var(--text-primary);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.table-double thead th {
    background: var(--gradient-card);
    text-align: center;
    padding: 16px;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: 2px solid var(--border-accent);
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table-double tbody td {
    padding: 14px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-subtle);
}

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

.table-double tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.table-double tbody tr:hover {
    background: rgba(0, 245, 255, 0.05);
}

/* ========================================
   PLUS / MINUS BOX
======================================== */
.plus-minus-box {
    margin-top: 20px;
}

@media (min-width: 992px) {
    .plus-minus-box {
        display: flex;
        gap: 20px;
    }
}

.group {
    margin-bottom: 25px;
    padding: 25px;
    border-radius: 16px;
    flex: 1;
    border: 1px solid var(--border-subtle);
}

.plus-group {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.02));
    border-color: rgba(16, 185, 129, 0.3);
}

.minus-group {
    background: linear-gradient(145deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.02));
    border-color: rgba(239, 68, 68, 0.3);
}

.plus-minus-box ul li {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 14px 14px 14px 40px;
    margin-bottom: 12px;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.plus-minus-box ul li:hover {
    transform: translateX(5px);
}

.plus-group ul li::before {
    content: '✓';
    position: absolute;
    left: 14px;
    color: var(--neon-green);
    font-weight: bold;
    text-shadow: 0 0 10px var(--neon-green);
}

.minus-group ul li::before {
    content: '✕';
    position: absolute;
    left: 14px;
    color: #ef4444;
    font-weight: bold;
    text-shadow: 0 0 10px #ef4444;
}

/* ========================================
   REVIEW CARDS
======================================== */
.review-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-accent);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.1);
}

.positive-review {
    border-left: 4px solid var(--neon-green);
}

.positive-review .review-rating {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.neutral-review {
    border-left: 4px solid var(--neon-orange);
}

.neutral-review .review-rating {
    color: var(--neon-orange);
    text-shadow: 0 0 10px var(--neon-orange);
}

.negative-review {
    border-left: 4px solid var(--neon-pink);
}

.negative-review .review-rating {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.review-card h3 {
    margin-top: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.review-card .review-rating {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.review-card .review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ========================================
   CARDS
======================================== */
.card-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin: 30px 0;
}

.card {
    color: var(--text-primary);
    flex: 1 1 200px;
    max-width: 280px;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--border-accent);
    box-shadow: 0 20px 50px rgba(0, 245, 255, 0.15);
}

.card img {
    width: 100%;
    max-width: 150px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.card h3 {
    margin: 15px 0 10px;
    font-size: 1.1rem;
    color: var(--neon-cyan);
}

.card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

    .card {
        width: 100%;
        max-width: 90%;
    }
}

/* ========================================
   FEATURE BOX
======================================== */
.feature-box-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 25px;
    border-radius: 16px;
    margin: 10px 0;
    text-align: center;
    transition: all 0.4s ease;
}

.feature-box:hover {
    border-color: var(--border-accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.1);
}

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

.feature-text h3 {
    font-size: 1.2rem;
    margin-top: 15px;
    color: var(--neon-cyan);
}

.feature-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

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

    .feature-img {
        flex: 1;
        max-width: 250px;
    }

    .feature-text {
        flex: 2;
        padding-left: 25px;
    }

    .feature-text h3 {
        font-size: 1.4rem;
    }

    .feature-text p {
        font-size: 1rem;
    }
}

/* ========================================
   ACCORDION
======================================== */
.accordion-container {
    display: flex;
    align-items: center;
    flex-direction: column;
}

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

.accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.accordion-button {
    width: 100%;
    padding: 15px 20px;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 600;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.accordion-button:hover {
    color: var(--neon-cyan);
    border-color: var(--border-accent);
}

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

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

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

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

#video-frame-mob {
    width: 300px;
    height: 188px;
}

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

.button-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

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

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

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

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 245, 255, 0.8), 0 0 60px rgba(168, 85, 247, 0.4);
    }
}

a {
    cursor: pointer;
}

/* ========================================
   AUTHOR SECTION
======================================== */
.author-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    border-radius: 16px;
    padding: 30px;
    margin: 0 auto;
}

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

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

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

.author-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--text-primary);
    margin: 0;
}

.author-alias {
    background: var(--gradient-btn);
    color: var(--bg-primary);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

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

    .author-left {
        flex: 0 0 220px;
        align-items: flex-start;
    }

    .author-right {
        flex: 1;
        max-width: 100%;
        padding-left: 25px;
    }
}

/* ========================================
   PULSE ANIMATION
======================================== */
.pulse img {
    animation: pulse-scale 3s infinite ease-in-out;
}

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

/* ========================================
   SCROLL TO TOP BUTTON
======================================== */
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    background: var(--gradient-btn);
    color: var(--bg-primary);
    border: none;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    box-shadow: var(--glow-cyan);
    transition: all 0.3s ease;
}

#scrollToTopBtn:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan), var(--glow-purple);
}

/* ========================================
   WARNING & TIPS
======================================== */
.warning {
    background: linear-gradient(145deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
    border: 1px solid rgba(249, 115, 22, 0.4);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.warning h4 {
    color: var(--neon-orange);
    margin: 0 0 10px;
}

.tips-list {
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.tips-list h4 {
    color: var(--neon-cyan);
    margin: 0 0 15px;
}

.tips-list ul {
    padding-left: 25px;
}

.tips-list li {
    position: relative;
    padding: 8px 0;
    color: var(--text-secondary);
}

.tips-list li::before {
    content: '→';
    position: absolute;
    left: -20px;
    color: var(--neon-cyan);
}

.highlight {
    background: linear-gradient(145deg, rgba(0, 245, 255, 0.1), rgba(168, 85, 247, 0.05));
    border: 1px solid var(--border-accent);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

.highlight p {
    margin: 0;
    color: var(--text-secondary);
}

.highlight strong {
    color: var(--neon-cyan);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-top: 1px solid var(--border-subtle);
    padding: 50px 20px 30px;
    color: var(--text-primary);
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

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

.logo-footer {
    max-height: 60px;
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.3));
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

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

.social-icons a:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-3px);
}

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

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

.badges img {
    height: 35px;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
}

.badges img:hover {
    filter: grayscale(0%) brightness(1);
}

.footer-links {
    display: flex;
    flex: 1 1 300px;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .footer-links {
        gap: 50px;
    }
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

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

.footer-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.footer p {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 30px;
}

@media (max-width: 768px) {
    .footer-links {
        margin-top: 25px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        padding-left: 0;
        gap: 5px;
    }

    .footer-links ul {
        padding: 0;
        margin: 10px 0;
    }

    .footer-links ul li {
        margin-bottom: 8px;
        margin: 12px 0;
    }

    .footer-links + p {
        text-align: left;
    }
}

/* ========================================
   HERO SECTIONS
======================================== */
@media (min-width: 992px) {
    .hero-cover {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
    }
}

.hero-mob-text {
    font-weight: 600;
    margin-top: 15px;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .hero-mob-text {
        display: none;
    }
}

.hero-list-mob {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .hero-list-mob {
        display: none;
    }
}

.hero-item-mob {
    width: 100%;
    margin: 5px;
}

.hero-list {
    margin-top: 25px;
}

@media (max-width: 768px) {
    .hero-list {
        display: none;
    }
}

.hero-img-box {
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
    max-height: 400px;
    max-width: 300px;
    margin: 0 auto;
    border: 1px solid var(--border-subtle);
}

.hero-img-box img {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 992px) {
    .hero-img-box {
        max-width: 300px;
    }
}

/* ========================================
   LANGUAGE DROPDOWN (Desktop)
======================================== */
.language-dropdown {
    position: relative;
    display: none;
    margin-left: 30px;
}

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

.dropdown-btn {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    gap: 10px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-btn:hover {
    border-color: var(--border-accent);
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 120px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    z-index: 999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@media (min-width: 992px) {
    .dropdown-content {
        min-width: 140px;
    }
}

.dropdown-content.show {
    display: block;
}

.dropdown-content a {
    color: var(--text-primary);
    padding: 14px 18px;
    text-decoration: none;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: rgba(0, 245, 255, 0.1);
    color: var(--neon-cyan);
}

.language-dropdown:hover .dropdown-content {
    display: block;
}

@media (max-width: 991px) {
    .language-dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown-content.show {
        display: block;
        overflow-y: auto;
    }
}

/* Language Switcher New */
.lang-switcher-new {
    position: relative;
    display: none;
    margin-right: 20px;
}

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

.lang-btn-new {
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-primary);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.lang-btn-new:hover {
    border-color: var(--border-accent);
}

.lang-btn-new svg {
    margin-left: 4px;
    fill: var(--text-primary);
}

.lang-dropdown-new {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 400px;
    max-height: 500px;
    overflow-y: auto;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.lang-switcher-new:hover .lang-dropdown-new {
    display: block;
}

@media (max-width: 991px) {
    .lang-switcher-new:hover .lang-dropdown-new {
        display: none;
    }

    .lang-dropdown-new.show {
        display: block;
        max-height: 80vh;
    }
}

.lang-group-new {
    background: var(--bg-glass);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 15px;
}

.lang-group-title-new {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lang-option-new {
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-option-new:hover {
    background: rgba(0, 245, 255, 0.1);
}

.lang-option-new.selected {
    background: rgba(0, 245, 255, 0.15);
    border: 1px solid var(--border-accent);
}

.lang-option-new img {
    flex-shrink: 0;
}

.lang-option-new .lang-name {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.lang-option-new .lang-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.lang-option-new .lang-check {
    margin-left: auto;
    font-size: 1.2rem;
    color: var(--neon-cyan);
    font-weight: bold;
}

.lang-dropdown-new::-webkit-scrollbar {
    width: 6px;
}

.lang-dropdown-new::-webkit-scrollbar-track {
    background: transparent;
}

.lang-dropdown-new::-webkit-scrollbar-thumb {
    background-color: var(--border-subtle);
    border-radius: 6px;
}

.lang-dropdown-new::-webkit-scrollbar-thumb:hover {
    background-color: var(--text-muted);
}

.lang-dropdown-new {
    scrollbar-width: thin;
    scrollbar-color: var(--border-subtle) transparent;
}

/* Mobile Language Selector */
.lang-selector-mobile {
    position: absolute;
    top: 30px;
    left: 20px;
    z-index: 999;
}

.lang-box {
    position: relative;
    width: auto;
}

.lang-toggle {
    background: var(--gradient-btn);
    color: var(--bg-primary);
    border: none;
    padding: 10px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

.lang-toggle img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.lang-list {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 10px 0;
    max-height: 320px;
    overflow-y: auto;
    width: max-content;
    min-width: 130px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lang-list.show {
    display: flex;
    flex-direction: column;
}

.lang-list a {
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.lang-list a img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.lang-list a:hover {
    background: rgba(0, 245, 255, 0.1);
    color: var(--neon-cyan);
}

.lang-list::-webkit-scrollbar {
    width: 6px;
}

.lang-list::-webkit-scrollbar-thumb {
    background: var(--border-subtle);
    border-radius: 6px;
}

.lang-list {
    scrollbar-width: thin;
    scrollbar-color: var(--border-subtle) transparent;
}

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

/* ========================================
   WIN BOX
======================================== */
@media (min-width: 725px) {
    .win-box {
        display: flex;
        gap: 15px;
    }

    .win-box > .win-box-width {
        max-width: 50%;
    }

    .img-mob {
        width: 30%;
    }
}

.win-box-width {
    margin-top: 20px;
}

/* ========================================
   INDEX / HERO STYLES
======================================== */
.index-hero-box {
    position: relative;
}

.index-hero-1-img {
    position: absolute;
    top: -250px;
    right: 250px;
    height: 800px;
    width: 500px;
    max-inline-size: none;
    max-block-size: none;
}

.index-hero-1 {
    display: none;
}

@media (min-width: 768px) {
    .index-hero-1 {
        display: inline-block;
        width: 100%;
        background-image: url(/assets/img/main/main1-1.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        height: 100%;
        padding: 240px 40px 140px 90px;
        margin-top: 50px;
    }
}

.index-title-1 {
    max-width: 500px;
    display: block;
}

@media (max-width: 768px) {
    .index-title-1 {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (min-width: 768px) {
    .index-title-1 {
        font-size: 2.75rem;
        font-weight: 900;
        color: var(--text-primary);
        text-align: center;
        margin-bottom: 25px;
    }
}

.index-title-1,
.index-hero-1-img,
.index-button-box-1 {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 1s ease;
}

.index-hero-box:hover .index-title-1,
.index-hero-box:hover .index-hero-1-img,
.index-hero-box:hover .index-button-box-1 {
    opacity: 1;
    visibility: visible;
}

.index-hero {
    display: none;
}

@media (min-width: 768px) {
    .index-hero {
        display: block;
        background-image: url(./img/main/background.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        height: 100vh;
        padding: 240px 40px 140px 90px;
    }
}

.index-title {
    max-width: 500px;
    display: block;
}

@media (max-width: 768px) {
    .index-title {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (min-width: 768px) {
    .index-title {
        font-size: 2.75rem;
        font-weight: 900;
        color: var(--text-primary);
        text-align: center;
        margin-bottom: 25px;
    }
}

.index-mob_img {
    width: 100%;
}

@media (min-width: 768px) {
    .index-mob_img {
        display: none;
    }
}

.index-button-box {
    max-width: 500px;
    padding: 0 15px;
}

.index-button-box-1 {
    max-width: 500px;
    padding: 0 15px;
}

.index-hero-text {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 15px;
    margin: 0 15px 15px 15px;
    text-align: center;
}

@media (max-width: 768px) {
    .index-hero-text {
        color: var(--text-secondary);
        margin: 0 0 15px 0;
        text-align: center;
    }
}

/* ========================================
   HW STYLES
======================================== */
@media (max-width: 768px) {
    .hw-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   SWIPER
======================================== */
.swiper img {
    object-fit: contain;
}

@media (max-width: 628px) {
    .swiper.desk {
        display: none;
    }
}

@media (min-width: 629px) {
    .swiper.mob {
        display: none;
    }
}

.swiper-button-next::after,
.swiper-button-prev::after {
    color: var(--neon-cyan);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--gradient-neon);
}

.bonuse-img-box {
    display: flex;
}

/* ========================================
   DEMO GROUP
======================================== */
.demo-group {
    color: var(--text-primary);
}

.demo-group li {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

/* ========================================
   FEATURES BOX
======================================== */
.features-box {
    display: flex;
    gap: 30px;
}

.features-box > :first-child {
    flex: 1;
}

.features-box > :last-child {
    flex: 2;
}

/* ========================================
   YOUTUBE ICON
======================================== */
.main-icon-youtube {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 98px;
    height: 68px;
    background: url('../images/youtubelogo.svg') no-repeat center center;
    background-size: contain;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.5));
}

@media (min-width: 768px) {
    .main-icon-youtube {
        width: 155px;
        height: 104px;
    }
}