/* Reset and Variables */
:root {
    --bg-dark: #120624;
    --bg-panel: #1e0b38;
    --primary-pink: #ea009e;
    --primary-pink-hover: #ff1ab3;
    --secondary-cyan: #00e5ff;
    --secondary-cyan-hover: #33ebff;
    --text-main: #ffffff;
    --text-muted: #a49bb3;
    --border-color: #3e2773;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

.rv-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

/* ---------- Hero Info Card (таблица характеристик) ---------- */
.rv-hero {
    background: linear-gradient(135deg, #1e0b38 0%, #2a0d50 60%, #120624 100%);
    border: 1px solid #3e2773;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 48px;
    position: relative;
}

.rv-hero::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 3px;
    background: linear-gradient(90deg, #ea009e, #00e5ff, #ea009e);
    background-size: 200% 100%;
    animation: borderFlow 3s linear infinite;
}

@keyframes borderFlow {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.rv-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

@media (max-width: 768px) {
    .rv-hero-inner { grid-template-columns: 1fr; }
}

/* ---------- Specs Table ---------- */
.rv-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.rv-specs-table td {
    padding: 13px 20px;
    border-bottom: 1px solid rgba(62, 39, 115, 0.5);
    vertical-align: middle;
    line-height: 1.4;
}

.rv-specs-table tr:last-child td {
    border-bottom: none;
}

.rv-specs-table td:first-child {
    color: #a49bb3;
    font-weight: 500;
    white-space: nowrap;
    width: 44%;
    padding-left: 28px;
}

.rv-specs-table td:last-child {
    color: #ffffff;
    font-weight: 600;
}

.rv-specs-table tr:hover td {
    background: rgba(234, 0, 158, 0.06);
}

/* highlight special rows */
.rv-specs-table .row-bonus td:last-child {
    color: #ea009e;
}
.rv-specs-table .row-promo td:last-child {
    color: #00e5ff;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    font-size: 15px;
}

/* ---------- Pros/Cons Block ---------- */
.rv-proscons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

@media (max-width: 640px) {
    .rv-proscons { grid-template-columns: 1fr; }
}

.rv-card {
    background: var(--bg-panel, #1e0b38);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #3e2773;
}

.rv-card-head {
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rv-card-head--pros {
    background: linear-gradient(90deg, rgba(0,229,255,.15), transparent);
    color: #00e5ff;
    border-bottom: 1px solid rgba(0,229,255,.2);
}

.rv-card-head--cons {
    background: linear-gradient(90deg, rgba(234,0,158,.15), transparent);
    color: #ea009e;
    border-bottom: 1px solid rgba(234,0,158,.2);
}

.rv-card-head svg {
    flex-shrink: 0;
}

.rv-list {
    list-style: none;
    margin: 0;
    padding: 18px 22px 22px;
}

.rv-list li {
    padding: 9px 0 9px 28px;
    position: relative;
    color: #a49bb3;
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(62, 39, 115, 0.3);
}

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

.rv-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.rv-list--pros li::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%2300e5ff' opacity='.18'/%3E%3Cpath d='M4 8.5l2.5 2.5 5.5-5.5' stroke='%2300e5ff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/cover;
}

.rv-list--cons li::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23ea009e' opacity='.18'/%3E%3Cpath d='M5 5l6 6M11 5l-6 6' stroke='%23ea009e' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center/cover;
}

/* ---------- Section Headings ---------- */
.rv-h2 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #3e2773;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rv-h2 span.rv-h2-accent {
    color: #ea009e;
}

.rv-h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #ea009e;
}

.rv-h3 {
    font-size: 18px;
    font-weight: 600;
    color: #00e5ff;
    margin: 28px 0 12px;
}

/* ---------- Body Text ---------- */
.rv-text {
    color: #a49bb3;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 18px;
    text-align: justify;
}

.rv-text strong {
    color: #e0d4f5;
    font-weight: 600;
}

/* ---------- Welcome Bonus Block ---------- */
.rv-bonus-block {
    background: linear-gradient(135deg, #1e0b38, #2d0a55);
    border: 1px solid #3e2773;
    border-radius: 14px;
    padding: 28px 30px;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.rv-bonus-block::after {
    content: '🎁';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 64px;
    opacity: 0.06;
}

.rv-bonus-headline {
    font-size: 32px;
    font-weight: 800;
    color: #ea009e;
    line-height: 1.2;
    margin-bottom: 6px;
}

.rv-bonus-subline {
    color: #a49bb3;
    font-size: 14px;
    margin-bottom: 24px;
}

.rv-bonus-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 640px) {
    .rv-bonus-steps { grid-template-columns: 1fr; }
}

.rv-bonus-step {
    background: rgba(0,0,0,.25);
    border: 1px solid rgba(62,39,115,.7);
    border-radius: 10px;
    padding: 16px 18px;
    position: relative;
}

.rv-bonus-step-num {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #a49bb3;
    margin-bottom: 4px;
}

.rv-bonus-step-val {
    font-size: 22px;
    font-weight: 800;
    color: #00e5ff;
    margin-bottom: 2px;
}

.rv-bonus-step-desc {
    font-size: 13px;
    color: #a49bb3;
}

/* ---------- Payments Table ---------- */
.rv-pay-table-wrap {
    overflow-x: auto;
    margin-bottom: 48px;
    border-radius: 10px;
    border: 1px solid #3e2773;
}

.rv-pay-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 500px;
}

.rv-pay-table thead tr {
    background: linear-gradient(90deg, #2d0a55, #1e0b38);
}

.rv-pay-table thead th {
    padding: 14px 20px;
    text-align: left;
    color: #00e5ff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-bottom: 2px solid #3e2773;
}

.rv-pay-table tbody tr {
    transition: background .2s;
}

.rv-pay-table tbody tr:nth-child(even) {
    background: rgba(30,11,56,.6);
}

.rv-pay-table tbody tr:hover {
    background: rgba(234,0,158,.08);
}

.rv-pay-table tbody td {
    padding: 13px 20px;
    color: #e0d4f5;
    border-bottom: 1px solid rgba(62,39,115,.4);
    vertical-align: middle;
}

.rv-pay-table tbody tr:last-child td {
    border-bottom: none;
}

.rv-pay-table td:first-child {
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rv-pay-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    background: rgba(0,229,255,.12);
    color: #00e5ff;
    border: 1px solid rgba(0,229,255,.25);
    flex-shrink: 0;
}

.rv-pay-yes { color: #00e5ff; font-weight: 700; }
.rv-pay-dash { color: #3e2773; }

/* ---------- Registration Steps ---------- */
.rv-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 48px;
    counter-reset: steps;
}

.rv-steps li {
    counter-increment: steps;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(62,39,115,.4);
    color: #a49bb3;
    font-size: 14px;
    line-height: 1.6;
}

.rv-steps li:last-child { border-bottom: none; }

.rv-steps li::before {
    content: counter(steps, decimal-leading-zero);
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ea009e, #8b00e0);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    margin-top: 1px;
}

.rv-steps li strong {
    color: #e0d4f5;
    display: block;
    font-size: 15px;
    margin-bottom: 3px;
}

/* ---------- Categories chips ---------- */
.rv-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 28px;
    list-style: none;
    padding: 0;
}

.rv-chips li {
    background: rgba(0,229,255,.08);
    border: 1px solid rgba(0,229,255,.25);
    color: #00e5ff;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: background .2s, transform .15s;
    cursor: default;
}

.rv-chips li:hover {
    background: rgba(0,229,255,.18);
    transform: translateY(-2px);
}

/* ---------- Inline Callout ---------- */
.rv-callout {
    background: linear-gradient(90deg, rgba(0,229,255,.06), rgba(234,0,158,.06));
    border-left: 3px solid #ea009e;
    border-radius: 0 8px 8px 0;
    padding: 16px 22px;
    margin: 20px 0 28px;
    color: #e0d4f5;
    font-size: 14px;
    line-height: 1.65;
}

.rv-callout strong { color: #ea009e; }

/* ---------- Section wrapper ---------- */
.rv-article-section {
    margin-bottom: 40px;
}

a {
    text-decoration: none;
    color: var(--text-main);
    transition: color 0.3s ease;
}

/* Header */
.header {
    background-color: var(--bg-panel);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 600;
    font-size: 16px;
}

.main-nav a:hover {
    color: var(--primary-pink);
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    font-size: 14px;
}

.btn:active {
    transform: scale(0.95);
}

.btn-login {
    background-color: var(--primary-pink);
    color: white;
}

.btn-login:hover {
    background-color: var(--primary-pink-hover);
}

.btn-register {
    background-color: var(--secondary-cyan);
    color: #000;
}

.btn-register:hover {
    background-color: var(--secondary-cyan-hover);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Slider */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 400px;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--primary-pink);
}

/* Games Grid */
.games-section {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    display: inline-block;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.game-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--bg-panel);
    transition: transform 0.3s;
}

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

.game-card img {
    width: 100%;
    height: auto;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay span {
    background-color: var(--primary-pink);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

/* SEO Content */
.seo-section {
    background-color: var(--bg-panel);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.seo-section h1 {
    font-size: 32px;
    color: var(--secondary-cyan);
    margin-bottom: 20px;
    text-align: center;
}

.toc {
    background-color: var(--bg-dark);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.toc h3 {
    margin-bottom: 15px;
    color: var(--primary-pink);
}

.toc ul {
    list-style: inside decimal;
}

.toc li {
    margin-bottom: 8px;
}

.toc a {
    color: var(--secondary-cyan);
}

.toc a:hover {
    text-decoration: underline;
}

.seo-text h2 {
    font-size: 24px;
    margin: 25px 0 15px;
    color: var(--primary-pink);
}

.seo-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
    text-align: justify;
}

/* FAQ */
.faq-section {
    margin-bottom: 40px;
}

.faq-section > h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary-cyan);
}

.faq-item {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--bg-panel);
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #2a104f;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 500;
}

.faq-question .icon {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-pink);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--bg-dark);
}

.faq-answer p {
    padding: 20px;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

/* Comments */
.comments-section {
    background-color: var(--bg-panel);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.comments-section h2 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
}

.btn-submit {
    background-color: var(--primary-pink);
    color: white;
    padding: 12px 30px;
    font-size: 16px;
}

.btn-submit:hover {
    background-color: var(--primary-pink-hover);
}

/* Footer */
.site-footer {
    background-color: #0b0316;
    padding: 40px 20px;
    border-top: 2px solid var(--border-color);
}

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

.footer-top {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.payment-methods {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-methods img {
    opacity: 0.6;
    transition: opacity 0.3s;
}

.payment-methods img:hover {
    opacity: 1;
}

.footer-middle {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: var(--secondary-cyan);
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--primary-pink);
}

.providers {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
}

.providers img {
    width: 100%;
    opacity: 0.5;
    transition: opacity 0.3s;
    border-radius: 4px;
}

.providers img:hover {
    opacity: 1;
}

.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-slider {
        height: 200px;
    }
    
    .footer-middle {
        grid-template-columns: 1fr;
    }
    
    .main-nav ul {
        gap: 15px;
    }
}