body {
    margin: 0;
    background-color: #04040a;
    font-family: 'Inter', sans-serif;
    color: #fff;
}

.exshare-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(8, 8, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(100, 0, 255, 0.3);
    box-shadow: 0 0 15px rgba(100, 0, 255, 0.3);
    z-index: 999;
    animation: headerGlow 5s linear infinite alternate;
}

@keyframes headerGlow {
    0% {
        box-shadow: 0 0 15px rgba(100, 0, 255, 0.4);
    }
    100% {
        box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
    }
}

.exshare-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 48px;
    filter: drop-shadow(0 0 6px #6f00ff);
    transition: 0.4s;
}

.logo img:hover {
    filter: drop-shadow(0 0 14px #00f7ff);
    transform: scale(1.05);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #d0d0ff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: 0.4s;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #6f00ff, #00f7ff);
    box-shadow: 0 0 10px #6f00ff;
    transition: width 0.4s ease;
}

.nav-menu a:hover {
    color: #fff;
    text-shadow: 0 0 10px #00f7ff;
}

.nav-menu a:hover::before {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-button {
    background: linear-gradient(90deg, #6f00ff, #00f7ff, #6f00ff);
    background-size: 300% 300%;
    animation: gradientFlow 4s ease infinite;
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.cta-button:hover::after {
    left: 130%;
}

.cta-button:hover {
    box-shadow: 0 0 25px #00f7ff;
}

.social {
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.4s;
    filter: drop-shadow(0 0 4px #6f00ff);
}

.social:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px #00f7ff);
}

.social.tg {
    background-image: url('https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/telegram.svg');
    filter: invert(63%) sepia(90%) saturate(2000%) hue-rotate(180deg);
}

.social.wa {
    background-image: url('https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/whatsapp.svg');
    filter: invert(63%) sepia(90%) saturate(2000%) hue-rotate(90deg);
}

/* === Mobile Menu === */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 26px;
    height: 3px;
    background: #00f7ff;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 950px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        background: rgba(10, 10, 25, 0.95);
        width: 100%;
        text-align: center;
        display: none;
        flex-direction: column;
        padding: 20px 0;
        border-top: 1px solid rgba(100, 0, 255, 0.3);
        box-shadow: 0 0 20px rgba(111, 0, 255, 0.6);
    }

    .nav-menu.active {
        display: flex;
    }

    .burger {
        display: flex;
    }
}

.exshare-footer {
    background: radial-gradient(circle at top, #090920 0%, #050510 100%);
    padding: 60px 20px 20px;
    color: #d0d0ff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -4px 20px rgba(100, 0, 255, 0.2);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo img {
    height: 50px;
    filter: drop-shadow(0 0 8px #6f00ff);
}

.footer-desc {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.6;
    color: #a5a5d6;
}

.footer-col h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #6f00ff;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #b8b8ff;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

.footer-col a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: linear-gradient(90deg, #6f00ff, #00f7ff);
    transition: width 0.3s ease;
}

.footer-col a:hover::before {
    width: 100%;
}

.footer-col a:hover {
    color: #fff;
    text-shadow: 0 0 8px #00f7ff;
}

.footer-contacts li a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    display: flex;
    font-size: 14px;
    justify-content: center;
    gap: 10px;
    color: #8888ff;
    position: relative;
    z-index: 2;
}

/* === Энергетическая неоновая линия === */
.neon-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 3px;
    background: linear-gradient(90deg, #6f00ff, #00f7ff, #6f00ff);
    animation: moveEnergy 6s linear infinite;
    filter: blur(1.5px);
    opacity: 0.9;
}

@keyframes moveEnergy {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* === Адаптив === */
@media (max-width: 700px) {
    .footer-container {
        text-align: center;
    }

    .footer-col h4::after {
        display: none;
    }
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
    z-index: 1;
}

/* 📸 Полупрозрачное изображение VR */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1606813902769-9f63e72a9b18?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    opacity: 0.25;
    filter: blur(2px) brightness(0.8);
    animation: bgMove 20s ease-in-out infinite alternate;
}

@keyframes bgMove {
    0% {
        transform: scale(1.05) translateY(0px);
    }
    100% {
        transform: scale(1.1) translateY(-20px);
    }
}

/* 🔮 Неоновая аура */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(111, 0, 255, 0.35), transparent 70%),
    radial-gradient(circle at 70% 50%, rgba(0, 247, 255, 0.35), transparent 70%);
    mix-blend-mode: screen;
    filter: blur(80px);
    animation: auraPulse 8s ease-in-out infinite alternate;
}

@keyframes auraPulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

/* 💬 Текст и кнопки */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInHero 1.5s ease forwards;
}

@keyframes fadeInHero {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.2;
    text-shadow: 0 0 25px #6f00ff, 0 0 50px #00f7ff;
}

.hero h1 span {
    color: #00f7ff;
    animation: glowText 3s ease-in-out infinite alternate;
}

@keyframes glowText {
    from {
        text-shadow: 0 0 15px #00f7ff;
    }
    to {
        text-shadow: 0 0 35px #6f00ff;
    }
}

.hero p {
    margin: 25px auto;
    font-size: 1.3rem;
    color: #cfcfff;
    max-width: 700px;
}

/* ⚡ Кнопки */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
}

.btn-primary, .btn-outline {
    border-radius: 35px;
    padding: 14px 36px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary {
    background: linear-gradient(90deg, #6f00ff, #00f7ff, #6f00ff);
    background-size: 300% 300%;
    color: #fff;
    animation: gradientFlow 5s ease infinite;
    cursor: pointer;
}

.btn-outline {
    border: 2px solid #00f7ff;
    color: #00f7ff;
    background: rgba(10, 10, 25, 0.4);
}

.btn-primary:hover, .btn-outline:hover {
    transform: scale(1.07);
    box-shadow: 0 0 25px #00f7ff;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* === О НАС === */
.about {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(5, 5, 15, 1) 0%, rgba(10, 10, 25, 1) 100%);
    z-index: 1;
}

/* Фоновая аура */
.about-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(111, 0, 255, 0.2), transparent 60%),
    radial-gradient(circle at 80% 60%, rgba(0, 247, 255, 0.15), transparent 60%);
    mix-blend-mode: screen;
    filter: blur(100px);
    animation: aboutAura 12s ease-in-out infinite alternate;
}

@keyframes aboutAura {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Заголовок */
.about h2 {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 0 25px rgba(111, 0, 255, 0.5);
}

.about h2 span {
    color: #00f7ff;
}

.subtitle {
    max-width: 700px;
    margin: 15px auto 60px;
    color: #b8b8ff;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Карточки преимуществ */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.about-item {
    background: rgba(15, 15, 35, 0.7);
    border: 1px solid rgba(111, 0, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(111, 0, 255, 0.15);
    transition: all 0.4s ease;
}

.about-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px rgba(0, 247, 255, 0.3);
}


.about-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.4);
}

.about-item p {
    color: #c4c4ff;
    font-size: 1rem;
    line-height: 1.5;
}

.about-item div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin-bottom: 20px;
    /* убираем серый фильтр, показываем цветную иконку */
    filter: none;
    transition: transform 0.5s ease;
}

.about-item:hover img {
    transform: rotate(8deg) scale(1.1);
    /* можно добавить лёгкое свечение при наведении */
    filter: drop-shadow(0 0 15px #00f7ff);
}

/* === Услуги === */
.services {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(180deg, rgba(10, 10, 25, 1) 0%, rgba(5, 5, 15, 1) 100%);
    text-align: center;
    z-index: 1;
}

.services-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 30%, rgba(111, 0, 255, 0.15), transparent 60%),
    radial-gradient(circle at 75% 70%, rgba(0, 247, 255, 0.15), transparent 60%);
    mix-blend-mode: screen;
    filter: blur(90px);
    animation: servicesAura 12s ease-in-out infinite alternate;
}

@keyframes servicesAura {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.services h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 60px;
    text-shadow: 0 0 25px rgba(111, 0, 255, 0.5);
}

.services h2 span {
    color: #00f7ff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(15, 15, 35, 0.7);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(111, 0, 255, 0.3);
    box-shadow: 0 0 25px rgba(111, 0, 255, 0.15);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px rgba(0, 247, 255, 0.4);
}

.service-card div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card img {
    width: 160px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: drop-shadow(0 0 10px #6f00ff);
}

.service-card:hover img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px #00f7ff);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.4);
}

.service-card p {
    font-size: 1rem;
    color: #c4c4ff;
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-small {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 25px;
    border: 1px solid #00f7ff;
    color: #00f7ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-small:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #00f7ff;
}

/* === VR-шлемы === */
.vr-devices {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(180deg, #050510 0%, #0a0a1a 100%);
    text-align: center;
    z-index: 1;
}

.vr-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(111, 0, 255, 0.1), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(0, 247, 255, 0.1), transparent 60%);
    mix-blend-mode: screen;
    filter: blur(80px);
    animation: vrAura 12s ease-in-out infinite alternate;
}

@keyframes vrAura {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.vr-devices h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 60px;
    text-shadow: 0 0 25px rgba(111, 0, 255, 0.5);
}

.vr-devices h2 span {
    color: #00f7ff;
}

.vr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.vr-card {
    background: rgba(15, 15, 35, 0.7);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(111, 0, 255, 0.3);
    box-shadow: 0 0 25px rgba(111, 0, 255, 0.15);
    transition: all 0.4s ease;
}

.vr-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(0, 247, 255, 0.5);
}

.vr-item div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vr-card div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vr-card img {
    width: 160px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px #6f00ff);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.vr-card:hover img {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 20px #00f7ff);
}

.vr-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.4);
}

.vr-card p {
    font-size: 1rem;
    color: #c4c4ff;
    line-height: 1.5;
    margin-bottom: 15px;
}

.vr-card .price {
    display: block;
    font-weight: 700;
    color: #00f7ff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.vr-card .btn-small {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 25px;
    border: 1px solid #00f7ff;
    color: #00f7ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vr-card .btn-small:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #00f7ff;
}

.subscriptions-row {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(180deg, #050510 0%, #0a0a1a 100%);
    text-align: center;
}

.subs-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 30%, rgba(111, 0, 255, 0.15), transparent 60%),
    radial-gradient(circle at 75% 70%, rgba(0, 247, 255, 0.15), transparent 60%);
    mix-blend-mode: screen;
    filter: blur(80px);
}

.subscriptions-row h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 25px;
}

.subscriptions-row h2 span {
    color: #00f7ff;
}

.subs-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.subs-card {
    background: rgba(15, 15, 35, 0.7);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(111, 0, 255, 0.3);
    box-shadow: 0 0 15px rgba(111, 0, 255, 0.15);
    transition: all 0.4s ease;
    text-align: center;
    width: 280px;
    position: relative;
}

.subs-card::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 25px;
    background: linear-gradient(45deg, #6f00ff, #00f7ff, #6f00ff, #00f7ff);
    background-size: 400% 400%;
    animation: neonPulse 6s linear infinite;
    opacity: 0.4;
    z-index: -1;
}

@keyframes neonPulse {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.subs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 35px rgba(0, 247, 255, 0.5), 0 0 20px rgba(111, 0, 255, 0.3);
}

.subs-card .in-div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.subs-card img {
    width: 160px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: drop-shadow(0 0 10px #6f00ff);
}

.subs-card:hover img {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 20px #00f7ff);
}

.subs-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.tariffs-row {
    display: flex;
    flex-direction: column; /* вертикальные блоки тарифов */
    gap: 12px; /* вертикальный отступ между ценами */
    margin-bottom: 15px;
}

.tariff {
    display: flex;
    justify-content: space-between;
    padding: 6px 10px;
    background: rgba(10, 10, 25, 0.5);
    border-radius: 10px;
    font-size: 0.95rem;
    color: #c4c4ff;
    transition: all 0.3s ease;
}

.tariff:hover {
    background: rgba(0, 247, 255, 0.15);
    color: #00f7ff;
    box-shadow: 0 0 8px #00f7ff;
}

.tariff .price {
    color: #00f7ff;
    font-weight: 600;
}

.btn-small {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 25px;
    border: 1px solid #00f7ff;
    color: #00f7ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-small:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px #00f7ff;
}
/* === КАТАЛОГ ИГР === */
.games-catalog {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(180deg, #050510 0%, #0a0a1a 100%);
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.games-bg {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 30% 40%, rgba(111,0,255,0.15), transparent 60%),
            radial-gradient(circle at 70% 60%, rgba(0,247,255,0.15), transparent 60%);
    mix-blend-mode: screen;
    filter: blur(100px);
    animation: gamesAura 12s ease-in-out infinite alternate;
    z-index: -1;
}
@keyframes gamesAura {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.05); opacity: 0.85; }
}

.games-catalog h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 25px rgba(111,0,255,0.5);
}
.games-catalog h2 span { color: #00f7ff; }

.games-catalog .subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #b8b8ff;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* === ФИЛЬТРЫ === */
.filters {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    color: #00f7ff;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 0 8px rgba(0,247,255,0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-group .icon {
    font-size: 1.1rem;
    filter: drop-shadow(0 0 6px currentColor);
}

.neon-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #111;
    border: 1px solid #444;
    color: #fff;
    padding: 10px 40px 10px 15px;
    border-radius: 8px;
    font-size: 16px;
    position: relative;
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='12' width='12' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'><polygon points='0,0 20,0 10,10'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}
.neon-select:focus {
    outline: none;
    border-color: #0ff;
}

.neon-select:hover {
    border-color: #6f00ff;
    box-shadow: 0 0 20px rgba(111,0,255,0.4);
}

/* === СЕТКА ИГР === */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* === КАРТОЧКА ИГРЫ === */
.game-card {
    background: rgba(15,15,35,0.8);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(111,0,255,0.3);
    box-shadow: 0 0 25px rgba(111,0,255,0.15);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    max-width: 300px;
    margin: 0 auto;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,247,255,0.1), transparent);
    transition: 0.8s;
    z-index: -1;
}

.game-card:hover::before {
    left: 100%;
}

.game-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow:
            0 0 40px rgba(0,247,255,0.5),
            0 0 60px rgba(111,0,255,0.3);
    border-color: #00f7ff;
}

.game-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.game-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.08);
}

.platform-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 8px rgba(0,0,0,0.6);
    z-index: 2;
}

.platform-badge.ps { background: linear-gradient(135deg, #006fcd, #003087); }
.platform-badge.xbox { background: linear-gradient(135deg, #107c10, #0a6326); }
.platform-badge.vr { background: linear-gradient(135deg, #6f00ff, #00f7ff); }

.game-card h3 {
    font-size: 1.3rem;
    margin: 0 0 12px;
    color: #fff;
    text-shadow: 0 0 8px rgba(0,247,255,0.3);
}

.game-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: #c4c4ff;
}

.game-info .rent strong,
.game-info .buy strong {
    color: #00f7ff;
    font-weight: 700;
}

.btns {
    display: flex;
    gag: 12px;
    justify-content: center;
    gap: 10px;
}

.btn-small {
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 80px;
}

.btn-small.primary {
    background: linear-gradient(90deg, #6f00ff, #00f7ff, #6f00ff);
    background-size: 300% 300%;
    animation: gradientFlow 5s ease infinite;
    color: #fff;
    border: none;
    box-shadow: 0 0 15px rgba(0,247,255,0.3);
}

.btn-small.outline {
    border: 1px solid #00f7ff;
    color: #00f7ff;
    background: transparent;
}

.btn-small:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0,247,255,0.6);
}

.btn-small.primary:hover {
    box-shadow: 0 0 25px rgba(0,247,255,0.8);
}

.btn-small.outline:hover {
    background: rgba(0,247,255,0.1);
    color: #fff;
}

/* Адаптив */
@media (max-width: 768px) {
    .filters {
        flex-direction: column;
        align-items: center;
    }
    .filter-group {
        width: 100%;
        max-width: 300px;
    }
    .games-grid {
        grid-template-columns: 1fr;
    }
}

/* === ОТЗЫВЫ === */
.reviews {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(180deg, #0a0a1a 0%, #050510 100%);
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 40%, rgba(111, 0, 255, 0.15), transparent 60%),
    radial-gradient(circle at 80% 60%, rgba(0, 247, 255, 0.15), transparent 60%);
    mix-blend-mode: screen;
    filter: blur(100px);
    animation: reviewsAura 12s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes reviewsAura {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.05);
        opacity: 0.85;
    }
}

.reviews h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 25px rgba(111, 0, 2550.5);
}

.reviews h2 span {
    color: #00f7ff;
}

.reviews .subtitle {
    max-width: 700px;
    margin: 0 auto 60px;
    color: #b8b8ff;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* === Слайдер отзывов === */
.reviews-slider-wrapper {
    position: relative;
    max-width: 100%;
    padding: 0 60px; /* место под стрелки */
    overflow: hidden;
}

.reviews-slider {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.reviews-slider::-webkit-scrollbar { display: none; }

.review-card {
    flex: 0 0 300px;
    background: rgba(15, 15, 35, 0.7);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(111, 0, 255, 0.3);
    box-shadow: 0 0 25px rgba(111, 0, 255, 0.15);
    transition: all 0.4s ease;
    scroll-snap-align: center;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 247, 255, 0.1), transparent);
    transition: 0.7s;
    z-index: -1;
}

.review-card:hover::before {
    left: 100%;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px rgba(0, 247, 255, 0.4), 0 0 20px rgba(111, 0, 255, 0.3);
    border-color: #00f7ff;
}

.review-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid #fff;
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.4);
    transition: all 0.3s ease;
}

.review-card:hover img {
    transform: scale(1.1);
    box-shadow: 0 0 25px #fff;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-card h4 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
    text-shadow: 0 0 8px rgba(0, 247, 255, 0.3);
}

.stars {
    color: #00f7ff;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #00f7ff;
}

.review-card p {
    color: #c4c4ff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 12px 0;
    min-height: 60px;
}

.review-card .date {
    font-size: 0.85rem;
    color: #8888ff;
    opacity: 0.8;
}
/* === ЯРКИЕ НЕОНОВЫЕ СТРЕЛКИ === */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(15, 15, 35, 0.9);
    border: 2px solid #00f7ff;
    border-radius: 50%;
    color: #00f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(12px);
    box-shadow:
            0 0 20px rgba(0, 247, 255, 0.5),
            0 0 40px rgba(0, 247, 255, 0.3),
            inset 0 0 15px rgba(0, 247, 255, 0.1);
}

.slider-arrow:hover {
    background: rgba(0, 247, 255, 0.15);
    border-color: #6f00ff;
    color: #fff;
    transform: translateY(-50%) scale(1.15);
    box-shadow:
            0 0 35px rgba(0, 247, 255, 0.8),
            0 0 60px rgba(111, 0, 255, 0.6),
            inset 0 0 20px rgba(0, 247, 255, 0.2);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(1.05);
}

/* Позиционирование */
.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

/* SVG иконки */
.slider-arrow svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 8px currentColor);
    transition: transform 0.3s ease;
}

.slider-arrow:hover svg {
    transform: scale(1.3);
}

/* Отключение при крайних позициях */
.slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.2);
}

/* === КОНТАКТЫ === */
.contacts {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(180deg, #050510 0%, #0a0a1a 100%);
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.contacts::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(111, 0, 255, 0.2), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(0, 247, 255, 0.15), transparent 60%);
    mix-blend-mode: screen;
    filter: blur(100px);
    animation: contactAura 10s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes contactAura {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.05);
        opacity: 0.85;
    }
}

.contacts h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 25px rgba(111, 0, 255, 0.5);
}

.contacts h2 span {
    color: #00f7ff;
}

.contacts .subtitle {
    max-width: 600px;
    margin: 0 auto 50px;
    color: #b8b8ff;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* === Иконки контактов === */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #00f7ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 24px;
    border: 1px solid rgba(0, 247, 255, 0.4);
    border-radius: 50px;
    background: rgba(15, 15, 35, 0.6);
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.2);
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 247, 255, 0.2), transparent);
    transition: 0.6s;
}

.contact-link:hover::before {
    left: 100%;
}

.contact-link:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 247, 255, 0.6), 0 0 15px rgba(111, 0, 255, 0.4);
    border-color: #00f7ff;
    text-shadow: 0 0 10px #00f7ff;
}

.contact-link .icon {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 8px currentColor);
    transition: transform 0.3s ease;
}

.contact-link:hover .icon {
    transform: scale(1.2) rotate(10deg);
}

/* Специфичные цвета для TG и WA */
.contact-link.tg {
    border-color: rgba(0, 247, 255, 0.5);
}

.contact-link.wa {
    border-color: rgba(0, 255, 100, 0.5);
}

/* === Форма === */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(15, 15, 35, 0.7);
    border-radius: 20px;
    border: 1px solid rgba(111, 0, 255, 0.3);
    box-shadow: 0 0 30px rgba(111, 0, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.contact-form:hover {
    box-shadow: 0 0 40px rgba(0, 247, 255, 0.3);
    transform: translateY(-5px);
}

.contact-form input,
.contact-form textarea {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(0, 247, 255, 0.4);
    background: rgba(10, 10, 25, 0.6);
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8888ff;
    font-weight: 500;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00f7ff;
    background: rgba(15, 15, 35, 0.8);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.4);
    transform: scale(1.02);
}

.contact-form button {
    margin-top: 10px;
    align-self: center;
}

/* Переопределяем btn-primary для формы */
.contact-form .btn-primary {
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(90deg, #6f00ff, #00f7ff, #6f00ff);
}


/* Buttons! */

.main-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #00f7ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 24px;
    border: 1px solid rgba(0, 247, 255, 0.4);
    border-radius: 50px;
    background: rgba(15, 15, 35, 0.6);
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.2);
}

.main-button.wh1te {
    color: #ffffff;
    border: 1px solid rgba(251, 251, 251, 0.57);
    box-shadow: 0 0 15px rgba(44, 50, 51, 0.2);
}

.main-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 247, 255, 0.2), transparent);
    transition: 0.6s;
}

.main-button:hover::before {
    left: 100%;
}

.main-button:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 247, 255, 0.6), 0 0 15px rgba(111, 0, 255, 0.4);
    border-color: #00f7ff;
    text-shadow: 0 0 10px #00f7ff;
}

.main-button .icon {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 8px currentColor);
    transition: transform 0.3s ease;
}

.main-button:hover .icon {
    transform: scale(1.2) rotate(10deg);
}

.main-button {
    border-color: rgba(0, 247, 255, 0.5);
}

.container {
    justify-self: center;
}

/* -------------------------------------------------
   BREADCRUMBS – NEON CYBERPUNK STYLE
   ------------------------------------------------- */
.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #8888ff;
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
}

/* Every <li> */
.breadcrumbs li {
    display: flex;
    align-items: center;
}

/* Links */
.breadcrumbs a {
    color: #d0d0ff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.35s ease;
    background: rgba(15,15,35,0.4);
    backdrop-filter: blur(6px);
}

/* Hover / active state */
.breadcrumbs a:hover,
.breadcrumbs a:focus {
    color: #fff;
    background: rgba(15,15,35,0.8);
    text-shadow: 0 0 8px #00f7ff;
}

/* Current page (non-link) */
.breadcrumbs li:last-child {
    color: #00f7ff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0,247,255,0.6);
}
.breadcrumbs li:last-child a {
    pointer-events: none;
    background: transparent;
    box-shadow: none;
}

/* Arrow separator */
.breadcrumb-arrow {
    width: 14px;
    height: 14px;
    color: #6f00ff;
    margin: 0 6px;
    filter: drop-shadow(0 0 4px #6f00ff);
    transition: all 0.35s ease;
}
.breadcrumbs li:hover .breadcrumb-arrow {
    color: #00f7ff;
    filter: drop-shadow(0 0 8px #00f7ff);
    transform: translateX(2px);
}

/* Schema microdata – keep invisible */
.breadcrumbs [itemprop="position"] { display: none; }

/* -------------------------------------------------
   RESPONSIVE
   ------------------------------------------------- */
@media (max-width: 640px) {
    .breadcrumbs {
        font-size: 0.85rem;
        gap: 6px;
    }
    .breadcrumbs a {
        padding: 3px 6px;
    }
    .breadcrumb-arrow {
        width: 12px;
        height: 12px;
        margin: 0 4px;
    }
}

/* -------------------------------------------------
   OPTIONAL: animated neon underline for links
   ------------------------------------------------- */
.breadcrumbs a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #6f00ff, #00f7ff);
    transition: width 0.35s ease, left 0.35s ease;
}
.breadcrumbs a:hover::after {
    width: 100%;
    left: 0;
}

.article-read-btn {
    padding: 6px 16px !important;
    font-size: 0.8rem !important;
    min-width: auto !important;
    width: auto !important;
    flex: none !important;
    margin-left: auto; /* прижимает к правому краю */
    display: inline-block;
    text-align: center;
    background: linear-gradient(90deg, #6f00ff, #00f7ff, #6f00ff);
    background-size: 300% 300%;
    animation: gradientFlow 5s ease infinite;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    box-shadow: 0 0 15px rgba(0,247,255,0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.article-read-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 25px rgba(0,247,255,0.6), 0 0 15px rgba(111,0,255,0.4);
}

.article-read-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s;
    z-index: 1;
}
.article-read-btn:hover::before {
    left: 120%;
}

.article-date {
    opacity: 0.9;
    font-weight: 500;
}

.conetent_index_row a:hover {
    background: rgba(0,247,255,0.15) !important;
    color: #fff !important;
    box-shadow: 0 0 15px rgba(0,247,255,0.5);
    transform: translateX(4px);
}

.form_right a:hover {
    color: #fff;
    border-color: #00f7ff;
    box-shadow: 0 0 25px rgba(0,247,255,0.6);
    text-shadow: 0 0 10px #00f7ff;
}

@media (max-width: 992px) {
    .max-w-7xl.mx-auto > div {
        grid-template-columns: 1fr !important;
    }
    .info_block_right {
        order: -1;
        margin-bottom: 40px;
    }
}
css/* ========================================
   КОНТЕНТ СТАТЬИ — НЕОНОВЫЙ СТИЛЬ
   ======================================== */

    /* Общий контейнер */
.redactor.the_content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #e0e0ff;
}

/* Заголовки */
.redactor.the_content h2,
.redactor.the_content h3,
.redactor.the_content h4,
.redactor.the_content h5,
.redactor.the_content h6 {
    margin: 32px 0 16px;
    color: #fff;
    text-shadow: 0 0 15px rgba(111, 0, 255, 0.4);
    position: relative;
    padding-bottom: 8px;
}

.redactor.the_content h2 {
    font-size: 2rem;
    font-weight: 800;
}
.redactor.the_content h3 {
    font-size: 1.6rem;
    font-weight: 700;
}
.redactor.the_content h4 {
    font-size: 1.4rem;
    font-weight: 600;
}

/* Подчёркивание с градиентом */
.redactor.the_content h2::after,
.redactor.the_content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6f00ff, #00f7ff);
    border-radius: 2px;
    box-shadow: 0 0 10px #00f7ff;
}

/* Абзацы */
.redactor.the_content p {
    margin: 16px 0;
    color: #c4c4ff;
}

/* Списки */
.redactor.the_content ul,
.redactor.the_content ol {
    margin: 16px 0;
    padding-left: 28px;
}

.redactor.the_content ul li {
    position: relative;
    margin: 8px 0;
    color: #d0d0ff;
}
.redactor.the_content ul li::before {
    content: '◆';
    color: #00f7ff;
    position: absolute;
    left: -20px;
    font-size: 0.9rem;
    filter: drop-shadow(0 0 4px #00f7ff);
}

.redactor.the_content ol {
    counter-reset: list-counter;
}
.redactor.the_content ol li {
    counter-increment: list-counter;
    color: #d0d0ff;
    position: relative;
}
.redactor.the_content ol li::before {
    content: counter(list-counter) ".";
    color: #6f00ff;
    font-weight: 700;
    position: absolute;
    left: -24px;
    text-shadow: 0 0 6px #6f00ff;
}

/* Цитаты */
.redactor.the_content blockquote {
    margin: 32px 0;
    padding: 24px 28px;
    background: rgba(15, 15, 35, 0.7);
    border-left: 4px solid #00f7ff;
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: #b8b8ff;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.15);
    backdrop-filter: blur(8px);
}
.redactor.the_content blockquote::before {
    content: '“';
    position: absolute;
    top: -10px;
    left: 16px;
    font-size: 3rem;
    color: #6f00ff;
    opacity: 0.3;
    font-family: serif;
}
.redactor.the_content blockquote p {
    margin: 0;
}

/* Изображения */
.redactor.the_content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 24px 0;
    box-shadow: 0 0 25px rgba(111, 0, 255, 0.3);
    transition: all 0.4s ease;
    display: block;
}
.redactor.the_content img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 35px rgba(0, 247, 255, 0.5);
    filter: drop-shadow(0 0 15px #00f7ff);
}

/* Фигуры с подписями */
.redactor.the_content figure {
    margin: 32px 0;
    text-align: center;
}
.redactor.the_content figcaption {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #8888ff;
    font-style: italic;
}

/* Код */
.redactor.the_content pre,
.redactor.the_content code {
    background: rgba(10, 10, 25, 0.8);
    border-radius: 12px;
    padding: 16px;
    overflow-x: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    color: #00f7ff;
    border: 1px solid rgba(111, 0, 255, 0.3);
    box-shadow: 0 0 15px rgba(111, 0, 255, 0.2);
    margin: 20px 0;
}
.redactor.the_content code {
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 0.9rem;
}

/* Таблицы */
.redactor.the_content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: rgba(15, 15, 35, 0.5);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(111, 0, 255, 0.15);
}
.redactor.the_content th,
.redactor.the_content td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(111, 0, 255, 0.2);
}
.redactor.the_content th {
    background: rgba(111, 0, 255, 0.2);
    color: #fff;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(0, 247, 255, 0.4);
}
.redactor.the_content tr:hover {
    background: rgba(0, 247, 255, 0.1);
}

/* Ссылки */
.redactor.the_content a {
    color: #00f7ff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s;
}
.redactor.the_content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #6f00ff, #00f7ff);
    transition: width 0.3s ease;
}
.redactor.the_content a:hover {
    color: #fff;
    text-shadow: 0 0 10px #00f7ff;
}
.redactor.the_content a:hover::after {
    width: 100%;
}

/* Горизонтальная линия */
.redactor.the_content hr {
    border: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6f00ff, #00f7ff, transparent);
    margin: 40px 0;
    filter: drop-shadow(0 0 8px #00f7ff);
}