@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700&display=swap');

/* ==========================================================================
   VARIABLES & BASE
   ========================================================================== */
:root {
    --neon-orange: #FFAD00;
    --cell-width-std: 110px;
    --monopoly-red: #E3000F;
    --bg-black: #000;
    --monopoly-black: #111;
    --prop-brown: #955436;
    --prop-blue: #AAE0FA;
    --prop-orange: #F7941D;
    --chance-orange: #FFAD00;
    --neon-green: #39FF14;
    --accent-lime: #3AB54B;
    --gold: #FFD700;
    --card-width: 100%;
    --card-height: 267px;
    scroll-padding-top: 55px;
}

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

body {
    font-family: 'Unbounded', sans-serif;
    background-color: #111;
    margin: 0;
    color: #FFF;
}

#main {
    overflow-x: hidden;
}

/* ==========================================================================
   UTILITIES & TYPOGRAPHY
   ========================================================================== */
.section-padding { padding-top: 70px; padding-bottom: 35px; }
.margin-content { margin-top: 40px !important; }
.shadow-dark { box-shadow: 0 10px 30px rgba(0, 0, 0, 1); }
.border-dark { border: 3px solid #333333 !important; }
.highlight { color: var(--accent-lime); }
.highlight-yellow { color: var(--gold); }

.section-text-header {
    text-align: center;
    position: relative;
    z-index: 10;
}

.section-title {
    color: #FFF;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 72px;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.section-subtitle {
    color: #888;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.button-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.default-btn, .secondary-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    text-decoration: none;
    padding: 16px 32px;
    transition: 0.5s ease-in-out;
    clip-path: polygon(25px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 25px) 100%, 0 100%, 0 15px);
    background: var(--accent-lime);
    cursor: pointer;
    border: none;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
}

.header-btn { padding: 12px 24px; }

.secondary-btn::before {
    content: "";
    position: absolute;
    top: 3px; right: 3px; bottom: 3px; left: 3px;
    clip-path: polygon(23px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 23px) 100%, 0 100%, 0 14px);
    background: #111111;
    z-index: -1;
}

.secondary-btn::after, .default-btn::after {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
    z-index: -1;
}

.secondary-btn::after { background-color: var(--accent-lime); }
.default-btn::after { background-color: white; }
.secondary-btn:hover::after, .default-btn:hover::after { transform: translateX(0); }
.default-btn:hover { color: var(--accent-lime); }

/* ==========================================================================
   PRELOADER
   ========================================================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-icon {
    animation: preloader_pulse 2s infinite;
}

@keyframes preloader_pulse {
    0%,100%
    {
        transform:scale(1);
        opacity:1
    }
    50%{
        transform:scale(1.2);
        opacity:.8
    }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
#header {
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

#header.scrolled {
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #333333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.nav-hover {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.nav-hover::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #3AB54B;
    transition: width 0.3s;
}

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

.lang-link {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.lang-link:hover {
    color: #fff;
    opacity: 0.8;
}

.lang-link.active-lang {
    color: #fff !important;
    pointer-events: none;
    position: relative;
}

.lang-link.active-lang::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #3AB54B;
    transition: width 0.3s;
}

.mobile-lang-switcher .active-lang {
    color: var(--accent-lime) !important;
    font-weight: bold;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    background-image: url('/images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.hero-content { position: relative; z-index: 2; }

.hero-title {
    color: #FFF;
    text-shadow: 0 0 30px #3AB54B;
    font-size: 64px;
    font-weight: 600;
    line-height: 80px;
}

.hero-subtitle {
    color: #FFF;
    font-size: 20px;
    text-transform: uppercase;
}

.hero-text { font-size: 16px; }

/* ==========================================================================
   MONOPOLY BOARD & ANIMATION
   ========================================================================== */
.cell-go, .cell-street, .cell-chest, .cell-tax, .cell-station, .cell-chance, .cell-jail {
    background-color: var(--bg-black);
    border: 3px solid #333333;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.cell-street, .cell-chest, .cell-tax, .cell-station, .cell-chance, .cell-jail { margin-left: -3px; }

/* GO Cell */
.cell-go { width: 160px; height: 160px; overflow: hidden; }
.go-content-wrapper {
    position: absolute; top: -10px; right: -10px; width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transform: rotate(45deg) translate(-10px, 0px); z-index: 2;
}
.go-desc { font-size: 8px; font-weight: 700; text-transform: uppercase; text-align: center; margin-bottom: 2px; line-height: 1.1; }
.go-title { font-size: 54px; font-weight: 900; line-height: 1; margin: 0; letter-spacing: -2px; }
.arrow-container { position: absolute; bottom: 15px; left: 0; width: 100%; display: flex; justify-content: center; z-index: 1; }
.go-arrow { width: 120px; height: 24px; color: var(--monopoly-red); filter: drop-shadow(0 0 8px rgba(227, 0, 15, 0.6)); }

/* Street Cell */
.cell-street { width: 110px; height: 160px; }
.street-header { width: 100%; height: 35px; border-bottom: 2px solid #333333; }
.header-brown { background-color: #8B4513; }
.header-blue { background-color: #AEE5F7; }
.street-body {
    flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between;
    align-items: center; padding: 10px 5px; text-align: center;
}
.street-name { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.4; }
.street-price { font-size: 11px; font-weight: 400; }

/* Generic Shared (Chest, Tax, Station, Chance) */
.cell-chest, .cell-tax, .cell-station, .cell-chance {
    width: 110px; height: 160px; justify-content: space-between; padding: 10px 5px;
}
.chest-title, .tax-title, .station-title, .chance-header {
    font-size: 10px; font-weight: 700; text-transform: uppercase; line-height: 1.3;
    text-align: center; letter-spacing: 0.5px;
}
.tax-title { font-size: 11px; line-height: 1.2; }

/* Icons */
.chest-icon { width: 95px; height: auto; object-fit: contain; filter: drop-shadow(0 0 8px rgb(58, 181, 75)); }
.chance-icon { width: 55px; height: auto; object-fit: contain; filter: drop-shadow(0 0 8px rgba(217, 58, 150, 0.6)); }
.station-icon { width: 95px; height: auto; object-fit: contain; }
.tax-icon-svg { width: 35px; height: 35px; fill: none; stroke: currentColor; stroke-width: 3; }
.tax-icon-inner { fill: #fff; stroke: none; transform: scale(0.5); transform-origin: center; }

.chest-bottom { height: 12px; width: 100%; }
.tax-price, .station-price { font-size: 11px; font-weight: 400; text-align: center; letter-spacing: 0.5px; }

/* Jail Cell */
.cell-jail { width: 160px; height: 160px; overflow: hidden; flex-shrink: 0; }
.jail-box-orange {
    position: absolute; left: 0; right: 0; width: 115px; height: 115px;
    background-color: #F6921E; border-right: 2px solid #333333; border-bottom: 2px solid #333333;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.jail-inner-rotated {
    width: 150%; height: 150%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; transform: rotate(-45deg);
}
.jail-text-in, .jail-text-jail { font-size: 10px; font-weight: 900; text-transform: uppercase; }
.jail-icon { width: 95px; height: 95px; }
.text-just {
    position: absolute; right: 0; top: 40%; transform: translateY(-50%) rotate(-90deg);
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.text-visiting {
    position: absolute; bottom: 8px; left: 0; width: 100%; text-align: center;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding-right: 20px;
}

/* Animation Board */
.game-animation { width: 100%; display: flex; justify-content: center; background: #000; margin: 60px 0; }
.cell { filter: grayscale(100%) brightness(0.3); transition: filter 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease; }
.track-wrapper {
    width: 100%; height: 200px; position: relative; overflow: hidden; display: flex; align-items: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    border-top: 2px solid #333333; border-bottom: 2px solid #333333;
    mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
}
.track-strip { display: flex; height: 100%; align-items: center; transform: translateX(100vw); will-change: transform; transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1); }
.track-moving { filter: blur(1px); }
.token-container { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 20; pointer-events: none; margin-top: -10px; }
.game-token { width: 120px; transform: translateY(-80px) scale(1.1); opacity: 0; transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); filter: drop-shadow(0 30px 20px rgba(0, 0, 0, 0.8)); }
.game-token.landed { transform: translateY(0) scale(1); opacity: 1; filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.8)); }

.cell-chance.active-glow, .cell-chest.active-glow {
    filter: grayscale(0%) brightness(1); z-index: 10; transform: scale(1.1);
    background-color: #000; border-color: var(--accent-lime);
    box-shadow: 0 0 20px rgba(179, 214, 24, 0.6), inset 0 0 30px rgba(179, 214, 24, 0.2);
}
.cell-chance.active-glow .chance-icon { filter: drop-shadow(0 0 10px rgb(58, 181, 75)); }
.cell-chance.active-glow .chest-icon { filter: drop-shadow(0 0 8px rgba(48, 206, 248, 0.6)); }

/* ==========================================================================
   FLIP CARDS
   ========================================================================== */
.cards-grid-wrapper { padding-bottom: 80px; }
.flip-container { background-color: transparent; width: var(--card-width); perspective: 1000px; }
.chance .flip-container { height: 203px; }
.chest .flip-container { height: 267px; }

.flipper { position: relative; width: 100%; height: 100%; text-align: center; transition: transform 0.6s; transform-style: preserve-3d; }
.flip-container:hover .flipper { transform: rotateY(180deg); }

.flip-container.is-flipped .flipper {
    transform: rotateY(180deg);
}

.flipper .front, .flipper .back {
    position: absolute; width: 100%; height: 100%; padding: 12px;
    backface-visibility: hidden; -webkit-backface-visibility: hidden;
}

.flipper .front { background: #202020; display: flex; align-items: center; justify-content: center; }
.flipper .front-content { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; border: 3.5px solid var(--accent-lime); }
.flipper .q-mark { width: 50px; }
.flipper .c-mark { height: 150px; }

.flipper .back { background: #1A1A1A; transform: rotateY(180deg); }
.flipper .back-content {
    width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative; border: 2px solid var(--accent-lime); background: #1A1A1A; box-shadow: 0 0 30px 0 #000 inset;
}
.flipper .back-title { color: #3AB54B; font-size: 12px; font-weight: 700; text-transform: uppercase; margin-top: 8px; margin-bottom: 0; }
.flipper .card-step-num {
    position: absolute; top: 4px; right: 10px; color: rgba(58, 181, 75, 0.30);
    font-size: 14px; font-weight: 700; letter-spacing: 0.42px; text-transform: uppercase;
}
.flipper .back-h4 { font-size: 20px; font-weight: 700; text-transform: uppercase; margin-top: auto; margin-bottom: 16px; }
.flipper .back-text { margin-bottom: auto; padding: 0 10px; }
.flipper .back-p { font-size: 10px; line-height: 1.4; text-transform: uppercase; margin: 4px 0; }
.flipper .card-footer {
    position: absolute; bottom: -6px; padding: 0 10px; font-size: 8px; font-weight: 700;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #1A1A1A 50%, #1A1A1A 100%);
}

/* ==========================================================================
   PROPERTY CATALOG
   ========================================================================== */
.property-section { position: relative; z-index: 20; background: #111111; overflow: hidden}
.assets-list-wrapper { border-right: 1px solid rgba(255, 255, 255, 0.1); padding-right: 8.33333333%; }
.assets-list { display: flex; flex-direction: column; gap: 8px; width: 100%; }

.asset-item {
    display: flex; align-items: center; padding: 12px 15px; background: transparent;
    border: 1px solid #333333; cursor: pointer; transition: all 0.3s ease;
    opacity: 0.4; filter: grayscale(100%);
}
.asset-item:hover { opacity: 0.7; background: #111; transform: translateX(5px); }
.asset-item.active {
    opacity: 1; filter: grayscale(0%); background: #101010;
    border: 1px solid var(--theme); box-shadow: 0 0 15px var(--theme), inset 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 2; transform: scale(1.02) translateX(10px);
}

.item-color-indicator { width: 4px; height: 32px; margin-right: 16px; transition: opacity 0.3s ease; }
.asset-item.active .item-color-indicator { opacity: 1; }
.item-info { flex-grow: 1; display: flex; flex-direction: column; }
.item-name { font-size: 12px; font-weight: 600; text-transform: uppercase; }
.item-sub { color: #888; font-size: 11px; font-weight: 600; margin-top: 4px; }

.bg-token-decor { position: absolute; right: -150px; bottom: -50px; width: 200px; pointer-events: none; z-index: 0; transform: rotate(-15deg); filter: grayscale(100%); }
.bg-token-decor.flip-horizontal { left: -150px; right: unset; top: 50px; bottom: unset; transform: scaleX(-1) rotate(-15deg);
}

.monopoly-card { background-color: #1a1a1a; padding: 12px; z-index: 10; box-shadow: 0 10px 30px black; }
.monopoly-card-inner { border: 1px solid white; display: flex; flex-direction: column; padding: 12px; }
.asset-header-bar { padding: 8px; text-align: center; color: #000; margin-bottom: 8px; transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease; }
.header-sub { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.header-main { font-size: 18px; font-weight: 900; text-transform: uppercase; margin: 0; }

.asset-image-container {aspect-ratio: 1 / 1; height: 260px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.asset-img-placeholder { max-height: 100%; object-fit: contain; filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.8)); }

.asset-specs-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.spec-row { display: flex; align-items: baseline; justify-content: space-between; font-size: 14px; font-weight: 500; }
.spec-label { opacity: 0.8; }
.spec-dots { flex-grow: 1; border-bottom: 1px dotted rgba(255, 255, 255, 0.3); margin: 0 8px; }
.spec-value { text-align: right; font-weight: 700; }

.asset-price-block { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255, 255, 255, 0.1); margin-bottom: 8px; padding-top: 8px; }
.price-label { font-size: 18px; font-weight: 700; }
.price-old { font-size: 16px; text-decoration: line-through; color: #888; }
.price-current { font-size: 28px; font-weight: 900; }

.asset-buy-btn {
    width: 100%; margin: 0 auto; background-color: #FFF; border: none; padding: 16px 0;
    font-size: 16px; font-weight: 900; text-transform: uppercase; color: #000;
    transition: all 0.2s ease; text-align: center; text-decoration: none; display: block;
}
.asset-buy-btn:hover { background-color: #3AB54B; color: #FFF; }

/* ==========================================================================
   CALCULATOR
   ========================================================================== */
.calculator-controls { background-color: #161616; padding: 40px; height: 100%; }
.calculator-report { background-color: #1A1A1A; padding: 12px; height: 100%; }
.calculator-report-inner { border: 2px solid #3AB54B; padding: 24px; }

.calc-label, .form-label { font-size: 12px; font-weight: 700; }
.form-label { font-size: 14px; margin-bottom: 12px; }
.calc-value { color: #3AB54B; font-size: 14px; font-weight: 700; }

.calc-input, .form-control-dark {
    background-color: black; border: 3px solid #333333; color: #FFF;
    padding: 12px 16px; font-size: 14px; font-weight: 700; transition: border-color 0.3s; border-radius: 0;
}
.calc-input::placeholder, .form-control-dark::placeholder { color: #888; font-size: 14px; font-weight: 700; }
.calc-input:focus, .form-control-dark:focus { background-color: transparent; border-color: #3AB54B; box-shadow: none; outline: none; color: white}
.is-novalid {
    border-color: #FF1E1E !important;
}

.is-valid {
    border-color: #3AB54B !important;
}

.calc-note { color: rgba(255, 255, 255, 0.5); font-size: 10px; }

.report-title { font-size: 18px; font-weight: 900; text-align: center; margin-bottom: 30px; }
.report-row { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333333; padding-bottom: 15px; margin-bottom: 15px; }
.report-label { font-size: 14px; font-weight: 700; }
.report-value { font-size: 16px; font-weight: 700; }

.custom-range { width: 100%; height: 8px; background: #888888; outline: none; padding: 0; -webkit-appearance: none; appearance: none; }
.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none; width: 16px; height: 16px;
    border-radius: 50%; background: #3AB54B; cursor: pointer; transition: transform 0.1s;
}
.custom-range::-webkit-slider-thumb:hover { transform: scale(1.2); }

.custom-asset-select {
    position: relative;
    width: 100%;
    user-select: none;
}
.asset-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    border: 3px solid #333333;
    padding: 10px 15px;
    cursor: pointer;
    color: #fff;
    transition: border-color 0.3s ease;
}
.asset-select-trigger:hover {
    border-color: #3AB54B;
}
.asset-trigger-content {
    display: flex;
    align-items: center;
    gap: 15px;
}
.asset-trigger-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: #fff;
    border-radius: 4px;
    padding: 2px;
}
.asset-select-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border: 3px solid #333333;
    margin-top: 5px;
    padding: 0;
    list-style: none;
    max-height: 250px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}
.asset-select-list.open {
    display: block;
}
.asset-select-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    cursor: pointer;
    color: #fff;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.asset-select-item:last-child {
    border-bottom: none;
}
.asset-select-item:hover {
    background: rgba(58, 181, 75, 0.2);
}
.asset-select-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: #fff;
    border-radius: 4px;
    padding: 2px;
}
.asset-info {
    display: flex;
    flex-direction: column;
}
.asset-name {
    font-size: 14px;
    font-weight: 600;
}
.asset-price {
    font-size: 12px;
    color: #3AB54B;
}

/* ==========================================================================
   TIMELINE
   ========================================================================== */
.timeline-wrapper { background-color: #111111; padding: 24px; overflow-x: auto; }
.timeline-wrapper::-webkit-scrollbar { height: 6px; }
.timeline-wrapper::-webkit-scrollbar-thumb { background: #3AB54B; border-radius: 3px; }
.timeline-table { min-width: 768px; }

.timeline-header {
    display: grid; grid-template-columns: 220px repeat(4, 1fr);
    border-bottom: 3px solid #333333; padding-bottom: 20px; margin-bottom: 20px; align-items: center;
}
.timeline-col-etap { font-size: 16px; font-weight: 700; }
.timeline-col-time { color: #888; text-align: center; font-size: 16px; font-weight: 700; position: relative; }
.timeline-col-time:not(:last-child)::after {
    content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    height: 100%; width: 1px; background-color: rgba(255, 255, 255, 0.1);
}

.timeline-row { display: grid; grid-template-columns: 220px 1fr; align-items: center; padding: 12px 0; }
.timeline-track { display: grid; grid-template-columns: repeat(4, 1fr); height: 100%; align-items: center; }
.timeline-bar {
    height: 10px; background-color: #3AB54B; border-radius: 10px; box-shadow: 0 0 12px rgba(58, 181, 75, 0.4);
    transform-origin: left; transform: scaleX(0); transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.timeline-wrapper.animated .timeline-bar { transform: scaleX(1); }
.bar-1 { grid-column: 1 / 2; transition-delay: 0.1s; }
.bar-2 { grid-column: 1 / 3; transition-delay: 0.3s; }
.bar-3 { grid-column: 2 / 3; transition-delay: 0.5s; }
.bar-4 { grid-column: 3 / 4; transition-delay: 0.7s; }
.bar-5 { grid-column: 4 / 5; transition-delay: 0.9s; }

.timeline-mobile {
    display: none;
}

/* ==========================================================================
   PRIZE SECTION
   ========================================================================== */
.guaranteed-prizes { display: flex; flex-direction: column; justify-content: center; }
.slider-button-box { display: flex; justify-content: end; gap: 12px; }
.slider-btn {
    background: transparent; border: 1px solid rgba(255, 255, 255, 0.1); width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; padding: 0;
}
.slider-btn:hover { border-color: #3AB54B; background: rgba(58, 181, 75, 0.1); }
.slider-btn svg { transition: stroke 0.3s ease; }
.slider-btn:hover svg { stroke: #3AB54B; }

.prize-slider {
    display: block;
}

.prize-slider .slick-list {
    margin: 0 -12px;
}

.prize-slider .slick-slide {
    margin: 0 12px;
    height: auto;
    outline: none;
}

.prize-slider .slick-track {
    padding-top: 24px;
}

.prize-slider .prize-slide-wrap {
    height: 100%;
}

.prize-card {
    height: 100%;
}
.prize-card { background: #111111; display: flex; flex-direction: column; position: relative; transition: all 0.3s ease; overflow: hidden; }
.prize-card:hover { border-color: var(--accent-lime) !important; transform: translateY(-5px); }
.prize-card:hover .prize-image-wrapper { transform: scale(1.15) rotate(3deg); }
.prize-card:hover .prize-icon-box { border-color: var(--accent-lime) !important; color: white; }

.prize-card-header { position: absolute; top: 0; left: 0; display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 8px; z-index: 2; }
.prize-id { color: #444444; font-size: 16px; font-weight: 700; text-transform: uppercase; }
.prize-icon-box { width: 24px; height: 24px; border: 3px solid #444444; display: flex; align-items: center; justify-content: center; color: #444444; font-size: 12px; font-weight: 700; }
.prize-icon-box .inner-box { width: 100%; height: 100%; background-color: transparent; border: 1px solid rgba(255, 255, 255, 0.3); }

.prize-image-wrapper {aspect-ratio: 1 / 1; display: flex; flex-grow: 1; align-items: center; justify-content: center; padding-top: 25px; height: 240px; transition: 0.3s ease; }
.prize-image-wrapper img { height: 100%; max-height: 200px; filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5)); }

.prize-card-footer { background: black; padding: 12px 16px; border-top: 3px solid #333333; }
.badge-guaranteed { background-color: #3AB54B; color: white; font-size: 10px; font-weight: 800; padding: 4px 8px; border-radius: 2px; display: inline-block; }
.prize-note { color: #888; font-size: 14px; font-weight: 700; }
.prize-note span {
    color: var(--gold);
    text-decoration: underline;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.prize-note span:hover {
    opacity: 0.8;
}

.main-prize-wrapper { max-width: 450px; }
.main-prize-badge { font-size: 16px; font-weight: 400; letter-spacing: 1px; text-transform: uppercase; padding: 12px 16px; color: #FFD700; border: 3px solid #FFD700; background: rgba(255, 215, 0, 0.10); box-shadow: 6px 6px 10px 0 rgba(0, 0, 0, 0.40) inset; }
.main-prize-title { font-size: 36px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-top: 16px; margin-bottom: 0;}
.main-prize-subtitle { color: #888; font-size: 16px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; }
.main-prize-image {aspect-ratio: 9 / 16; position: relative; z-index: 2; margin-top: 20px;}
.main-prize-image img { max-height: 400px; }
.main-prize-image::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 250px; height: 250px; background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(0, 0, 0, 0) 70%); z-index: -1; pointer-events: none;
}
.main-prize-counter { display: inline-flex; align-items: center; justify-content: center; padding: 12px 16px; margin-top: 16px; background-color: black; }
.prize-text { font-size: 16px; font-weight: 400; letter-spacing: 1px; text-transform: uppercase; }
.text-v12-green { color: #3AB54B; font-size: 16px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-left: 8px;}

/* ==========================================================================
   FOMO SECTION
   ========================================================================== */
.fomo-wrapper { display: flex; flex-direction: column; gap: 30px; position: relative; max-width: 900px; margin: 0 auto; }
.fomo-header { display: flex; align-items: center; gap: 20px; }
.alert-icon-box { width: 50px; height: 50px; background: #FF1E1E; display: flex; align-items: center; justify-content: center; font-size: 30px; font-weight: 900; color: #fff; flex-shrink: 0; }
.fomo-title { font-size: 20px; font-weight: 600; text-transform: uppercase; margin-bottom: 4px;}
.fomo-desc { color: #888; font-size: 14px; font-weight: 600; margin: 0; }
.fomo-progress-block { background: #000; padding: 20px; }
.progress-labels { display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; text-transform: uppercase; margin-bottom: 24px; }
.progress-track { height: 30px; background: #1a1a1a; position: relative; overflow: hidden; margin-bottom: 10px; }
.progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, #39FF14 0%, #FF1E1E 100%); position: relative; transition: width 2s cubic-bezier(0.22, 1, 0.36, 1); }
.progress-fill::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0, 0, 0, 0.2) 10px, rgba(0, 0, 0, 0.2) 20px);
}
.progress-footer { display: flex; justify-content: space-between; font-size: 12px; color: #666; text-transform: uppercase; font-weight: 700; }
#fomoTimer { color: #FF1E1E; }
.fomo-button-box { display: flex; align-items: center; justify-content: center; }

/* ==========================================================================
   CASES & STATS
   ========================================================================== */
.stats-banner { background: #1A1A1A; padding: 24px 0; }
.stat-col { text-align: center; border-right: 1px solid rgba(255, 255, 255, 0.1); }
.stat-value { font-size: 42px; font-weight: 900; line-height: 1; }
.stat-plus { color: #3AB54B; font-size: 20px; font-weight: 800; margin-left: 2px; }
.stat-label { font-size: 11px; color: #666; margin-top: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.cases-section .slider-button-box {
    display: none !important;
}

.cases-slider {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    justify-content: center;
}

.case-slide-wrap {
    width: 33.33333%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.case-polaroid {
    background: #fff; padding: 12px 12px 24px 12px; position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), z-index 0s, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.card-0 { transform: rotate(-3deg); z-index: 1; }
.card-1 { transform: rotate(1deg) translateY(-10px); z-index: 2; }
.card-2 { transform: rotate(2deg); z-index: 1; }
.case-polaroid:hover { transform: scale(1.05) rotate(0deg) !important; z-index: 10; box-shadow: 0 20px 50px rgba(0,0,0,0.8); }

.case-photo-wrap {aspect-ratio: 1 / 1; position: relative; width: 100%; height: 380px; overflow: hidden; background: #e0e0e0; }
.case-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.case-polaroid:hover .case-img { transform: scale(1.08); }

.case-badge {
    position: absolute; top: 15px; right: 15px; background: #D4F4D2; color: #1B5E20;
    font-weight: 900; font-size: 11px; padding: 6px 12px 6px 8px; border-radius: 20px;
    display: flex; align-items: center; gap: 6px; z-index: 2; text-transform: uppercase;
}
.badge-toggle { display: inline-block; width: 26px; height: 14px; background-color: #fff; border-radius: 10px; position: relative; }
.badge-toggle::after { content: ''; position: absolute; left: 2px; top: 2px; width: 10px; height: 10px; background-color: #e0e0e0; border-radius: 50%; }

.case-overlay-info {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px 15px 15px 15px;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    display: flex; justify-content: space-between; align-items: flex-end;
}
.case-metric { display: flex; flex-direction: column; }
.cm-label { font-size: 10px; font-weight: 800; margin-bottom: 2px; }
.cm-val { color: #3AB54B; font-size: 26px; font-weight: 900; line-height: 1; }
.case-count { color: rgba(255, 255, 255, 0.5); font-size: 22px; font-weight: 800; line-height: 1; }
.case-footer { margin-top: 15px; padding: 0 5px; }
.case-loc { font-size: 11px; font-weight: 900; text-transform: uppercase; margin-bottom: 4px; color: #000; }
.case-owner { font-size: 10px; color: #666; font-weight: 500; }

.cases-swiper .swiper-slide {
    height: auto;
}

.case-polaroid {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.case-photo-wrap {
    flex-grow: 1;
}

/* ==========================================================================
   SERVICES & MONOBANK
   ========================================================================== */
.service-card { background-color: #1A1A1A; transition: all 0.3s ease; }
.service-card:hover, .mono-block:hover { transform: translateY(-5px); }
.service-card-body { padding: 40px; }
.service-card-header { display: flex; align-items: flex-end; justify-content: space-between; }
.service-icon {
    display: flex; align-items: center; justify-content: center; padding: 12px;
    border-width: 2px; border-style: solid; background: #111111;
}
.theme-green .service-icon { border-color: rgba(58, 181, 75, 0.30); }
.theme-yellow .service-icon { border-color: rgba(255, 215, 0, 0.30); }
.service-title { font-size: 20px; font-weight: 600; text-transform: uppercase; }
.service-badge { border: 3px solid #333333; font-size: 16px; font-weight: 700; padding: 8px 12px; background: #111111; }
.service-quote { color: rgba(255, 255, 255, 0.6); font-size: 14px; padding-left: 15px; }

.service-list li { position: relative; padding-left: 24px; margin-bottom: 12px; color: #CCC; font-size: 14px; font-weight: 400; }
.service-list li::before { content: '✓'; position: absolute; left: 0; top: 0; font-weight: 900; }

.service-card-footer {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
    border-top: 3px solid #333333; background-color: black; padding: 24px 40px;
}
.footer-col.col-single { border-left: 1px solid white; padding-left: 24px; text-align: end; }
.price-label { display: block; color: #CCCCCC; font-size: 14px; font-weight: 400; text-transform: uppercase; margin-bottom: 5px; }
.price-val { font-size: 16px; font-weight: 700; }
.price-sub { color: #CCC; font-size: 14px; font-weight: 400; }

.theme-green .service-quote { border-left: 2px solid #3AB54B; }
.theme-green .service-list li::before { color: #3AB54B; }
.theme-yellow .service-quote { border-left: 2px solid #FFD700; }
.theme-yellow .service-list li::before { color: #FFD700; }
.theme-yellow .highlight-val { color: #FFD700; }

.btn-yellow-outline { background: #FFD700; }
.btn-yellow-outline:hover { color: black; }
.btn-yellow-outline:after { background-color: #FFD700; }

/* Monobank Block */
.mono-block { background-color: #1A1A1A; padding: 24px 40px; transition: all 0.3s ease; }
.mono-block-content { width: 100%; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.mono-info { max-width: 550px; }
.mono-logo-wrap { font-size: 20px; font-weight: 600; }
.mono-description { color: #888; font-size: 16px; font-weight: 400; }
.mono-badge { font-size: 16px; font-weight: 700; background-color: #3AB54B; border-radius: 4px; padding: 8px 12px; }
.mono-terms { display: flex; gap: 32px; }
.mono-stat { display: flex; flex-direction: column; align-items: start; }
.mono-stat-number { font-size: 18px; font-weight: 700; }
.mono-stat-text { color: #CCC; font-size: 16px; font-weight: 400; margin-top: 8px; }

/* ==========================================================================
   TRUST & AWARDS
   ========================================================================== */
.trust-section { position: relative; background-color: #111111; }
.awards-grid {
    position: relative;
    padding-bottom: 40px;
}

.awards-grid::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(51, 51, 51, 0.00) 0%, #333 50%, rgba(51, 51, 51, 0.00) 100%);
}
.award-item { display: flex; flex-direction: column; align-items: center; justify-content: center; transition: transform 0.3s ease; }
.award-item:hover { transform: translateY(-5px); }
.award-img-wrapper {aspect-ratio: 1 / 1; height: 160px; margin-bottom: 30px; position: relative; display: flex; align-items: center; justify-content: center; overflow: visible;}

.award-img-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(255,215,0,0.75);
    box-shadow: 0 0 80px 40px #FFD700;
    opacity: 0.25;
    border-radius: 50%;
    transition: opacity 0.3s ease;
    z-index: 0;
}
.award-item:hover .award-img-wrapper::after { opacity: 0.4; }
.award-img { max-width: 100%; max-height: 100%; object-fit: contain; position: relative; z-index: 2; }
.award-title { font-size: 16px; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; }
.award-year { font-size: 16px; font-weight: 400; letter-spacing: 1px; text-transform: uppercase; padding: 12px 16px; color: #FFD700; border: 3px solid #FFD700; background: rgba(255, 215, 0, 0.10); box-shadow: 6px 6px 10px 0 rgba(0, 0, 0, 0.40) inset; }
.partners-wrapper { position: relative; z-index: 2; }
.partner-logo { margin-top: 24px;}
.partner-img { width: 80%; height: auto; margin: auto; object-fit: contain; opacity: 0.4; transition: all 0.3s ease; }
.partner-img:hover { opacity: 1; filter: grayscale(0%); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section { background-color: #111111; position: relative; }
.v12-accordion .accordion-item { background-color: #1A1A1A; border: none; border-radius: 0 !important; overflow: hidden; transition: all 0.3s ease; }
.v12-accordion .accordion-item:hover .accordion-button { border-color: #3AB54B !important; }
.v12-accordion .accordion-button {
    background-color: #1A1A1A; color: #FFF; font-weight: 700; font-size: 16px;
    padding: 24px 30px; box-shadow: none !important; border-radius: 0 !important; border: none; transition: all 0.3s ease;
}
.v12-accordion .accordion-button:not(.collapsed) { background-color: #1A1A1A; color: #3AB54B; }
.v12-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    transition: transform 0.3s ease;
}
.v12-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233AB54B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    transform: rotate(-180deg);
}
.v12-accordion .accordion-body { background-color: #1A1A1A; color: #CCCCCC; font-size: 15px; line-height: 1.6; padding: 24px 40px; border-top: none; }

/* ==========================================================================
   CTA SECTION (Форма)
   ========================================================================== */

.cta-form-box {
    background-color: #1A1A1A;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.privacy-text {
    color: #888888;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.v12-footer { background-color: #1A1A1A; margin-top: 70px; margin-bottom: 35px; }
.footer-container { padding-top: 32px; padding-bottom: 32px; }
.footer-desc { font-size: 14px; font-weight: 700; }
.social-icon { display: flex; align-items: center; justify-content: center; color: white; transition: all 0.3s ease; padding: 4px; }
.social-icon:hover { color: #3AB54B; border-color: #3AB54B; transform: translateY(-3px); }
.social-icon svg { width: 24px; height: 24px; }
.footer-title { font-size: 18px; }
.footer-link { font-size: 16px; font-weight: 400; text-decoration: none; transition: color 0.3s ease; color: #FFF; }
.footer-link:hover { color: #3AB54B; }
.footer-contacts li { font-size: 14px; font-weight: 500; }
.footer-bottom { border-color: rgba(255, 255, 255, 0.1) !important; }
.footer-bottom a:hover { color: #FFF !important; }

/* ==========================================================================
   MODAL WINDOW
   ========================================================================== */
.v12-modal-content {
    background-color: #1A1A1A;
    border: 3px solid #333333;
    border-radius: 0; /* Убираем скругления Bootstrap */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    position: relative;
}

.btn-close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #888;
    padding: 5px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.btn-close-modal:hover {
    color: var(--accent-lime);
    transform: scale(1.1) rotate(90deg);
}

.modal-title {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.modal-subtitle {
    font-size: 14px;
    color: #888;
}

.v12-modal-content .form-control-dark {
    width: 100% !important;
}

@media (max-width: 576px) {
    .modal-title {
        font-size: 20px;
    }

    .v12-modal-content {
        border-left: none;
        border-right: none;
    }

    .btn-close-modal {
        top: 10px;
        right: 10px;
    }
}

/* ==========================================================================
   MEDIA QUERIES (Адаптив)
   ========================================================================== */
@media (max-width: 1199px) {
    #header nav {gap: 12px!important;}
    .nav-hover {font-size: 14px}
    .section-text-header {margin-bottom: 24px!important;}
    .game-animation {margin: 24px 0}
    .hero-title { font-size: 38px; line-height: 40px; }
    .hero-subtitle { font-size: 16px; }
    .hero-text { font-size: 14px; }
    .section-title { font-size: 28px; line-height: 30px}
    .prize-image-wrapper {height: 150px}
    .main-prize-title {font-size: 24px; line-height: 26px; margin-top:0}
    .prize-name {font-size: 12px!important; line-height: 14px}
    .main-prize-image img {max-height: 300px}
    .main-prize-badge, .main-prize-counter {font-size: 12px; padding: 8px 12px}
    .case-photo-wrap {height: 280px}
    .cm-val, .case-count {font-size: 14px;}
    .service-card-footer, .service-card-body {padding: 24px}
    .footer-col.col-single {padding-left: 8px}
    .price-label, .service-list li {font-size: 12px}
    .service-title {font-size: 18px}
    .service-badge {font-size: 14px; padding: 6px 10px}
    .service-quote {font-size: 12px; padding-left: 10px}
    .service-list li::before {font-size: 14px}
    .service-card-footer {padding: 16px}
    .footer-col.col-single {padding-left: 16px}
    .footer-title {font-size: 16px}
    .footer-link {font-size: 14px}
    .footer-contacts li {font-size: 12px}
    .footer-bottom {padding: 16px 0}
    .mono-block-content {gap: 24px;}
    .mono-info {max-width: 100%;display: flex;align-items: flex-start;gap: 24px;}
    .mono-block {padding: 24px;}
}

@media (max-width: 991px) {

    .hero-section {
        background: url('/images/hero-mobile.webp');
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center;
    }

    .hero-content, .hero-content .row {
        height: calc(100vh - 75px) !important;
    }

    .award-title {
        font-size: 12px;
    }

    .award-img-wrapper {
        width: 120px;
    }

    /* Hero */
    .hero-title { font-size: 42px; line-height: 52px; }
    .hero-subtitle { font-size: 20px; }
    .hero-buttons-wrapper { margin-top: auto; margin-bottom: 24px}
    .btn-green { max-width: 100%; }

    /* Property */
    .assets-list-wrapper { border-right: none; padding-right: 0; }
    .assets-list { flex-direction: row; scroll-snap-type: x mandatory; padding-bottom: 16px; scrollbar-width: none; }
    .assets-list::-webkit-scrollbar { display: none; }
    .asset-item { flex: 0 0 260px; scroll-snap-align: center; opacity: 0.6; }
    .asset-item.active { opacity: 1; }

    /* Calculator */
    .calculator-controls { padding: 24px; }
    .calculator-report { padding: 12px; }

    /* Timeline */
    .timeline-wrapper { padding: 20px; }
    .timeline-bar { margin: 0 5px; }

    /* Prize */
    .prize-card { height: 320px; }
    .main-prize-title { font-size: 24px; }

    .prize-section .slider-button-box {
        display: none;
    }

    /* Cases */
    .cases-section .slider-button-box {
        display: flex!important;
    }
    .cases-slider {
        margin: 0 -12px;
        padding: 10px 0 30px 0;
    }

    .cases-slider .slick-slide {
        margin: 0 12px;
    }
    .case-polaroid { transform: none !important; margin-bottom: 20px; }
    .case-photo-wrap { height: 320px; }
}

@media (max-width: 991px) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.1);
    }
    .hero-title {
        font-size: 48px;
        line-height: 56px;
    }
    .hero-subtitle {
        font-size: 22px;
    }
    .cta-section .display-4 {
        font-size: 36px;
    }
    .footer-nav, .footer-contacts {
        margin-bottom: 40px;
    }
}

@media (max-width: 991px) {
    /*!* Обгортка: розтягуємо за межі контейнера для красивого скролу по краях *!*/
    /*.assets-list-wrapper {*/
    /*    border-right: none;*/
    /*    padding-left: 15px;*/
    /*}*/

    /*!* Сама лінія з картками *!*/
    /*.assets-list {*/
    /*    display: flex;*/
    /*    flex-direction: row;*/
    /*    flex-wrap: nowrap;*/
    /*    overflow-x: auto;*/
    /*    gap: 12px;*/
    /*    padding-bottom: 20px;*/
    /*    scroll-snap-type: x mandatory;*/
    /*    scrollbar-width: none;*/
    /*    -webkit-overflow-scrolling: touch;*/
    /*    padding: 12px 0;*/
    /*}*/

    /*!* Ховаємо скролбар для Webkit (Chrome, Safari, Edge) *!*/
    /*.assets-list::-webkit-scrollbar {*/
    /*    display: none;*/
    /*}*/

    /*!* Стилістиках самих карток-табів (як на скріншоті) *!*/
    /*.asset-item {*/
    /*    flex: 0 0 85vw; !* Фіксована ширина картки *!*/
    /*    max-width: 85vw; !* Захист для дуже вузьких екранів *!*/
    /*    scroll-snap-align: center; !* Магнітимо по центру *!*/
    /*    padding: 16px 20px;*/
    /*    background: #080808;*/
    /*    border: 1px solid #222;*/
    /*    opacity: 0.5;*/
    /*    transform: none !important; !* Прибираємо десктопний зсув по осі X *!*/
    /*    transition: all 0.3s ease;*/
    /*}*/

    /*!* Активна картка *!*/
    /*.asset-item.active {*/
    /*    opacity: 1;*/
    /*    background: #111;*/
    /*    border: 1px solid var(--theme);*/
    /*}*/

    .item-color-indicator {
        height: 38px;
        width: 4px;
        margin-right: 16px;
    }

    .item-name {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.2;
    }

    .item-sub {
        font-size: 12px;
        color: #888;
        margin-top: 4px;
    }

    .timeline-desktop {
        display: none !important;
    }

    .timeline-mobile {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .timeline-mobile-card {
        background-color: #1A1A1A;
        border-left: 4px solid #3AB54B;
        padding: 24px 20px;
    }

    .tm-time {
        color: #3AB54B;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .tm-title {
        color: #FFF;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .tm-desc {
        color: #888;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.5;
    }

    .prize-swiper {
        padding: 0;
        overflow: visible;
    }

    .prize-slider {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        transform: none !important;
        width: 100%;
    }

    .prize-card {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .prize-image-wrapper {
        height: 120px;
        padding-top: 10px;
        margin-bottom: 10px !important;
    }

    .prize-image-wrapper img {
        max-height: 100px;
    }

    .prize-card-header {
        padding: 8px;
    }

    .prize-id {
        font-size: 10px;
        color: #888;
    }

    .prize-card-footer {
        padding: 10px;
    }

    .prize-name {
        font-size: 12px !important;
        margin-bottom: 6px !important;
        width: 70%;
    }

    .badge-guaranteed {
        font-size: 9px;
        padding: 4px 6px;
    }

    .main-prize-badge {
        font-size: 14px;
        padding: 8px 16px;
        margin-bottom: 15px !important;
    }

    .main-prize-title {
        font-size: 24px;
        letter-spacing: 0;
    }

    .main-prize-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .main-prize-image {
        margin-top: 0;
    }

    .main-prize-image img {
        max-height: 300px;
    }

    .main-prize-image::before {
        width: 180px;
        height: 180px;
    }

    .main-prize-counter {
        padding: 8px 12px;
        font-size: 12px;
        width: 100%;
        max-width: 320px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .prize-text {
        font-size: 12px;
        letter-spacing: 0;
    }

    .prize-note {
        font-size: 10px;
        text-align: left;
        color: #888;
    }

    .progress-track {
        height: 20px;
        margin-bottom: 24px;
    }

    .mono-info {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    h1, .hero-title {
        font-size: 32px !important;
        line-height: normal !important;
    }
    h2, .section-title {
        font-size: 24px !important;
        line-height: normal !important;
    }
    .hero-section {
        padding-top: 75px;
        background-image: url('/images/hero-mobile.webp');
        background-size: 100%;
        background-repeat: no-repeat;
    }
    .subtitle, .section-subtitle {
        font-size: 14px !important;
    }
    .hero-subtitle {
        font-size: 16px !important;
        margin-bottom: 12px!important;
    }
    .hero-text {
        font-size: 12px !important;
        margin-bottom: 0 !important;
    }
    .hero-buttons-wrapper a {
        width: 100%;
    }
    .section-padding {
        padding-top: 50px;
        padding-bottom: 25px;
    }
    .trust-section {
        padding: 50px 0;
    }
    .award-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    .award-img-wrapper {
        margin-bottom: 15px;
    }
    .award-title {
        font-size: 14px;
    }
    .award-year {
        font-size: 12px;
        padding: 4px 12px;
    }
    .partners-ticker .partner-slide {
        padding: 0 15px;
    }
    .partner-img {
        width: 100%;
    }
    .cta-section {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
    .cta-section .display-4 {
        font-size: 28px !important;
        text-align: center;
    }
    .cta-section p {
        text-align: center;
        font-size: 14px;
    }
    .cta-form-box {
        padding: 24px !important;
    }
    .form-control-dark {
        padding: 14px 16px;
        font-size: 14px;
    }
    .v12-footer {
        padding-top: 40px !important;
    }
    .footer-title {
        font-size: 16px;
        margin-bottom: 20px !important;
    }
    .footer-link, .footer-contacts li {
        font-size: 14px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center !important;
        gap: 15px;
        text-align: center;
    }
    .footer-bottom span, .footer-bottom a {
        font-size: 10px !important;
    }

    .case-polaroid:hover {
        transform: none!important;
    }

    .cm-val, .case-count {
        font-size: 20px;
    }

    .service-card-footer {
        justify-content: center;
    }

    .service-card-body {
        padding: 24px 20px;
    }
    .service-card-header {
        margin-bottom: 20px !important;
    }
    .service-icon {
        padding: 10px;
    }
    .service-icon svg {
        width: 24px;
        height: 24px;
    }
    .service-badge {
        font-size: 14px;
        padding: 6px 10px;
    }
    .service-title {
        font-size: 18px;
    }
    .service-quote {
        font-size: 13px;
        padding-left: 12px;
        margin-bottom: 20px !important;
    }
    .service-list li {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .service-card-footer {
        flex-direction: column;
        padding: 24px 20px;
        gap: 20px !important;
        align-items: center;
        text-align: center;
    }
    .footer-col {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-col.col-single {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        padding-top: 20px;
        text-align: center;
    }
    .price-label {
        font-size: 12px;
        margin-bottom: 8px;
    }
    .price-val {
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }
    .service-card-footer .secondary-btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .mono-block {
        padding: 30px 20px;
    }
    .mono-block-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    .mono-logo-wrap {
        justify-content: center;
        margin-bottom: 10px !important;
    }
    .mono-badge {
        background-color: #3AB54B;
        color: white;
        padding: 6px 12px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 700;
    }
    .mono-description {
        text-align: center;
        font-size: 14px;
        color: #888;
        line-height: 1.5;
        padding: 0 10px;
    }
    .mono-terms {
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-top: 10px;
    }
    .mono-stat {
        width: 100%;
        align-items: center;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .mono-stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .mono-stat-number {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 4px;
    }
    .mono-stat-text {
        font-size: 14px;
        color: #CCC;
    }
    .mono-button {
        margin-top: 25px;
    }

    .calculator-report-inner {
        padding: 24px 12px;
    }

    .case-polaroid {
        transform: none !important;
        margin-bottom: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.6) !important;
    }

    .case-polaroid:hover {
        transform: none !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.6) !important;
    }

    .stats-banner {
        margin: 0;
        padding: 24px;
    }

    .stat-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .stat-col:first-child {
        padding-top: 0;
    }

    .stat-col.border-0 {
        border-bottom: none !important;
        padding-bottom: 0;
    }

    .stat-value {
        font-size: 36px;
        font-weight: 900;
        line-height: 1;
        margin-bottom: 12px;
        display: flex;
        align-items: baseline;
        justify-content: center;
    }

    .stat-plus {
        color: #3AB54B;
        font-size: 18px;
        font-weight: 800;
        margin-left: 4px;
        text-transform: uppercase;
    }

    .stat-label {
        font-size: 12px;
        color: #888;
        font-weight: 700;
        letter-spacing: 1.5px;
        margin-top: 0;
    }
}

@media (max-width: 767px) {

    .asset-select-trigger {
        padding: 8px 12px;
    }
    .asset-trigger-content {
        gap: 10px;
    }
    .asset-trigger-img {
        width: 50px;
        height: 50px;
    }
    .asset-select-item {
        padding: 8px 12px;
        gap: 10px;
    }
    .asset-select-item img {
        width: 32px;
        height: 32px;
    }
    .asset-name {
        font-size: 12px;
    }
    .asset-price {
        font-size: 11px;
    }

    .cm-val, .case-count {
        font-size: 14px;
    }

    .fomo-title {
        padding: 0 12px;
    }

    .v12-accordion .accordion-button, .v12-accordion .accordion-body {
        font-size: 14px;
        padding: 12px;
    }

    .section-text-header {
        padding: 0 12px;
    }

    .monopoly-card .header-main {
        font-size: 16px;
    }

    .monopoly-card .price-current {
        font-size: 22px;
    }
}

.assets-swiper {
    width: 100%;
    overflow: visible;
}

.assets-swiper .swiper-slide {
    height: auto;
}

.prizes-list {
    background: #111;
    border: 2px solid #333;
    padding: 24px;
}

.prize-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.prize-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.prize-name-text {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.prize-qty {
    font-size: 16px;
    font-weight: 700;
    color: #FFD700;
    white-space: nowrap;
    margin-left: 15px;
}

.prize-total-badge {
    background: #111;
    border: 2px solid #333;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 24px;
    display: inline-block;
    text-transform: uppercase;
}

.prize-total-badge b {
    color: #3AB54B;
    font-size: 18px;
    margin-left: 6px;
}

@media (max-width: 767px) {
    #prizeModal .modal-title {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }

    #prizeModal .modal-subtitle {
        font-size: 11px !important;
        line-height: 1.4;
        margin-bottom: 16px !important;
    }

    .prizes-list {
        padding: 12px;
    }

    .prize-row {
        padding: 8px 0;
    }

    .prize-name-text {
        font-size: 11px;
    }

    .prize-qty {
        font-size: 12px;
        margin-left: 10px;
    }

    .prize-total-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .prize-total-badge b {
        font-size: 14px;
        margin-left: 4px;
    }
}

@media (max-width: 991px) {
    .assets-list-wrapper {
        border-right: none;
        padding-right: 0;
        padding-left: 0;
        margin-right: 0;
        margin-left: 0;
    }

    .assets-list {
        padding-left: 12px;
        padding-bottom: 20px;
        gap: 0;
    }

    .assets-swiper .swiper-slide {
        width: 95%;
    }

    .asset-item {
        min-width: 296px;
        width: 100%;
        padding: 16px 20px;
        background: #080808;
        border: 1px solid #222;
        opacity: 0.5;
        transition: all 0.3s ease;
        transform: scale(0.95);
    }

    .asset-item.active {
        opacity: 1;
        background: #111;
        border: 1px solid var(--theme);
        box-shadow: 0 0 15px rgba(0,0,0,0.8);
        transform: scale(1);
    }
}
@media (max-width: 400px) {

    h1, .hero-title {
        font-size: 28px !important;
    }

    .hero-subtitle {
        font-size: 12px !important;
        margin-bottom: 8px !important;
    }

    .hero-text {
        font-size: 10px !important;
    }
}

@media (max-width: 330px) {

    .hero-content, .hero-content .row {
        height: calc(100vh - 35px) !important;
    }

    .hero-section {
        padding-top: 35px;
    }

    h1, .hero-title {
        font-size: 20px !important;
    }
    .hero-subtitle {
        font-size: 12px !important;
    }
    .hero-text {
       display: none;
    }
}

@media (max-width: 576px) and (max-height: 700px) {
    #header {
        padding: 6px 0!important;
    }
    .hero-section {
        padding-top: 55px;
    }
    .hero-content-box {
        margin-top: 0!important;
    }
    h1, .hero-title {
        margin-bottom: 8px!important;
    }
    .hero-subtitle {
        margin-bottom: 8px !important;
    }
    .logo {
        height: 25px;
    }
}