
/* Reviews Hero Section */
.reviews-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 60% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    animation: particleFloat 15s infinite ease-in-out;
    z-index: -1;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.reviews-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.reviews-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-hero .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.reviews-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #8B5CF6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.reviews-hero .stat-label {
    color: #94a3b8;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Featured Reviews Section */
.featured-reviews {
    padding: 6rem 0;
    background: rgba(26, 26, 46, 0.3);
}

.reviews-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
    background: transparent;
    color: #8B5CF6;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #8B5CF6;
    color: white;
    transform: translateY(-2px);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.review-image {
    height: 200px;
    background: linear-gradient(135deg, #8B5CF6, #06B6D4, #F97316);
    position: relative;
    overflow: hidden;
}

.review-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.review-card:hover .review-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #8B5CF6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
}

.review-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(45deg, #F97316, #8B5CF6);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.review-badge.trending {
    background: linear-gradient(45deg, #10B981, #06B6D4);
}

.review-content {
    padding: 1.5rem;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #64748b;
}

.category {
    color: #8B5CF6;
    font-weight: 600;
}

.review-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #8B5CF6;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stars {
    color: #F97316;
}

.rating-score {
    background: linear-gradient(45deg, #8B5CF6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.1rem;
}

.review-content p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.review-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(6, 182, 212, 0.2);
    color: #06B6D4;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.read-review-btn {
    color: #8B5CF6;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-review-btn:hover {
    gap: 1rem;
    color: #06B6D4;
}

/* Game Guides Section */
.game-guides {
    padding: 6rem 0;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.guide-card:hover::before {
    opacity: 1;
}

.guide-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.3);
}

.guide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.guide-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(45deg, #10B981, #06B6D4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.difficulty-badge {
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.difficulty-badge.beginner {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
}

.difficulty-badge.intermediate {
    background: rgba(249, 115, 22, 0.2);
    color: #F97316;
}

.difficulty-badge.expert {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

.guide-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #10B981;
}

.guide-content p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guide-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    color: #64748b;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.guide-progress {
    margin-bottom: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #10B981, #06B6D4);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.8rem;
    color: #64748b;
}

.guide-btn {
    background: linear-gradient(45deg, #10B981, #06B6D4);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.guide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    gap: 1rem;
}

/* Game Comparison Section */
.game-comparison {
    padding: 6rem 0;
    background: rgba(26, 26, 46, 0.3);
}

.comparison-tool {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.comparison-header {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #8B5CF6;
}

.comparison-selectors {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.game-selector {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    background: rgba(139, 92, 246, 0.05);
    color: white;
    font-size: 1rem;
    min-width: 200px;
}

.game-selector:focus {
    outline: none;
    border-color: #8B5CF6;
}

.vs-divider {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F97316;
    background: linear-gradient(45deg, #F97316, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-results {
    margin-top: 2rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-placeholder {
    text-align: center;
    color: #64748b;
}

.comparison-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #8B5CF6;
}
.comparison-selectors {
    background-color: #8B5CF6;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
option {
    background-color: #8B5CF6;
}

/* Video Tutorials Section */
.video-tutorials {
    padding: 6rem 0;
}

.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tutorial-card {
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tutorial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.2);
}

.tutorial-video {
    height: 300px;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.video-placeholder i {
    font-size: 4rem;
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.tutorial-card:hover .video-placeholder i {
    opacity: 1;
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tutorial-info {
    padding: 1.5rem;
}

.tutorial-info h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #06B6D4;
}

.tutorial-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #64748b;
    flex-wrap: wrap;
}

.tutorial-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.tutorial-info p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tutorial-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tutorial-tags .tag {
    background: rgba(6, 182, 212, 0.2);
    color: #06B6D4;
}

/* Pro Tips Section */
.pro-tips {
    padding: 6rem 0;
    background: rgba(26, 26, 46, 0.3);
}

.tips-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

.tips-sidebar {
    position: sticky;
    top: 100px;
}

.tip-categories {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-btn {
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: #94a3b8;
    text-align: left;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
}

.tips-content {
    position: relative;
    min-height: 400px;
}

.tip-card {
    display: none;
    background: rgba(249, 115, 22, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.1);
    border-radius: 20px;
    padding: 2rem;
   
}

.tip-card.active {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.tip-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(45deg, #F97316, #8B5CF6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.tip-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #F97316;
}

.tip-content p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tip-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Community Reviews Section */
.community-reviews {
    padding: 6rem 0;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.community-review {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.community-review:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
}

.community-review .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-details h4 {
    color: #8B5CF6;
    margin-bottom: 0.3rem;
}

.user-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #64748b;
}

.level {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

.review-rating {
    text-align: right;
}

.review-rating .stars {
    margin-bottom: 0.3rem;
}

.rating-number {
    font-weight: 700;
    color: #F97316;
}

.community-review .review-content h3 {
    color: #06B6D4;
    margin-bottom: 0.5rem;
}

.community-review .review-content p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.community-review .review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #64748b;
}

.helpful {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #10B981;
}


/* Gaming News Section */
.gaming-news {
    padding: 6rem 0;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    height: 1000px;
}

.news-card {
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.3);
}

.news-card.featured {
    grid-row: span 2;
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    position: relative;
    flex-shrink: 0;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card.featured .news-image {
    height: 300px;
}

.news-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(45deg, #EF4444, #F97316);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.news-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #64748b;
}

.news-content .category {
    color: #06B6D4;
    font-weight: 600;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #06B6D4;
    line-height: 1.3;
}

.news-card.featured .news-content h3 {
    font-size: 1.5rem;
}

.news-content p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.news-content .read-more {
    color: #06B6D4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    margin-top: auto;
}

.news-content .read-more:hover {
    color: #8B5CF6;
}
.w100 {
    width: 100%;
}
.w75 {
    width: 75%;
}
.w30 {
    width: 30%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-hero .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .reviews-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .reviews-grid,
    .guides-grid,
    .tutorials-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-selectors {
        flex-direction: column;
    }
    
    .game-selector {
        min-width: 100%;
    }
    
    .tips-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tips-sidebar {
        position: static;
    }
    
    .tip-categories {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .category-btn {
        white-space: nowrap;
        min-width: 120px;
    }
    
    .tip-card.active {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .news-card.featured {
        grid-row: span 1;
    }
    
    .rating-input {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .reviews-hero .hero-title {
        font-size: 2rem;
    }
    
    .reviews-hero .stat-number {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .comparison-tool,
    .review-form {
        padding: 1rem;
    }
    
    .tutorial-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    .tip-categories {
        flex-direction: column;
        gap: 0.5rem;
    }
    .review-rating {
        flex-direction: column;
        align-items: flex-start;
    }
    .rating-input {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .community-review .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    } 
    .user-info {
        margin-top: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
}