.review-box {
    background: linear-gradient(145deg, rgba(30, 39, 65, 0.6), rgba(20, 27, 45, 0.6));
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 35, 74, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.review-author {
    font-weight: 600;
    font-size: 1.1em;
    color: var(--text-color);
}

.review-rating {
    color: var(--warning-color);
    font-size: 1.2em;
}

.star {
    display: inline-block;
    margin-right: 2px;
}

.star.empty {
    opacity: 0.3;
}

.star-half {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 0.5em;
    color: rgba(255, 255, 255, 0.3);
}

.star-half:before {
    content: "★";
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: var(--warning-color);
}

.review-content p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-secondary);
}

.rating-table {
    width: 100%;
    margin: var(--space-lg) 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rating-row {
    display: flex;
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(145deg, rgba(30, 39, 65, 0.4), rgba(20, 27, 45, 0.4));
}

.rating-row:last-child {
    border-bottom: none;
}

.rating-row:nth-child(odd) {
    background: linear-gradient(145deg, rgba(30, 39, 65, 0.6), rgba(20, 27, 45, 0.6));
}

.rating-category {
    flex: 1;
    font-weight: 500;
    color: var(--text-color);
}

.rating-score {
    font-weight: 700;
    color: var(--success-color);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.advantage-item {
    background: linear-gradient(145deg, rgba(30, 39, 65, 0.6), rgba(20, 27, 45, 0.6));
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 35, 74, 0.2);
}

.advantage-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.advantage-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.advantage-item h4 {
    margin: 0 0 var(--space-sm) 0;
    font-size: 1.1em;
    color: var(--text-color);
}

.advantage-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95em;
    line-height: 1.5;
}

.interview-box {
    background: linear-gradient(145deg, rgba(30, 39, 65, 0.5), rgba(20, 27, 45, 0.5));
    border-radius: var(--border-radius);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.interview-header {
    margin-bottom: var(--space-lg);
}

.interview-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: var(--space-md);
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.author-info h4 {
    margin: 0 0 5px 0;
    color: var(--text-color);
}

.author-title {
    font-size: 0.9em;
    color: var(--text-secondary);
}

.interview-content p {
    font-style: italic;
    line-height: 1.7;
    position: relative;
    padding-left: var(--space-lg);
    color: var(--text-secondary);
}

.interview-content p:before {
    content: '"';
    font-size: 2em;
    position: absolute;
    left: 0;
    top: -10px;
    color: var(--primary-color);
    font-family: Georgia, serif;
}

.rating-summary {
    background: linear-gradient(145deg, rgba(30, 39, 65, 0.6), rgba(20, 27, 45, 0.6));
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.overall-rating {
    display: flex;
    align-items: center;
    margin: var(--space-md) 0;
}

.rating-stars {
    color: var(--warning-color);
    font-size: 1.5em;
    margin-right: var(--space-sm);
}

.rating-number {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--text-color);
}

.rating-aspects {
    margin-top: var(--space-lg);
}

.aspect-item {
    margin-bottom: var(--space-sm);
}

.aspect-name {
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.aspect-bar {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.aspect-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 3px;
}

.info-box {
    background: linear-gradient(145deg, rgba(30, 39, 65, 0.5), rgba(20, 27, 45, 0.5));
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-box-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-box-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.info-box-content h4 {
    margin: 0 0 var(--space-sm) 0;
    color: var(--text-color);
}

.info-box-content p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.content-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin: var(--space-lg) 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.content-image:hover img {
    transform: scale(1.02);
}

.content-cta {
    text-align: center;
    margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-rating {
        margin-top: var(--space-sm);
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .interview-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin-right: 0;
        margin-bottom: var(--space-sm);
    }
    
    .info-box {
        flex-direction: column;
        text-align: center;
    }
    
    .info-box-icon {
        margin: 0 auto var(--space-sm);
    }
}

.content-image img {
    background: linear-gradient(145deg, rgba(30, 39, 65, 0.8), rgba(20, 27, 45, 0.8));
    min-height: 200px;
}

img[src$="reviews-overview.jpg"],
img[src$="vavada-forum-discussions.jpg"] {
    width: 100%;
    height: auto;
    min-height: 200px;
    background: linear-gradient(145deg, rgba(30, 39, 65, 0.8), rgba(20, 27, 45, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

img[src$="user-avatar.jpg"] {
    min-height: 60px;
    min-width: 60px;
    background: linear-gradient(145deg, rgba(30, 39, 65, 0.8), rgba(20, 27, 45, 0.8));
}

.star-half {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, 0.3);
}

.star-half:before {
    content: '★';
    position: absolute;
    color: var(--warning-color);
    width: 50%;
    overflow: hidden;
}

.content-wrapper h2 {
    margin-top: var(--space-xxl);
}

.content-wrapper h3 {
    color: var(--text-color);
}

.content-wrapper ul.content-list,
.content-wrapper ol.content-list {
    color: var(--text-secondary);
}

.content-wrapper ul.content-list li,
.content-wrapper ol.content-list li {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.content-wrapper ul.content-list li strong,
.content-wrapper ol.content-list li strong {
    color: var(--text-color);
}

.btn-block {
    display: block;
    width: 100%;
}

.cta-card {
    background: linear-gradient(145deg, rgba(30, 39, 65, 0.6), rgba(20, 27, 45, 0.6));
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(255, 35, 74, 0.1), transparent);
    z-index: -1;
}

.cta-card h3 {
    color: var(--text-color);
    margin-top: 0;
}

.cta-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.rating-summary:hover .aspect-fill {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}