/* =============================================
   IMPROVED SOCIAL SHARE STYLES
   ============================================= */

/* Social Share Section */
.social-share-section {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.share-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 1px;
}

.share-icon {
    color: var(--primary);
}

/* Share Buttons Grid */
.share-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

/* Share Button Base */
.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.share-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.share-btn span {
    position: relative;
    z-index: 1;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
    z-index: 0;
}

.share-btn:hover::before {
    width: 100%;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Facebook */
.share-facebook {
    background: #1877F2;
    color: white;
    border-color: #1877F2;
}

.share-facebook:hover {
    background: #166FE5;
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
}

/* Twitter */
.share-twitter {
    background: #1DA1F2;
    color: white;
    border-color: #1DA1F2;
}

.share-twitter:hover {
    background: #1A94DA;
    box-shadow: 0 5px 20px rgba(29, 161, 242, 0.4);
}

/* LinkedIn */
.share-linkedin {
    background: #0A66C2;
    color: white;
    border-color: #0A66C2;
}

.share-linkedin:hover {
    background: #095196;
    box-shadow: 0 5px 20px rgba(10, 102, 194, 0.4);
}

/* WhatsApp */
.share-whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.share-whatsapp:hover {
    background: #20BA5A;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

/* Pinterest */
.share-pinterest {
    background: #E60023;
    color: white;
    border-color: #E60023;
}

.share-pinterest:hover {
    background: #CC001F;
    box-shadow: 0 5px 20px rgba(230, 0, 35, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .share-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .share-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .social-share-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .share-buttons-grid {
        grid-template-columns: 1fr;
    }
    
    .share-btn {
        justify-content: flex-start;
        padding: 1rem 1.25rem;
    }
}

/* =============================================
   REVIEW PAGE COLOR SCHEME IMPROVEMENTS
   ============================================= */

/* Remove blue tones from review page */
.review-container {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
}

.movie-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.movie-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-badge {
    background: linear-gradient(135deg, var(--primary) 0%, #c40812 100%);
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 5px 20px rgba(229, 9, 20, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.meta-item strong {
    color: var(--accent);
    min-width: 100px;
    font-weight: 600;
}

.meta-item:last-child {
    border-bottom: none;
}

/* Entry Content Styling */
.entry-content {
    line-height: 1.8;
    color: var(--text);
    font-size: 1.05rem;
}

.entry-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.entry-content h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.entry-content p {
    margin-bottom: 1.25rem;
}

.entry-content a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.entry-content a:hover {
    border-bottom-color: var(--primary);
}

/* Entry Meta */
.entry-meta {
    padding: 1.5rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Related Movies Section */
.related-movies {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.related-movies h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
    letter-spacing: 2px;
}

/* Mobile Responsive for Review Page */
@media (max-width: 768px) {
    .movie-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .movie-poster img {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    .review-container {
        padding: 1.5rem;
    }
    
    .rating-badge {
        font-size: 1.8rem;
        padding: 1rem;
    }
    
    .entry-content {
        font-size: 1rem;
    }
}
