/* ============================================
   REVIEW PAGE ENHANCED STYLES - SLOTS
   ============================================ */

/* Импортируем этот файл в main.css */

.review-page-container {
    min-height: calc(100vh - 80px);
}

.review-hero-neon {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05), rgba(0, 255, 255, 0.05));
    border-radius: 30px;
    border: 2px solid rgba(255, 0, 255, 0.2);
}

.back-link-neon {
    font-size: 18px;
    text-decoration: none;
    padding: 12px 24px;
    background: rgba(255, 0, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 0, 255, 0.3);
}

.back-link-neon:hover {
    background: rgba(255, 0, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.review-title-neon {
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(255, 0, 255, 0.5);
}

.stars-large {
    font-size: 40px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.rating-value-large {
    font-size: 48px;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.8));
}

.review-content-neon {
    grid-template-columns: 1fr 400px;
}

.casino-logo-review {
    width: 240px;
    height: 240px;
    margin-bottom: 40px;
    background: rgba(26, 26, 62, 0.8);
    border: 3px solid rgba(255, 0, 255, 0.4);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.casino-logo-review::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 0, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.casino-logo-review:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 60px rgba(255, 0, 255, 0.5);
    border-color: var(--primary);
}

.casino-logo-review img {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.logo-placeholder-large {
    font-size: 120px;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.6));
}

.info-block-neon {
    background: rgba(26, 26, 62, 0.7);
    border-radius: 25px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-block-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.info-block-neon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.3);
    border-color: var(--primary);
}

.info-block-neon h2 {
    font-size: 30px;
    margin-bottom: 25px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-block-neon p {
    margin-bottom: 25px;
    line-height: 1.9;
    font-size: 16px;
}

.info-block-neon ul li {
    padding: 16px 0;
    padding-left: 40px;
    border-bottom: 1px solid rgba(255, 0, 255, 0.15);
    transition: all 0.3s ease;
    font-size: 15px;
    color: var(--text-light);
}

.info-block-neon ul li::before {
    font-size: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.info-block-neon ul li:hover {
    padding-left: 45px;
    color: var(--white);
}

.cta-block-neon {
    padding: 50px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.15), rgba(0, 255, 255, 0.15));
    border-radius: 25px;
    border: 3px solid var(--primary);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.3);
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-block-neon:hover {
    transform: scale(1.02);
    box-shadow: 0 0 60px rgba(255, 0, 255, 0.5);
}

.btn-large {
    padding: 22px 60px;
    font-size: 20px;
    font-weight: 800;
}

.review-sidebar-neon {
    position: sticky;
    top: 100px;
    gap: 30px;
}

.sidebar-widget-neon {
    background: rgba(26, 26, 62, 0.7);
    border-radius: 25px;
    padding: 35px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
}

.sidebar-widget-neon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.4);
    border-color: var(--primary);
}

.sidebar-widget-neon h3 {
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 800;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 0, 255, 0.3);
}

.info-row-neon {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.15);
    transition: all 0.3s ease;
    align-items: center;
}

.info-row-neon:hover {
    padding-left: 10px;
    background: rgba(255, 0, 255, 0.05);
    border-radius: 8px;
}

.label-neon {
    font-size: 14px;
}

.value-neon {
    font-size: 15px;
}

.value-neon-gold {
    font-size: 24px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.pros-list-neon li {
    padding: 14px 0;
    padding-left: 35px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.pros-list-neon li:hover {
    color: var(--white);
    padding-left: 40px;
}

.pros-list-neon li::before {
    font-size: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
}

