/* ========================================
   KAGEFLOW - Anime Catalog
   Inspired by sekai.one
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary-red: #ef334e;
    --primary-red-dark: #c41e3a;
    --accent-cyan: #00B0FF;
    --accent-cyan-glow: #00C8FF;
    --background-black: #000000;
    --background-dark: #0a0a0a;
    --background-card: #111111;
    --background-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a7a7a7;
    --text-muted: #666666;
    --border-color: #222222;
    --gradient-red: linear-gradient(135deg, #ef334e, #ff6b6b);
    --gradient-dark: radial-gradient(ellipse at center, #1a1a2e 0%, #000000 100%);
    --shadow-glow: 0 0 20px rgba(239, 51, 78, 0.3);
    --shadow-cyan: 0 0 20px rgba(0, 176, 255, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--background-black);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red-dark);
}

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px var(--accent-cyan);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
    background: var(--background-card);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-card);
}

.btn:active {
    transform: scale(0.95);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-primary {
    background: var(--gradient-red);
    box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(239, 51, 78, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-cyan {
    background: linear-gradient(135deg, #00B0FF, #00E5FF);
    box-shadow: var(--shadow-cyan);
}

.btn-full {
    width: 100%;
}

.btn-favorite {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    padding: 10px 20px;
}

.btn-favorite.active {
    background: var(--primary-red);
    color: white;
    box-shadow: var(--shadow-glow);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.nav-logo {
    height: 40px;
    width: auto;
    /* Make white logo visible with red glow */
    filter: brightness(1.5) drop-shadow(0 0 5px #ef334e) drop-shadow(0 0 10px #ef334e);
    transition: var(--transition-normal);
}

.nav-brand a:hover .nav-logo {
    filter: brightness(2) drop-shadow(0 0 10px #ef334e) drop-shadow(0 0 20px #ef334e);
    transform: scale(1.1);
}

.brand-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 3px;
}

.brand-text span {
    color: var(--primary-red);
    text-shadow: 0 0 20px var(--primary-red);
}

.nav-brand a span {
    color: var(--primary-red);
    text-shadow: 0 0 20px var(--primary-red);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition-normal);
    box-shadow: 0 0 10px var(--primary-red);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-glow);
}

/* Hero Section */
.hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 20px 60px;
    background: var(--gradient-dark);
    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"><circle cx="50" cy="50" r="1" fill="%23ffffff10"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, #ef334e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px rgba(239, 51, 78, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(239, 51, 78, 0.8));
    }
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-small {
    min-height: 30vh;
    padding: 120px 20px 40px;
}

.hero-small h1 {
    font-size: 2.5rem;
}

/* Search */
.search-container {
    display: flex;
    max-width: 600px;
    width: 100%;
    gap: 0;
    background: var(--background-card);
    border-radius: 50px;
    padding: 5px;
    box-shadow: var(--shadow-card), inset 0 0 0 1px var(--border-color);
}

.search-container input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 50px 0 0 50px;
    background: transparent;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.search-container input::placeholder {
    color: var(--text-muted);
}

.search-container input:focus {
    outline: none;
}

.search-container .btn {
    border-radius: 50px;
    padding: 15px 30px;
}

/* Filters */
.filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 25px 40px;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-color);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.filter-group select {
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    background: var(--background-card);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    min-width: 160px;
    transition: var(--transition-normal);
}

.filter-group select:hover {
    border-color: var(--primary-red);
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: var(--shadow-glow);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 40px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title::before {
    content: '';
    width: 5px;
    height: 30px;
    background: var(--primary-red);
    box-shadow: var(--shadow-glow);
}

/* Anime Grid */
.anime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.anime-card {
    background: var(--background-card);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-normal);
    cursor: pointer;
    position: relative;
    group: card;
}

.anime-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, var(--primary-red), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-normal);
}

.anime-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-card), 0 0 30px rgba(239, 51, 78, 0.2);
}

.anime-card:hover::before {
    opacity: 1;
}

.anime-card-image {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    filter: grayscale(20%);
    transition: var(--transition-normal);
}

.anime-card:hover .anime-card-image {
    filter: grayscale(0%) contrast(1.1);
}

.anime-card-info {
    padding: 18px;
    background: linear-gradient(to top, var(--background-card) 60%, transparent);
    position: relative;
}

.anime-card-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.anime-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-secondary);
}

.anime-card-score {
    color: var(--primary-red);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.anime-card-status {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.status-releasing {
    background: rgba(0, 200, 83, 0.9);
    box-shadow: 0 0 15px rgba(0, 200, 83, 0.5);
}

.status-finished {
    background: rgba(239, 51, 78, 0.9);
    box-shadow: var(--shadow-glow);
}

.status-upcoming {
    background: rgba(0, 176, 255, 0.9);
    box-shadow: var(--shadow-cyan);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 50px;
}

#page-info {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

/* Loading */
.loading {
    text-align: center;
    padding: 80px;
    color: var(--text-muted);
    grid-column: 1 / -1;
    font-size: 16px;
}

.loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 2px solid var(--primary-red);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--background-card);
    border-radius: 20px;
    max-width: 950px;
    width: 100%;
    margin: 60px auto;
    position: relative;
    border: 1px solid var(--border-color);
    animation: slideUp 0.4s ease;
    overflow: hidden;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-small {
    max-width: 420px;
    padding: 40px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-muted);
    z-index: 10;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--background-dark);
    transition: var(--transition-normal);
}

.close-modal:hover {
    color: var(--primary-red);
    background: var(--background-card);
    box-shadow: var(--shadow-glow);
}

/* Anime Detail Modal */
.anime-detail {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
}

.anime-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.anime-detail-info {
    padding: 40px;
}

.anime-detail-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.anime-detail-subtitle {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 14px;
}

.anime-detail-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.meta-item {
    padding: 8px 16px;
    background: var(--background-dark);
    border-radius: 25px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.anime-detail-synopsis {
    color: var(--text-secondary);
    margin-bottom: 25px;
    max-height: 180px;
    overflow-y: auto;
    line-height: 1.8;
    font-size: 14px;
    padding-right: 10px;
}

.anime-detail-genres {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.genre-tag {
    padding: 8px 16px;
    background: var(--gradient-red);
    border-radius: 25px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.anime-detail-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Forms */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--background-dark);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: var(--transition-normal);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: var(--shadow-glow);
}

.auth-switch {
    text-align: center;
    margin-top: 25px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* ========================================
   Auth Modal Improved
   ======================================== */

.modal-auth {
    max-width: 420px;
    padding: 40px;
    background: linear-gradient(145deg, var(--background-card) 0%, var(--background-dark) 100%);
    border: 1px solid var(--border-color);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    height: 60px;
    width: auto;
    filter: brightness(1.5) drop-shadow(0 0 10px #ef334e);
    margin-bottom: 20px;
}

.auth-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff, var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 13px;
}

/* Input Wrapper */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    font-size: 16px;
    opacity: 0.7;
    z-index: 1;
}

.input-wrapper input {
    width: 100%;
    padding: 15px 20px 15px 45px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--background-dark);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: var(--transition-normal);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: var(--shadow-glow);
}

.input-wrapper input::placeholder {
    color: var(--text-muted);
}

.toggle-password {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.toggle-password:hover {
    opacity: 1;
}

/* Auth Error */
.auth-error {
    padding: 12px 15px;
    background: rgba(239, 51, 78, 0.1);
    border: 1px solid var(--primary-red);
    border-radius: 10px;
    color: var(--primary-red);
    font-size: 13px;
    margin-bottom: 15px;
    text-align: center;
}

/* Auth Divider */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    padding: 0 15px;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Google Button */
.btn-google {
    background: var(--background-dark);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-google:hover {
    background: var(--background-card);
    border-color: var(--text-muted);
}

.btn-google span {
    font-size: 18px;
}

/* Auth Switch Link */
.auth-switch a {
    color: var(--primary-red);
    font-weight: 600;
    margin-left: 5px;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Planning Page */
.day-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px;
    background: var(--background-card);
}

.day-navigation h2 {
    min-width: 220px;
    text-align: center;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.week-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: var(--background-dark);
    flex-wrap: wrap;
}

.day-tab {
    padding: 12px 24px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    background: var(--background-card);
    color: var(--text-secondary);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
}

.day-tab:hover,
.day-tab.active {
    background: var(--gradient-red);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: var(--background-card);
    border-radius: 15px;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.schedule-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-red);
}

.schedule-time {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-red);
    min-width: 90px;
    text-shadow: 0 0 10px rgba(239, 51, 78, 0.5);
}

.schedule-image {
    width: 70px;
    height: 95px;
    object-fit: cover;
    border-radius: 10px;
}

.schedule-info {
    flex: 1;
}

.schedule-title {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.schedule-episode {
    color: var(--text-secondary);
    font-size: 13px;
}

/* Profile Page */
.profile-container {
    max-width: 1000px;
    padding-top: 120px;
}

.auth-required {
    text-align: center;
    padding: 120px 20px;
}

.auth-required h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.auth-required p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 16px;
}

.profile-header {
    display: flex;
    gap: 35px;
    align-items: center;
    padding: 40px;
    background: var(--background-card);
    border-radius: 20px;
    margin-bottom: 35px;
    border: 1px solid var(--border-color);
}

.profile-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--gradient-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
}

.profile-info h1 {
    margin-bottom: 8px;
    font-size: 1.8rem;
}

.profile-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.stat-card {
    text-align: center;
    padding: 35px;
    background: var(--background-card);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.stat-card:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-red);
    text-shadow: 0 0 20px rgba(239, 51, 78, 0.5);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.profile-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.profile-tab {
    padding: 14px 28px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    background: var(--background-card);
    color: var(--text-secondary);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
}

.profile-tab:hover,
.profile-tab.active {
    background: var(--gradient-red);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.profile-grid {
    min-height: 250px;
}

.empty-list {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px;
    color: var(--text-muted);
    font-size: 15px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 50px 40px;
    background: var(--background-card);
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
}

.footer p {
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer a {
    color: var(--primary-red);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .hero {
        padding: 120px 20px 50px;
    }

    .hero h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .search-container {
        flex-direction: column;
        border-radius: 15px;
        gap: 10px;
    }

    .search-container input {
        border-radius: 25px;
        text-align: center;
    }

    .filters {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .container {
        padding: 30px 20px;
    }

    .anime-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .anime-detail {
        grid-template-columns: 1fr;
    }

    .anime-detail-image {
        max-height: 350px;
    }

    .anime-detail-info {
        padding: 25px;
    }

    .anime-detail-title {
        font-size: 1.5rem;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .profile-stats {
        grid-template-columns: 1fr;
    }

    .schedule-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .anime-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.3rem;
    }
}

/* ========================================
   3D Carousel - Trending Section
   ======================================== */

.carousel-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--background-black) 0%, rgba(17, 17, 17, 0.8) 50%, var(--background-black) 100%);
    position: relative;
    overflow: hidden;
}

.carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 51, 78, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.carousel-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 50px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.carousel-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-red);
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: var(--shadow-glow);
}

/* Swiper Container */
.trending-carousel {
    width: 100%;
    padding: 50px 0 80px;
    position: relative;
}

.trending-carousel .swiper-wrapper {
    align-items: center;
}

/* Carousel Slide */
.trending-carousel .swiper-slide {
    width: 280px;
    height: 400px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
}

.trending-carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.7) grayscale(30%);
}

.trending-carousel .swiper-slide-active img {
    filter: brightness(1) grayscale(0%);
}

.trending-carousel .swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.trending-carousel .swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-cyan), var(--primary-red));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.trending-carousel .swiper-slide-active::after {
    opacity: 1;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(30deg);
    }
}

/* Slide Content */
.carousel-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 3;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.trending-carousel .swiper-slide-active .carousel-slide-content {
    transform: translateY(0);
    opacity: 1;
}

.carousel-slide-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-slide-content .slide-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-secondary);
}

.carousel-slide-content .slide-score {
    color: var(--primary-red);
    font-weight: 600;
}

.carousel-slide-content .slide-genres {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.carousel-slide-content .slide-genre {
    padding: 4px 10px;
    background: rgba(239, 51, 78, 0.3);
    border: 1px solid var(--primary-red);
    border-radius: 15px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Swiper Navigation */
.trending-carousel .swiper-button-prev,
.trending-carousel .swiper-button-next {
    width: 50px;
    height: 50px;
    background: var(--background-card);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.trending-carousel .swiper-button-prev::after,
.trending-carousel .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

.trending-carousel .swiper-button-prev:hover,
.trending-carousel .swiper-button-next:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-glow);
    transform: scale(1.1);
}

/* Swiper Pagination */
.trending-carousel .swiper-pagination {
    bottom: 20px;
}

.trending-carousel .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--border-color);
    opacity: 1;
    transition: all 0.3s ease;
}

.trending-carousel .swiper-pagination-bullet-active {
    background: var(--primary-red);
    box-shadow: var(--shadow-glow);
    transform: scale(1.2);
}

/* 3D Effect Enhancement */
.trending-carousel .swiper-slide-prev,
.trending-carousel .swiper-slide-next {
    opacity: 0.6;
}

.trending-carousel .swiper-slide-active {
    opacity: 1;
    z-index: 10;
}

/* Reflection Effect */
.carousel-slide-reflection {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
    transform: scaleY(-1);
    opacity: 0.3;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .trending-carousel .swiper-slide {
        width: 220px;
        height: 320px;
    }

    .carousel-title {
        font-size: 1.5rem;
    }

    .trending-carousel .swiper-button-prev,
    .trending-carousel .swiper-button-next {
        display: none;
    }

    .carousel-slide-content h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .trending-carousel .swiper-slide {
        width: 180px;
        height: 270px;
    }

    .carousel-slide-content {
        padding: 15px;
    }

    .carousel-slide-content .slide-genres {
        display: none;
    }
}

/* ========================================
   Streaming Links Section
   ======================================== */

.streaming-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.streaming-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.streaming-title::before {
    content: '';
    width: 4px;
    height: 16px;
    background: var(--primary-red);
    border-radius: 2px;
}

.streaming-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.streaming-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--background-dark);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.streaming-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--platform-color, var(--primary-red));
    transition: width 0.3s ease;
}

.streaming-link:hover {
    border-color: var(--platform-color, var(--primary-red));
    background: rgba(239, 51, 78, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3),
                0 0 20px color-mix(in srgb, var(--platform-color, var(--primary-red)) 30%, transparent);
}

.streaming-link:hover::before {
    width: 100%;
    opacity: 0.15;
}

.streaming-icon {
    font-size: 20px;
    line-height: 1;
}

.streaming-name {
    position: relative;
    z-index: 1;
}

.official-link {
    background: transparent;
    border-style: dashed;
}

.official-link:hover {
    background: rgba(108, 92, 231, 0.1);
}

/* Streaming link badges for specific platforms */
.streaming-link[href*="crunchyroll"]::before { background: #F47521; }
.streaming-link[href*="netflix"]::before { background: #E50914; }
.streaming-link[href*="amazon"]::before,
.streaming-link[href*="primevideo"]::before { background: #00A8E1; }
.streaming-link[href*="disney"]::before { background: #113CCF; }
.streaming-link[href*="hulu"]::before { background: #1CE783; }
.streaming-link[href*="funimation"]::before { background: #5B0BB5; }
.streaming-link[href*="hidive"]::before { background: #00BAFF; }
.streaming-link[href*="adn"]::before,
.streaming-link[href*="animedigitalnetwork"]::before { background: #0099CC; }
.streaming-link[href*="bilibili"]::before { background: #00A1D6; }
.streaming-link[href*="youtube"]::before { background: #FF0000; }
.streaming-link[href*="twitter"]::before { background: #1DA1F2; }

/* Responsive streaming links */
@media (max-width: 768px) {
    .streaming-links {
        gap: 10px;
    }

    .streaming-link {
        padding: 10px 15px;
        font-size: 13px;
        flex: 1 1 calc(50% - 10px);
        justify-content: center;
    }

    .streaming-icon {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .streaming-link {
        flex: 1 1 100%;
    }
}

/* ========================================
   Comments Section
   ======================================== */

.comments-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.comments-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comments-title::before {
    content: '';
    width: 4px;
    height: 16px;
    background: var(--accent-cyan);
    border-radius: 2px;
}

/* Comment Form */
.comment-form-container {
    margin-bottom: 25px;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comment-input-wrapper {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.comment-input-wrapper .comment-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--gradient-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.comment-form textarea,
#comment-input {
    flex: 1;
    min-height: 80px;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--background-dark);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    resize: vertical;
    transition: var(--transition-normal);
}

.comment-form textarea:focus,
#comment-input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-cyan);
}

.comment-form textarea::placeholder,
#comment-input::placeholder {
    color: var(--text-muted);
}

.comment-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 52px;
}

.char-count {
    font-size: 12px;
    color: var(--text-muted);
}

.btn-small {
    padding: 8px 20px;
    font-size: 12px;
}

.comment-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.char-counter {
    font-size: 12px;
    color: var(--text-muted);
}

.char-counter.warning {
    color: #FFA500;
}

.char-counter.error {
    color: var(--primary-red);
}

.btn-comment {
    padding: 10px 25px;
    font-size: 13px;
    background: linear-gradient(135deg, #00B0FF, #00E5FF);
    box-shadow: var(--shadow-cyan);
}

.btn-comment:hover {
    box-shadow: 0 0 30px rgba(0, 176, 255, 0.5);
}

.btn-comment:disabled {
    background: var(--background-card);
    box-shadow: none;
    opacity: 0.5;
}

/* Login Prompt */
.comment-login-prompt,
.login-prompt {
    padding: 25px;
    background: var(--background-dark);
    border-radius: 12px;
    text-align: center;
    border: 1px dashed var(--border-color);
}

.comment-login-prompt p,
.login-prompt p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 14px;
}

.comment-login-prompt .btn,
.login-prompt .btn {
    padding: 10px 25px;
    font-size: 13px;
}

/* Comments List */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.comments-list::-webkit-scrollbar {
    width: 6px;
}

.comments-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.comments-list::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

/* Individual Comment */
.comment {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: var(--background-dark);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.comment:hover {
    border-color: rgba(0, 176, 255, 0.3);
}

.comment-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.comment-content {
    flex: 1;
    min-width: 0;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 10px;
}

.comment-author {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.comment-time {
    font-size: 12px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.comment-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    word-break: break-word;
}

.comment-actions {
    display: flex;
    gap: 15px;
    margin-top: 12px;
}

.comment-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: none;
    border-radius: 20px;
    background: transparent;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.comment-action:hover {
    background: var(--background-card);
    color: var(--text-primary);
}

.comment-action.like-btn:hover,
.comment-action.like-btn.liked {
    color: var(--primary-red);
}

.comment-action.like-btn.liked {
    background: rgba(239, 51, 78, 0.1);
}

.comment-action.delete-btn:hover {
    color: var(--primary-red);
    background: rgba(239, 51, 78, 0.1);
}

.like-count {
    font-weight: 600;
}

/* Empty Comments */
.no-comments {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 14px;
}

.no-comments::before {
    content: '💬';
    display: block;
    font-size: 40px;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Loading Comments */
.comments-loading {
    text-align: center;
    padding: 30px;
    color: var(--text-muted);
}

.comments-loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid var(--accent-cyan);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Responsive Comments */
@media (max-width: 768px) {
    .comment {
        padding: 15px;
        gap: 12px;
    }

    .comment-avatar {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .comment-header {
        flex-direction: column;
        gap: 4px;
    }

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

    .comments-list {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .comment-form-footer {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .char-counter {
        text-align: center;
    }

    .btn-comment {
        width: 100%;
    }
}

/* ========================================
   Ratings System
   ======================================== */

.ratings-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.ratings-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ratings-title::before {
    content: '';
    width: 4px;
    height: 16px;
    background: #FFD700;
    border-radius: 2px;
}

.ratings-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.average-rating {
    text-align: center;
    padding: 20px;
    background: var(--background-dark);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    min-width: 140px;
}

.rating-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
    text-shadow: 0 0 20px rgba(239, 51, 78, 0.5);
    line-height: 1;
}

.rating-max {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 500;
}

.rating-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin: 10px 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rating-count {
    font-size: 12px;
    color: var(--text-muted);
}

/* Rating Bars */
.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-bar-label {
    width: 20px;
    font-size: 12px;
    color: var(--text-secondary);
    text-align: right;
    font-weight: 600;
}

.rating-bar-track {
    flex: 1;
    height: 8px;
    background: var(--background-dark);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.rating-bar-count {
    width: 25px;
    font-size: 11px;
    color: var(--text-muted);
}

/* User Rating Input */
.user-rating-section {
    padding: 20px;
    background: var(--background-dark);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.user-rating-section h5 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.rating-selector {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.rating-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--background-card);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rating-btn:hover,
.rating-btn.hover {
    border-color: var(--primary-red);
    background: rgba(239, 51, 78, 0.2);
    transform: scale(1.1);
}

.rating-btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
    box-shadow: var(--shadow-glow);
}

.user-rating-info {
    text-align: center;
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-muted);
}

.login-prompt-small {
    text-align: center;
    padding: 15px;
    color: var(--text-muted);
    font-size: 13px;
}

.no-ratings {
    text-align: center;
    padding: 30px;
    color: var(--text-muted);
    font-size: 14px;
}

/* ========================================
   Recommendations Section
   ======================================== */

.recommendations-section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
}

.recommendations-empty {
    text-align: center;
    padding: 50px 20px;
    color: var(--text-muted);
    background: var(--background-card);
    border-radius: 15px;
    border: 1px dashed var(--border-color);
}

.recommendations-empty p {
    font-size: 14px;
}

/* Responsive Ratings */
@media (max-width: 768px) {
    .ratings-summary {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .average-rating {
        min-width: auto;
    }

    .rating-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .recommendations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .rating-number {
        font-size: 2.5rem;
    }

    .rating-selector {
        gap: 5px;
    }

    .rating-btn {
        width: 30px;
        height: 30px;
        font-size: 11px;
        border-radius: 8px;
    }
}
