/*
 * EthioFlix - Ethiopian Movie Recommendation Website
 * Netflix-style dark theme with modern UI components
 * Responsive design for all devices
 */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0f0f0f;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.hidden {
    display: none !important;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo h1 {
    color: #E50914;
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #E50914;
}

.nav-link.active {
    color: #E50914;
    background-color: rgba(229, 9, 20, 0.1);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #E50914);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* ===== BUTTONS ===== */
.cta-button {
    background: linear-gradient(45deg, #E50914, #ff0f1a);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(229, 9, 20, 0.4);
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn.primary {
    background-color: #E50914;
    color: white;
}

.btn.primary:hover {
    background-color: #ff0f1a;
    transform: translateY(-1px);
}

.btn.secondary {
    background-color: #333333;
    color: white;
}

.btn.secondary:hover {
    background-color: #444444;
}

.btn.added {
    background: linear-gradient(45deg, #28a745, #20c997) !important;
    color: #ffffff !important;
}

.btn.rated {
    background: linear-gradient(45deg, #ffd700, #ffed4e) !important;
    color: #333 !important;
}

/* ===== QUIZ SECTION ===== */
.quiz-section {
    background-color: #0f0f0f;
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quiz-progress {
    margin-bottom: 3rem;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #333333;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #E50914, #ff0f1a);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-text {
    color: #cccccc;
    font-size: 1rem;
}

.question {
    display: none;
    text-align: center;
}

.question.active {
    display: block;
}

.question h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.option-btn {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.option-btn:hover {
    border-color: #E50914;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(229, 9, 20, 0.2);
}

.option-btn.selected {
    border-color: #E50914;
    background: linear-gradient(145deg, #E50914, #ff0f1a);
    color: white;
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.nav-btn.primary {
    background-color: #E50914;
    color: white;
}

.nav-btn.secondary {
    background-color: #333333;
    color: white;
}

.nav-btn:hover {
    transform: translateY(-2px);
}

/* ===== RESULTS SECTION ===== */
.results-section {
    background-color: #0f0f0f;
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.results-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.results-container h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.movie-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.movie-poster img {
    width: 200px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.movie-info h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.movie-info p {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.movie-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    background-color: #E50914;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.results-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.action-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.action-btn.primary {
    background-color: #E50914;
    color: white;
}

.action-btn.secondary {
    background-color: #333333;
    color: white;
}

/* ===== FEATURED MOVIES ===== */
.featured-section {
    background-color: #1a1a1a;
    padding: 4rem 0;
}

.featured-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.movie-item {
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.movie-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.movie-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.movie-item-content {
    padding: 1.5rem;
}

.movie-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.movie-item p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.movie-item .year {
    color: #E50914;
    font-weight: 600;
}

.movie-item .movie-actions {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.movie-item .movie-actions .btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    min-width: auto;
}

.movie-item .rating-display {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #ffd700;
}

/* ===== COMMUNITY PAGE ===== */
.community-header {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 8rem 0 4rem;
    text-align: center;
}

.community-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.community-header p {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.community-main {
    padding: 2rem 0 4rem;
}

.create-post-section {
    margin-bottom: 3rem;
}

.create-post-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.create-post-card h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.create-post-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #cccccc;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    background-color: #333333;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #E50914;
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.submit-btn {
    background-color: #E50914;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #ff0f1a;
    transform: translateY(-2px);
}

/* ===== SEARCH & FILTER ===== */
.search-filter-section {
    margin-bottom: 3rem;
}

.search-filter-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: #333333;
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
    min-width: 300px;
}

.search-box input {
    background: none;
    border: none;
    padding: 1rem;
    color: #ffffff;
    font-size: 1rem;
    flex: 1;
}

.search-box input::placeholder {
    color: #999999;
}

.search-btn {
    background: none;
    border: none;
    padding: 1rem;
    color: #cccccc;
    cursor: pointer;
    font-size: 1.2rem;
}

.filter-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-options select {
    background-color: #333333;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
}

/* ===== POSTS ===== */
.posts-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.post-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.post-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: #999999;
    font-size: 0.9rem;
}

.post-category {
    background-color: #E50914;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.post-content {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.post-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.vote-btn {
    background: none;
    border: none;
    color: #cccccc;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.vote-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #E50914;
}

.vote-btn.upvoted {
    color: #4CAF50;
}

.vote-btn.downvoted {
    color: #f44336;
}

.vote-count {
    color: #cccccc;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.comment-btn {
    background: none;
    border: none;
    color: #cccccc;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.comment-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #E50914;
}

/* ===== COMMENTS ===== */
.comments-section {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.comment {
    background-color: #0f0f0f;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-author {
    color: #E50914;
    font-weight: 600;
    font-size: 0.9rem;
}

.comment-time {
    color: #999999;
    font-size: 0.8rem;
}

.comment-content {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.comment-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
}

.modal-content {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    color: #ffffff;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #cccccc;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #E50914;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* ===== ABOUT PAGE ===== */
.about-header {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 8rem 0 4rem;
    text-align: center;
}

.about-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.about-header p {
    font-size: 1.3rem;
    color: #cccccc;
}

.about-main {
    padding: 2rem 0 4rem;
}

.about-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-card h2 {
    color: #E50914;
    margin-bottom: 1rem;
}

.about-card p {
    color: #cccccc;
    line-height: 1.6;
}

.about-card ul {
    color: #cccccc;
    padding-left: 1.5rem;
}

.about-card li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #0f0f0f;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    color: #999999;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .quiz-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .question h2 {
        font-size: 2rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .movie-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .movie-poster img {
        width: 150px;
        height: 225px;
    }
    
    .results-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .search-filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        min-width: auto;
    }
    
    .filter-options {
        justify-content: center;
    }
    
    .post-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .post-actions {
        flex-wrap: wrap;
    }
    
    .modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .quiz-container {
        margin: 0.5rem;
        padding: 1rem;
    }
    
    .question h2 {
        font-size: 1.5rem;
    }
    
    .option-btn {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .movie-card {
        padding: 1.5rem;
    }
    
    .movie-poster img {
        width: 120px;
        height: 180px;
    }
    
    .movie-info h3 {
        font-size: 1.8rem;
    }
}

/* Watchlist and Favorites Pages */
.watchlist-main,
.favorites-main {
    padding-top: 100px;
    min-height: 100vh;
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
}

.watchlist-header,
.favorites-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
}

.watchlist-header h1,
.favorites-header h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.watchlist-header p,
.favorites-header p {
    font-size: 1.2rem;
    color: #cccccc;
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.movie-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.movie-poster {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.movie-card:hover .movie-poster img {
    transform: scale(1.05);
}

.movie-info h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.movie-info p {
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.movie-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(45deg, #E50914, #ff0f1a);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.movie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.movie-actions button {
    flex: 1;
    min-width: 120px;
}

.movie-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.rating-display {
    display: flex;
    gap: 2px;
}

.rating-display .star {
    color: #ffd700;
    font-size: 1.2rem;
}

.rating-display .star.empty {
    color: #444;
}

.rating-text {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.empty-state p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Rating Modal */
.rating-stars {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.star {
    font-size: 2.5rem;
    color: #444;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star:hover,
.star.active {
    color: #ffd700;
}

.star.selected {
    color: #ffd700;
}

.rating-text {
    text-align: center;
    color: #cccccc;
    margin-bottom: 20px;
}

.rating-label {
    color: #cccccc;
    font-size: 0.9rem;
    margin-right: 10px;
}

.rating-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}
