html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #04040a;
    color: #e0e0f0;
    background-image: radial-gradient(circle, #0a0a1a 1px, transparent 1px);
    background-size: 20px 20px;
    transition: font-family 0.3s ease;
}

body.lang-ru {
    font-family: 'Russo One', sans-serif;
    font-weight: 400;
}

body.lang-en {
    font-family: 'Audiowide', cursive;
}

body.lang-kk {
    font-family: 'Exo 2', sans-serif;
    font-weight: 800;
}

:root {
    --primary-neon: #6e44ff;
    --secondary-neon: #ff00ff;
    --accent-neon: #00ffff;
    --text-light: #e0e0f0;
    --text-dark: #333;
    --bg-dark: #0a0a1a;
    --primary-gradient: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
    --secondary-gradient: linear-gradient(45deg, var(--secondary-neon), var(--primary-neon));
}

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

@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
}

/* --- HEADER --- */
.header {
    background-color: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: clamp(0.5rem, 1vw, 1rem) 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 0 30px rgba(110, 68, 255, 0.3);
    border-bottom: 1px solid rgba(110, 68, 255, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    z-index: 1002;
}

.logo-img {
    height: clamp(35px, 3.5vw, 50px);
    margin-right: 0.5rem;
    border-radius: 5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: clamp(0.3rem, 0.8vw, 1rem);
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.75rem, 0.85vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 5px;
    border-radius: 5px;
    position: relative;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav a:not(.nav-highlight)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background-color: var(--accent-neon);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--accent-neon);
}

.nav a:not(.nav-highlight):hover::after {
    width: 100%;
}

.nav a:hover {
    color: var(--accent-neon);
    text-shadow: 0 0 10px var(--accent-neon);
}

/* Выделенная кнопка "Каталог с играми" в меню */
.nav a.nav-highlight {
    background: linear-gradient(90deg, #00ffff, #6e44ff);
    background-size: 200% auto;
    border: none;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    padding: 8px 16px;
    color: #fff !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    animation: navHighlightPulse 2s infinite alternate, gradientSlide 3s linear infinite;
}

.nav a.nav-highlight:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
    color: #fff !important;
}

@keyframes navHighlightPulse {
    0% {
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
    }

    100% {
        box-shadow: 0 0 20px rgba(110, 68, 255, 0.8);
    }
}

@keyframes gradientSlide {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.lang-switch {
    display: flex;
    align-items: center;
    border: 1px solid var(--primary-neon);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

.lang-btn {
    padding: clamp(4px, 0.5vw, 6px) clamp(10px, 1vw, 14px);
    font-size: clamp(0.8rem, 0.9vw, 0.9rem);
    background: transparent;
    color: var(--text-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 1.2;
    font-family: inherit;
}

.lang-btn.active {
    background: var(--primary-neon);
    color: white;
    font-weight: bold;
}

.lang-btn:hover:not(.active) {
    background: rgba(110, 68, 255, 0.3);
}

.cta-button {
    background: var(--primary-gradient);
    color: var(--text-light);
    padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 15px rgba(110, 68, 255, 0.6);
    margin-left: clamp(10px, 2vw, 20px);
    border: none;
    cursor: pointer;
    font-size: clamp(0.85rem, 1vw, 0.9rem);
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px var(--primary-neon), 0 0 40px var(--primary-neon);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1005;
    padding: 0;
}

.burger-menu span {
    width: 100%;
    height: 2px;
    background: var(--accent-neon);
    border-radius: 2px;
    transition: all 0.3s linear;
    box-shadow: 0 0 5px var(--accent-neon);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
    color: var(--text-light);
    overflow: hidden;
    padding-top: 5rem;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35vh;
    background: linear-gradient(to top, #04040a 0%, rgba(4, 4, 10, 0.7) 30%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}

.hero-content {
    z-index: 1;
    max-width: clamp(600px, 50vw, 800px);
    padding: 0 1rem;
    animation: fadeIn 1.5s ease-in-out;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    align-self: flex-end;
    padding-bottom: 5rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--primary-neon), 0 0 30px var(--secondary-neon);
    transition: opacity 0.3s ease-in-out;
}

.hero-content .russo-one-font {
    font-family: "Russo One", sans-serif;
    color: var(--text-light);
    text-transform: uppercase;
}

.hero-content p {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    line-height: 1.5;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    transition: opacity 0.3s ease-in-out;
}

.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
    z-index: 2;
}

.circle-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(15px, 2vw, 30px);
    height: 80vh;
}

.circle-item {
    width: clamp(100px, 10vw, 140px);
    height: clamp(100px, 10vw, 140px);
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid rgba(110, 68, 255, 0.5);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.circle-item:hover {
    border-color: var(--accent-neon);
    box-shadow: 0 0 25px var(--accent-neon);
    transform: scale(1.05);
}

.circle-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.circle-item:hover .circle-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.circle-text {
    font-family: 'Russo One', sans-serif;
    color: #fff;
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    letter-spacing: 1px;
    text-shadow: 0 2px 5px #000;
    pointer-events: none;
    text-align: center;
    line-height: 1.2;
    width: 100%;
    padding: 0 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- COMMON SECTION STYLES --- */
.section {
    padding: clamp(4rem, 6vw, 6rem) 0;
    text-align: center;
    background-color: transparent;
    border-radius: 10px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: clamp(2rem, 4vw, 4rem);
    position: relative;
    display: inline-block;
    color: var(--text-light);
    text-shadow: 0 0 10px var(--accent-neon);
}

.section-title::after {
    content: '';
    width: clamp(60px, 10vw, 100px);
    height: 4px;
    background: var(--primary-gradient);
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    border-radius: 5px;
    box-shadow: 0 0 10px var(--primary-neon), 0 0 20px var(--secondary-neon);
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 2.5vw, 2.5rem);
    margin-top: 3rem;
}

.card {
    background: var(--bg-dark);
    border: 2px solid var(--primary-neon);
    padding: clamp(1.5rem, 2.5vw, 2.5rem) clamp(1.5rem, 2vw, 2rem);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(110, 68, 255, 0.5), inset 0 0 10px rgba(110, 68, 255, 0.3);
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card h3 {
    font-size: clamp(1.4rem, 1.8vw, 1.8rem);
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0;
    text-shadow: 0 0 10px var(--secondary-neon), 0 0 20px rgba(255, 0, 255, 0.3);
    margin-bottom: 1rem;
}

.card p {
    font-size: clamp(0.95rem, 1vw, 1rem);
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* --- PRICE CARD (Pricing Section) --- */
.price-card {
    background: rgba(4, 4, 10, 0.7);
    padding: clamp(1.5rem, 2.5vw, 2.5rem);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(110, 68, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(110, 68, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, max-height 0.6s ease;
    max-height: 350px;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 0 30px var(--primary-neon), 0 0 50px var(--secondary-neon);
    border-color: var(--accent-neon);
    max-height: 1000px;
}

.price-card h3 {
    font-size: clamp(1.5rem, 2vw, 1.8rem);
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--accent-neon);
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(110, 68, 255, 0.2);
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list .price-amount {
    font-weight: bold;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(1.1rem, 1.3vw, 1.3rem);
    text-shadow: 0 0 5px var(--primary-neon);
}

.game-list-details {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(0, 255, 255, 0.3);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-in-out, opacity 0.4s ease-in;
    text-align: left;
}

.price-card:hover .game-list-details {
    max-height: 600px;
    opacity: 1;
    transition: max-height 0.6s ease-in-out 0.2s, opacity 0.4s ease-in 0.4s;
}

.game-list-details h4 {
    color: var(--accent-neon);
    font-size: clamp(1.1rem, 1.2vw, 1.2rem);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.game-list-details ul {
    list-style: disc;
    padding-left: 20px;
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: #a0a0b0;
}

.game-list-details ul li {
    padding: 3px 0;
    border-bottom: none;
}

.small-cta-button {
    display: block;
    text-align: center;
    margin-top: 1rem;
    background: var(--secondary-gradient);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: clamp(0.85rem, 1vw, 0.9rem);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.small-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--secondary-neon);
}

/* --- CATALOG CTA BUTTON (VR GAMES) --- */
.catalog-cta-button {
    display: block;
    text-align: center;
    margin-top: auto;
    padding: clamp(10px, 1.5vw, 12px) 20px;
    background: linear-gradient(90deg, rgba(110, 68, 255, 0.1), rgba(0, 255, 255, 0.1));
    color: var(--accent-neon);
    border: 2px solid var(--accent-neon);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: pulse-catalog-btn 2.5s infinite;
}

.catalog-cta-button:hover {
    background: var(--accent-neon);
    color: var(--bg-dark);
    box-shadow: 0 0 25px var(--accent-neon), inset 0 0 15px rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.02);
    animation: none;
}

@keyframes pulse-catalog-btn {
    0% {
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 25px rgba(0, 255, 255, 0.6), inset 0 0 15px rgba(0, 255, 255, 0.4);
        border-color: #fff;
        color: #fff;
    }

    100% {
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
    }
}

/* --- TARIFFS (BIRTHDAY) SECTION --- */
.simple-tariffs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 2vw, 2rem);
    margin-top: 2rem;
    align-items: stretch;
}

.tariff-card {
    background: rgba(10, 10, 20, 0.6);
    border: 1px solid rgba(110, 68, 255, 0.3);
    border-radius: 20px;
    padding: clamp(1.5rem, 2vw, 2rem);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
}

.tariff-card:hover {
    transform: translateY(-10px);
}

.tariff-header {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.t-name {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    margin: 0 0 10px;
    letter-spacing: 2px;
}

.t-price {
    font-size: clamp(1.6rem, 2vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-top: 15px;
}

.t-time {
    display: inline-block;
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tariff-body {
    flex-grow: 1;
}

.t-desc {
    text-align: center;
    color: #888;
    font-size: clamp(0.85rem, 1vw, 0.9rem);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.t-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.t-list li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    font-size: clamp(0.95rem, 1vw, 1rem);
    display: flex;
    align-items: center;
    gap: 10px;
}

.t-list li span:first-child {
    min-width: 25px;
    text-align: center;
}

.included-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px !important;
    margin-bottom: 10px;
    border: none !important;
    color: #ccc !important;
    font-size: clamp(0.9rem, 1vw, 0.95rem) !important;
}

.highlight-item {
    color: #fff !important;
    font-weight: bold;
    font-size: clamp(1rem, 1.1vw, 1.05rem) !important;
}

.t-btn {
    display: block;
    width: 100%;
    padding: clamp(12px, 1.5vw, 15px);
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
    margin-top: auto;
    font-size: clamp(0.9rem, 1vw, 1rem);
}

.tariff-details-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: clamp(0.8rem, 1vw, 0.85rem);
    margin: 10px auto 20px auto;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: table;
}

.tariff-details-btn:hover {
    background: var(--accent-neon);
    border-color: var(--accent-neon);
    color: #000;
    box-shadow: 0 0 15px var(--accent-neon);
    transform: translateY(-2px);
}

.card-start {
    border-top: 4px solid var(--accent-neon);
}

.card-start .t-name {
    color: var(--accent-neon);
}

.btn-outline {
    border: 2px solid var(--accent-neon);
    color: var(--accent-neon);
}

.btn-outline:hover {
    background: var(--accent-neon);
    color: #000;
    box-shadow: 0 0 20px var(--accent-neon);
}

.card-party {
    border: 2px solid var(--secondary-neon);
    background: rgba(20, 10, 30, 0.8);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.15);
}

.card-party:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.4);
}

.card-party .t-name {
    color: var(--secondary-neon);
    text-shadow: 0 0 15px var(--secondary-neon);
}

.party-glow {
    color: var(--secondary-neon);
    border-color: var(--secondary-neon);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.highlight-item span {
    text-shadow: 0 0 10px var(--secondary-neon);
}

.btn-filled {
    background: var(--secondary-neon);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.btn-filled:hover {
    background: #ff33ff;
    box-shadow: 0 0 40px var(--secondary-neon);
}

.best-value-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ff0055, #ff00ff);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 0, 85, 0.4);
    white-space: nowrap;
    font-size: clamp(0.7rem, 1vw, 0.9rem);
}

.card-max {
    border-top: 4px solid #ffd700;
}

.card-max .t-name {
    color: #ffd700;
}

.gold-glow {
    color: #ffd700;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.highlight-item.gold {
    color: #ffd700 !important;
}

.btn-gold {
    border: 1px solid #ffd700;
    color: #ffd700;
}

.btn-gold:hover {
    background: #ffd700;
    color: #000;
    box-shadow: 0 0 20px #ffd700;
}

/* --- PROMO BLOCK (Cyber Holidays / Minecraft) --- */
.split-promo-block {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: clamp(2rem, 4vw, 4rem);
    position: relative;
    border: none;
    box-shadow: none;
    background: transparent;
    min-height: auto;
}

.promo-image-area {
    width: 45%;
    max-width: 500px;
    position: relative;
    z-index: 1;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transform: perspective(1000px) rotateY(8deg) translateY(-10px);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.promo-image-area::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    background: var(--secondary-neon);
    filter: blur(60px);
    opacity: 0.6;
    z-index: -1;
    animation: pulsePromoGlow 4s infinite alternate;
}

@keyframes pulsePromoGlow {
    0% {
        opacity: 0.4;
        filter: blur(50px);
        transform: scale(0.95);
    }

    100% {
        opacity: 0.7;
        filter: blur(70px);
        transform: scale(1.05);
    }
}

.promo-full-img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: -10px 20px 40px rgba(0, 0, 0, 0.8);
}

.split-promo-block:hover .promo-image-area {
    transform: perspective(1000px) rotateY(0deg) translateY(0) scale(1.02);
}

.promo-info-sidebar {
    width: 55%;
    min-width: 320px;
    margin-left: -5%;
    z-index: 2;
    background: rgba(15, 15, 25, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 0, 255, 0.4);
    border-radius: 24px;
    padding: clamp(2rem, 3vw, 3rem);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-header {
    text-align: left;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.cyber-title {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    color: #fff;
    margin: 0 0 12px 0;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--secondary-neon), 2px 2px 0px var(--primary-neon);
    letter-spacing: 1px;
}

.date-badge-neon {
    display: inline-block;
    background: linear-gradient(135deg, #ff0055 0%, #ff00cc 100%);
    border: none;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 800;
    font-size: clamp(0.85rem, 1vw, 1.1rem);
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.date-badge-neon::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    animation: shineBadge 3s infinite;
}

@keyframes shineBadge {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.pulse-icon {
    display: inline-block;
    animation: pulseIcon 1s infinite;
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.cyber-intro {
    text-align: left;
    color: #ddd;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.5;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.offer-highlight-box {
    background: linear-gradient(135deg, rgba(110, 68, 255, 0.15) 0%, rgba(255, 0, 255, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: clamp(15px, 2vw, 20px);
    margin-bottom: 25px;
    box-shadow: inset 0 0 15px rgba(255, 0, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.offer-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-20deg);
    animation: shine 5s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.discount-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
}

.discount-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 10px;
    line-height: 1;
}

.discount-label {
    font-size: clamp(0.6rem, 1vw, 0.8rem);
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: -5px;
    text-transform: uppercase;
    font-weight: bold;
    z-index: 2;
}

.big-percent {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1;
    background: linear-gradient(180deg, #fff 20%, var(--secondary-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
}

.animate-pop {
    animation: popPulse 1.5s infinite ease-in-out;
    display: inline-block;
}

@keyframes popPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.8));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
    }
}

.discount-target {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-weight: 800;
    font-size: clamp(0.85rem, 1vw, 1.1rem);
    color: #fff;
    line-height: 1.1;
    border-left: 3px solid var(--accent-neon);
    padding-left: 15px;
}

.condition-alert {
    text-align: left;
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    color: #e0e0e0;
}

.action-block {
    text-align: left;
    margin-top: auto;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: clamp(15px, 2vw, 20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.instruction-header {
    font-family: 'Russo One', sans-serif;
    color: var(--secondary-neon);
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: clamp(0.9rem, 1vw, 1rem);
    letter-spacing: 1px;
}

.instruction-content p {
    margin: 0;
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    color: #ccc;
    line-height: 1.4;
}

.code-word {
    color: #fff;
    background: var(--primary-neon);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 0 10px rgba(110, 68, 255, 0.4);
}

.or-divider {
    font-size: clamp(0.7rem, 1vw, 0.8rem);
    color: #666;
    margin: 8px 0;
    text-transform: uppercase;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.or-divider::before {
    display: none;
}

.or-divider::after {
    content: '';
    height: 1px;
    width: 50px;
    background: #555;
}

.cyber-btn {
    display: block;
    width: 100%;
    padding: clamp(15px, 1.5vw, 20px);
    background: linear-gradient(45deg, var(--accent-neon), var(--primary-neon), var(--secondary-neon));
    background-size: 200% 200%;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(1.1rem, 1.2vw, 1.3rem);
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(110, 68, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 2px;
    margin-top: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cyber-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.6), 0 0 20px rgba(255, 0, 255, 0.6);
    color: #fff;
    border-color: #fff;
}

/* === CINEMATIC GAMES GRID (ГОРИЗОНТАЛЬНЫЕ ПРЕВЬЮ ИГР) === */
.games-preview-section {
    background: linear-gradient(to bottom, rgba(4, 4, 10, 0) 0%, rgba(110, 68, 255, 0.05) 50%, rgba(4, 4, 10, 0) 100%);
    padding: clamp(3rem, 5vw, 5rem) 0;
    border-top: 1px dashed rgba(110, 68, 255, 0.3);
    border-bottom: 1px dashed rgba(110, 68, 255, 0.3);
}

.mega-title {
    color: var(--accent-neon);
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    font-family: 'Russo One', sans-serif;
}

.games-subtitle {
    color: #b0b0c0;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.cinematic-games-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 2vw, 25px);
    margin-bottom: 3rem;
}

.cinematic-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(15px, 2vw, 25px);
}

.cinematic-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(15px, 2vw, 25px);
}

/* Строго горизонтальные карточки (16:9) */
.cinematic-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(110, 68, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: block;
    text-decoration: none;
    background: var(--bg-dark);
}

.cinematic-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-neon);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3), inset 0 0 20px rgba(0, 255, 255, 0.1);
}

.cinematic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.cinematic-card:hover img {
    transform: scale(1.08);
}

/* Текстовый слой поверх картинки */
.cinematic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: clamp(15px, 2vw, 25px);
    background: linear-gradient(to top, rgba(4, 4, 10, 0.95) 0%, rgba(4, 4, 10, 0.6) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    height: 70%;
    transition: background 0.3s ease;
}

.cinematic-card:hover .cinematic-overlay {
    background: linear-gradient(to top, rgba(4, 4, 10, 1) 0%, rgba(4, 4, 10, 0.8) 70%, transparent 100%);
}

.cinematic-tag {
    font-size: clamp(0.65rem, 0.8vw, 0.8rem);
    color: var(--text-light);
    background: rgba(110, 68, 255, 0.8);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(110, 68, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cinematic-card h3 {
    color: #fff;
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
    margin: 0 0 8px 0;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    font-family: 'Russo One', sans-serif;
    line-height: 1.1;
}

.cinematic-link-text {
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    color: var(--accent-neon);
    font-weight: bold;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.cinematic-card:hover .cinematic-link-text {
    opacity: 1;
    transform: translateX(0);
}

/* Кнопка "Смотреть все игры" - НОВЫЙ ДИЗАЙН */
.catalog-btn-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.cyber-catalog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    padding: 16px 40px;
    background: rgba(10, 10, 26, 0.8);
    color: var(--accent-neon);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    border-radius: 4px;
    text-decoration: none;
    border: 2px solid var(--accent-neon);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2), inset 0 0 10px rgba(0, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: 'Russo One', sans-serif;
}

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

.cyber-catalog-btn:hover {
    background: var(--accent-neon);
    color: #000;
    box-shadow: 0 0 30px var(--accent-neon), 0 0 15px rgba(0, 255, 255, 0.6);
    transform: translateY(-4px);
}

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

.cyber-catalog-btn svg {
    transition: transform 0.3s ease;
}

.cyber-catalog-btn:hover svg {
    transform: scale(1.1) rotate(-5deg);
}

.seo-ai-games-list {
    font-size: 0.8rem;
    color: #777;
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.5;
}

.seo-ai-games-list strong {
    color: #999;
}

/* --- ABOUT US --- */
.about-us-section {
    padding: clamp(40px, 6vw, 80px) 0;
    text-align: center;
    background-color: var(--bg-dark);
    border-top: 2px solid var(--primary-neon);
    box-shadow: 0 -5px 20px rgba(110, 68, 255, 0.3);
}

.about-us-content {
    max-width: clamp(600px, 60vw, 800px);
    margin: 40px auto;
    padding: clamp(20px, 3vw, 30px);
    background-color: rgba(10, 10, 26, 0.85);
    border-radius: 15px;
    border: 1px solid var(--accent-neon);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    text-align: left;
}

.about-us-content p {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 0 0 5px rgba(224, 224, 240, 0.2);
}

.about-us-content strong {
    color: var(--secondary-neon);
    font-weight: 700;
}

/* --- LOCATION SECTION --- */
.location-section {
    position: relative;
}

.location-details-card {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: rgba(15, 15, 25, 0.8);
    border: 1px solid rgba(110, 68, 255, 0.3);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: left;
    gap: 20px;
}

.location-address {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-address h3 {
    font-size: clamp(1.3rem, 1.8vw, 1.8rem);
    color: var(--accent-neon);
    margin-bottom: 1.5rem;
}

.location-text-and-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mall-logo {
    width: 100px;
    height: auto;
    object-fit: contain;
    background: #fff;
    padding: 5px;
    border-radius: 8px;
}

.location-note {
    color: #aaa;
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 5px;
}

.location-visuals {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.route-video {
    width: 100%;
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(110, 68, 255, 0.4);
    box-shadow: 0 0 20px rgba(110, 68, 255, 0.2);
}

/* --- CONTACT SECTION --- */
.contact-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 2rem;
}

.contact-item {
    flex: 1;
    background: rgba(10, 10, 20, 0.7);
    padding: clamp(1.5rem, 2vw, 2rem);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 255, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 0, 255, 0.2);
    border-color: var(--secondary-neon);
}

.contact-item h4 {
    color: var(--secondary-neon);
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    margin-bottom: 1rem;
}

.phone-link-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.tel-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: clamp(1.1rem, 1.3vw, 1.2rem);
    font-weight: bold;
    transition: color 0.3s;
}

.tel-link:hover {
    color: var(--accent-neon);
}

/* --- FOOTER --- */
.footer {
    background-color: #04040a;
    border-top: 1px solid rgba(110, 68, 255, 0.3);
    padding: 20px 0;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* --- MODALS (General) --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.is-active {
    opacity: 1;
}

.modal-content {
    background-color: var(--bg-dark);
    padding: clamp(15px, 2vw, 20px);
    border: 1px solid var(--primary-neon);
    border-radius: 10px;
    width: 90%;
    max-width: clamp(500px, 50vw, 600px);
    box-shadow: 0 0 40px rgba(110, 68, 255, 0.5);
    position: relative;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
}

.modal.is-active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.close-button {
    color: var(--text-light);
    font-size: clamp(28px, 3vw, 36px);
    font-weight: bold;
    position: absolute;
    top: -10px;
    right: -20px;
    cursor: pointer;
    line-height: 1;
    background-color: var(--secondary-neon);
    border-radius: 50%;
    padding: 5px 15px;
    z-index: 2001;
    box-shadow: 0 0 10px var(--secondary-neon), 0 0 20px rgba(255, 0, 255, 0.5);
    border: 2px solid var(--text-light);
    transition: all 0.2s ease-in-out;
}

@media(min-width: 768px) {
    .close-button {
        right: -50px;
    }
}

.close-button:hover,
.close-button:focus {
    color: var(--bg-dark);
    text-shadow: none;
    background-color: var(--accent-neon);
    box-shadow: 0 0 15px var(--accent-neon), 0 0 30px rgba(0, 255, 255, 0.7);
    transform: rotate(90deg);
}

/* --- TARIFF MODAL --- */
.tariff-modal-overlay {
    z-index: 3000;
    backdrop-filter: blur(10px);
}

.tariff-modal-content {
    background: linear-gradient(145deg, #0a0a15, #151525);
    border: 2px solid var(--primary-neon);
    max-width: clamp(600px, 60vw, 700px);
    width: 95%;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.tariff-modal-header {
    background: rgba(110, 68, 255, 0.1);
    padding: clamp(15px, 2vw, 20px);
    text-align: center;
    border-bottom: 1px solid rgba(110, 68, 255, 0.3);
}

.tariff-modal-header h2 {
    margin: 0;
    font-family: 'Russo One', sans-serif;
    color: var(--text-light);
    text-transform: uppercase;
    font-size: clamp(1.8rem, 2.5vw, 2rem);
}

.tm-subtitle {
    color: #ccc;
    margin: 5px 0 0;
    font-style: italic;
    font-size: clamp(1rem, 1.2vw, 1rem);
}

.tariff-modal-body {
    padding: clamp(15px, 2vw, 20px);
    overflow-y: auto;
}

.tm-section-title {
    color: var(--accent-neon);
    font-size: clamp(1.1rem, 1.3vw, 1.1rem);
    margin-bottom: 15px;
    border-left: 3px solid var(--accent-neon);
    padding-left: 10px;
}

.timeline {
    position: relative;
    padding-left: 20px;
    margin-bottom: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-neon), var(--secondary-neon));
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
    padding-left: 20px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: #000;
    border: 2px solid var(--secondary-neon);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary-neon);
}

.tl-time {
    font-weight: bold;
    color: var(--secondary-neon);
    font-size: clamp(0.85rem, 1vw, 0.9rem);
    display: block;
    margin-bottom: 3px;
}

.tl-title {
    color: #fff;
    font-weight: bold;
    font-size: clamp(1.05rem, 1.2vw, 1.1rem);
}

.tl-desc {
    color: #aaa;
    font-size: clamp(0.9rem, 1vw, 0.9rem);
    margin: 0;
    line-height: 1.4;
}

.highlight-list {
    list-style: none;
    padding: 0;
}

.highlight-list li {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 8px;
    padding: clamp(8px, 1vw, 10px);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0e0e0;
    font-size: clamp(0.95rem, 1.1vw, 1rem);
}

.tariff-modal-footer {
    padding: clamp(15px, 2vw, 20px);
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tm-price-display {
    font-size: clamp(1.4rem, 2vw, 1.5rem);
    font-weight: bold;
    color: #fff;
    margin: 0;
}

.modal-cta {
    margin: 0 !important;
    width: auto !important;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    background: linear-gradient(90deg, #00b09b, #96c93d);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
}

/* --- OFFER WIDGET --- */
.offer-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: clamp(300px, 20vw, 320px);
    background: rgba(15, 15, 35, 0.95);
    border: 3px solid #ff0055;
    border-radius: 20px;
    padding: clamp(15px, 2vw, 25px) clamp(15px, 2vw, 20px);
    z-index: 9999;
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.4), inset 0 0 20px rgba(255, 0, 85, 0.1);
    backdrop-filter: blur(15px);
    font-family: 'Exo 2', sans-serif;
    color: #fff;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    animation: borderPulse 2s infinite;
}

@keyframes borderPulse {
    0% {
        box-shadow: 0 0 30px rgba(255, 0, 85, 0.4);
        border-color: #ff0055;
    }

    50% {
        box-shadow: 0 0 50px rgba(255, 0, 85, 0.8);
        border-color: #ff4488;
    }

    100% {
        box-shadow: 0 0 30px rgba(255, 0, 85, 0.4);
        border-color: #ff0055;
    }
}

.offer-widget.hidden {
    transform: translateY(120%) scale(0.8);
    opacity: 0;
    pointer-events: none;
}

.offer-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #888;
    font-size: clamp(22px, 2vw, 28px);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.offer-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.offer-timer-box {
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #ff0055;
}

.offer-timer {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    color: #ff3333;
    text-shadow: 0 0 15px red;
    line-height: 1;
}

.offer-label {
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 5px;
}

.offer-title {
    margin: 15px 0 10px;
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

.offer-text {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    margin-bottom: 20px;
    color: #e0e0e0;
}

.offer-highlight {
    color: #00ffff;
    font-weight: bold;
    font-size: clamp(1.1rem, 1.3vw, 1.2rem);
    text-shadow: 0 0 10px cyan;
    display: block;
    margin-top: 5px;
}

.offer-btn {
    width: 100%;
    padding: clamp(12px, 1.5vw, 15px);
    background: linear-gradient(90deg, #ff0055, #ff00cc);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: bold;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.5);
    transition: transform 0.2s;
    animation: btnGlow 3s infinite;
}

@keyframes btnGlow {
    0% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }

    100% {
        filter: brightness(1);
    }
}

.offer-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 0, 85, 0.8);
}

.offer-input {
    width: 100%;
    padding: clamp(10px, 1.2vw, 15px);
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #444;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: clamp(0.9rem, 1vw, 1rem);
    outline: none;
    transition: 0.3s;
}

.offer-input:focus {
    border-color: #00ffff;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.offer-error {
    color: #ff3333;
    font-size: clamp(0.75rem, 0.9vw, 0.85rem);
    margin-bottom: 10px;
    display: none;
}

/* --- BOOKING MODAL STYLES (NEW) --- */
.booking-modal-overlay {
    backdrop-filter: blur(8px);
    z-index: 3500;
}

.booking-modal-content {
    background: linear-gradient(145deg, #0a0a15, #151525);
    border: 2px solid var(--primary-neon);
    max-width: clamp(350px, 30vw, 450px);
    width: 90%;
    text-align: center;
    padding: clamp(20px, 3vw, 30px) clamp(15px, 2vw, 25px);
    box-shadow: 0 0 40px rgba(110, 68, 255, 0.4);
}

.booking-title {
    font-family: 'Russo One', sans-serif;
    color: #fff;
    text-transform: uppercase;
    font-size: clamp(1.5rem, 2vw, 1.8rem);
    margin-top: 0;
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--primary-neon);
}

.booking-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    padding: clamp(12px, 1.5vw, 15px);
    border-radius: 50px;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
}

.booking-wa-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.7);
}

.booking-divider {
    margin: 20px 0;
    position: relative;
    opacity: 0.7;
    font-size: clamp(0.8rem, 1vw, 0.9rem);
}

.booking-divider::before,
.booking-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #555;
}

.booking-divider::before {
    left: 0;
}

.booking-divider::after {
    right: 0;
}

.booking-subtitle {
    font-size: clamp(1.1rem, 1.3vw, 1.2rem);
    color: var(--accent-neon);
    margin-bottom: 5px;
}

.booking-desc {
    font-size: clamp(0.85rem, 1vw, 0.9rem);
    color: #aaa;
    margin-bottom: 15px;
}

.booking-submit-btn {
    width: 100%;
    padding: clamp(12px, 1.5vw, 15px);
    background: var(--primary-gradient);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: bold;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 10px;
    box-shadow: 0 0 15px rgba(110, 68, 255, 0.5);
    transition: 0.3s;
}

.booking-submit-btn:hover {
    box-shadow: 0 0 30px var(--primary-neon);
    transform: translateY(-2px);
}

.booking-submit-btn:disabled {
    background: #555;
    cursor: not-allowed;
    transform: none;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 1200px) {
    .promo-info-sidebar {
        width: 60%;
    }

    .promo-image-area {
        width: 45%;
    }

    /* Адаптация Сетки под планшеты */
    .cinematic-row-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cinematic-row-3 .cinematic-card:last-child {
        grid-column: span 2;
        /* 5-я карточка занимает всю ширину внизу */
    }
}

@media (max-width: 900px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(10, 10, 26, 0.95);
        padding: 0.5rem 0;
        z-index: 1000;
    }

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

    .logo-container {
        flex-direction: row;
        align-items: center;
        flex-grow: 0;
    }

    .logo-img {
        margin-right: 0;
        margin-bottom: 0;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(4, 4, 10, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -5px 0 30px rgba(110, 68, 255, 0.3);
        border-left: 1px solid var(--primary-neon);
        margin-top: 0;
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        margin: 0;
        font-size: 1.2rem;
    }

    .burger-menu {
        display: flex;
        margin-left: 15px;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

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

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .cta-button {
        margin-top: 0;
        margin-left: auto;
        margin-right: 0;
    }

    .lang-switch {
        margin-top: 20px;
        margin-left: 0;
        margin-bottom: 0;
    }

    .circle-menu {
        display: none;
    }

    .hero-layout {
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        min-height: 350px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .card-party {
        transform: scale(1);
        order: -1;
        margin-bottom: 30px;
    }

    .card-party:hover {
        transform: translateY(-5px);
    }

    .split-promo-block {
        flex-direction: column;
        margin-top: 2rem;
    }

    .promo-image-area {
        width: 85%;
        max-width: none;
        transform: none;
        padding: 0;
        z-index: 1;
    }

    .promo-image-area::before {
        filter: blur(40px);
    }

    .promo-full-img {
        max-height: 500px;
    }

    .split-promo-block:hover .promo-image-area {
        transform: scale(1.02);
    }

    .promo-info-sidebar {
        width: 95%;
        margin-left: 0;
        margin-top: -15%;
        padding: clamp(1.5rem, 5vw, 2.5rem);
        border-top: 1px solid rgba(255, 0, 255, 0.4);
        border-left: 1px solid rgba(255, 0, 255, 0.2);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8), inset 0 0 15px rgba(255, 255, 255, 0.05);
    }

    .sidebar-header,
    .cyber-intro,
    .discount-row,
    .condition-alert,
    .action-block {
        text-align: center;
        align-items: center;
    }

    .discount-target {
        border-left: none;
        border-top: 2px solid var(--accent-neon);
        padding-left: 0;
        padding-top: 10px;
        margin-top: 5px;
        text-align: center;
    }

    .or-divider {
        justify-content: center;
    }

    .or-divider::before {
        display: block;
        width: 30px;
    }

    .or-divider::after {
        width: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        height: auto;
        padding: 8rem 1rem 4rem;
        text-align: center;
        justify-content: center;
        padding-right: 1rem;
    }

    .hero::after {
        height: 25vh;
    }

    .hero-content {
        align-self: center;
        padding-bottom: 0;
    }

    .grid-cards {
        grid-template-columns: 1fr;
    }

    .price-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-list .price-amount {
        margin-top: 5px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        width: 100%;
        max-width: 350px;
    }

    .location-details-card {
        flex-direction: column;
        text-align: center;
    }

    .location-address {
        padding-right: 0;
        text-align: center;
        order: 1;
        gap: 0;
    }

    .location-text-and-logo {
        flex-direction: column;
        padding-top: 0;
        border-top: none;
        align-items: center;
        text-align: center;
    }

    .location-visuals {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        order: 0;
        margin-bottom: 20px;
    }

    .mall-map-route {
        margin-top: 0;
    }

    .modal-content {
        width: 95%;
        max-width: none;
    }

    .close-button {
        right: 0px;
        top: -30px;
    }
}

@media (max-width: 600px) {
    .tariff-modal-footer {
        flex-direction: column;
        text-align: center;
    }

    .modal-cta {
        width: 100% !important;
    }

    /* Адаптация Сетки под мобильные телефоны */
    .cinematic-row-2,
    .cinematic-row-3 {
        grid-template-columns: 1fr;
    }

    .cinematic-row-3 .cinematic-card:last-child {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .offer-widget {
        width: 90%;
        bottom: 15px;
        right: 5%;
    }
}

/* Спиннер */
.loader-spinner {
    width: clamp(40px, 5vw, 50px);
    height: clamp(40px, 5vw, 50px);
}

.spinner-circle {
    width: 100%;
    height: 100%;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-neon);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 15px var(--accent-neon);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Блок выбора языка */
.loader-lang-box {
    width: 100%;
    animation: slideUpFade 0.5s ease-out;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader-title {
    color: #fff;
    font-family: 'Exo 2', sans-serif;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.5;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.loader-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.loader-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--primary-neon);
    color: #fff;
    padding: clamp(10px, 1.5vw, 15px);
    border-radius: 50px;
    font-size: clamp(1.1rem, 1.5vw, 1.2rem);
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(110, 68, 255, 0.2);
    font-family: 'Russo One', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
}

.loader-btn:hover,
.loader-btn:active {
    background: var(--primary-neon);
    box-shadow: 0 0 30px var(--primary-neon);
    transform: scale(1.05);
}

.l-flag {
    font-size: clamp(1.3rem, 1.8vw, 1.5rem);
}