/*
Theme Name: UniAnime
Description: Tema de WordPress con diseño oscuro y enfoque en contenido de anime
Version: 1.0
Author: Toji
*/

/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0c0c0c;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00bcd4;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1001;
}

.site-logo:hover {
    color: #26c6da;
    text-shadow: 0 0 15px rgba(38, 198, 218, 0.5);
}

.site-logo i {
    font-size: 1.8rem;
}

.logo-text {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #00bcd4;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navegación */
.main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.main-navigation.nav-open {
    right: 0;
    visibility: visible;
    opacity: 1;
}

.main-navigation.nav-open .nav-content {
    pointer-events: auto;
}

.main-navigation.nav-open .nav-menu {
    pointer-events: auto;
}

.main-navigation.nav-open .nav-menu a {
    pointer-events: auto;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    pointer-events: none;
}

.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-content {
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1001;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.nav-title {
    color: #00bcd4;
    font-size: 1.2rem;
    font-weight: bold;
}

.nav-close {
    background: transparent;
    border: none;
    color: #00bcd4;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-close:hover {
    background: rgba(0, 188, 212, 0.1);
    transform: rotate(90deg);
}

.main-navigation ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: #ffffff;
    text-decoration: none;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    border: 1px solid transparent;
    z-index: 1002;
}

.main-navigation a:hover {
    background: linear-gradient(45deg, #00bcd4, #26c6da);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Menu items específicos */
.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    pointer-events: auto;
}

.nav-menu li {
    pointer-events: auto;
}

.nav-menu a {
    pointer-events: auto;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: linear-gradient(45deg, #00bcd4, #26c6da);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.nav-menu a i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

/* Mobile Search */
.mobile-search {
    margin: 1rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-search-form {
    width: 100%;
}

/* Desktop Search */
.desktop-search {
    display: none;
}

/* Search Form Styles */
.search-form {
    position: relative;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-field {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.7rem 3rem 0.7rem 1.5rem;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.search-field:focus {
    outline: none;
    border-color: #00bcd4;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.search-field::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-submit {
    position: absolute;
    right: 5px;
    background: #00bcd4;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit:hover {
    background: #26c6da;
    transform: scale(1.05);
}

/* Search Results */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(0, 188, 212, 0.3);
    border-radius: 10px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1002;
    margin-top: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.search-results-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-result-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item a {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.search-result-item a:hover {
    background: rgba(0, 188, 212, 0.1);
}

.result-thumbnail {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 0.8rem;
}

.result-content {
    display: flex;
    flex-direction: column;
}

.result-title {
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.result-type {
    font-size: 0.8rem;
    color: #00bcd4;
    text-transform: uppercase;
}

.no-results {
    padding: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Body scroll lock cuando menu está abierto */
body.nav-active {
    overflow: hidden;
}

/* Asegurar que el menú móvil sea clickeable */
.main-navigation {
    pointer-events: none;
}

.main-navigation.nav-open {
    pointer-events: auto;
}

.nav-content {
    pointer-events: auto;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .header-container {
        padding: 0 2rem;
    }
    
    .site-logo {
        font-size: 1.8rem;
    }
    
    .site-logo i {
        font-size: 2rem;
    }
    
    .logo-text {
        display: inline;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .main-navigation {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        overflow: visible;
    }
    
    .nav-overlay {
        display: none;
    }
    
    .nav-content {
        padding: 0;
        height: auto;
        flex-direction: row;
        align-items: center;
    }
    
    .nav-header {
        display: none;
    }
    
    .mobile-search {
        display: none;
    }
    
    .desktop-search {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: row;
        gap: 1rem;
    }
    
    .main-navigation a {
        padding: 0.5rem 1rem;
        border-radius: 25px;
    }
    
    .main-navigation a:hover {
        transform: translateY(-2px);
    }
    
    .search-field {
        width: 250px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .site-logo {
        font-size: 2rem;
    }
    
    .main-navigation ul {
        gap: 2rem;
    }
    
    .search-field {
        width: 300px;
    }
}

/* Contenido principal */
.site-main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(45deg, #00bcd4, #26c6da);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Secciones */
.section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #00bcd4;
    border-bottom: 2px solid #00bcd4;
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* Grid de episodios/animes */
.episodes-grid,
.anime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.episode-card,
.anime-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.episode-card:hover,
.anime-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 188, 212, 0.2);
    border-color: #00bcd4;
}

.card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #333, #555);
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.episode-card:hover .card-image img,
.anime-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.episode-card:hover .card-overlay,
.anime-card:hover .card-overlay {
    opacity: 1;
}

.play-button {
    color: #00bcd4;
    font-size: 2rem;
    margin-right: 0.5rem;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    display: block;
    line-height: 1.4;
}

.card-title:hover {
    color: #00bcd4;
}

.card-meta {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.episode-number {
    background: linear-gradient(45deg, #00bcd4, #26c6da);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Badges */
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

.badge-new {
    background: linear-gradient(45deg, #ff4081, #f50057);
    color: white;
}

.badge-movie {
    background: linear-gradient(45deg, #ffc107, #ff9800);
    color: white;
}

.badge-episode {
    background: linear-gradient(45deg, #4caf50, #2e7d32);
    color: white;
}

/* Sidebar */
.sidebar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.widget {
    margin-bottom: 2rem;
}

.widget-title {
    color: #00bcd4;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 188, 212, 0.3);
    padding-bottom: 0.5rem;
}

.widget ul {
    list-style: none;
}

.widget li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget a:hover {
    color: #00bcd4;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00bcd4;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.episode-card,
.anime-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive adicional para cards */
@media (max-width: 480px) {
    .episodes-grid,
    .anime-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 0.8rem;
    }
    
    .site-main {
        padding: 0 0.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .video-controls {
        flex-direction: column;
        text-align: center;
    }
    
    .player-actions {
        justify-content: center;
        width: 100%;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-download,
    .btn-share,
    .btn-fullscreen,
    .download-btn,
    .share-episode-btn,
    .report-issue-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Player Actions - Estilos responsivos mejorados */
.player-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 1.5rem 0;
}

.download-btn,
.share-episode-btn,
.report-issue-btn {
    background: linear-gradient(45deg, #00bcd4, #26c6da);
    color: white;
    text-decoration: none;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 188, 212, 0.3);
    position: relative;
    overflow: hidden;
}

.download-btn:before,
.share-episode-btn:before,
.report-issue-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.download-btn:hover,
.share-episode-btn:hover {
    background: linear-gradient(45deg, #0097a7, #00acc1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.4);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.download-btn:hover:before,
.share-episode-btn:hover:before {
    left: 100%;
}

.report-issue-btn {
    background: linear-gradient(45deg, #ff9800, #ffb74d);
}

.report-issue-btn:hover {
    background: linear-gradient(45deg, #f57c00, #ff9800);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.report-issue-btn:hover:before {
    left: 100%;
}

/* Responsive para tablets */
@media (max-width: 1024px) {
    .player-actions {
        gap: 0.8rem;
        margin: 1.2rem 0;
    }
    
    .download-btn,
    .share-episode-btn,
    .report-issue-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .player-actions {
        gap: 0.6rem;
        margin: 1rem 0;
        flex-direction: row;
        justify-content: center;
    }
    
    .download-btn,
    .share-episode-btn,
    .report-issue-btn {
        flex: 1;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        min-width: 100px;
        max-width: 150px;
        justify-content: center;
    }
    
    .download-btn i,
    .share-episode-btn i,
    .report-issue-btn i {
        margin-right: 0.3rem;
    }
}

/* Responsive para pantallas muy pequeñas */
@media (max-width: 480px) {
    .player-actions {
        flex-direction: column;
        gap: 0.5rem;
        margin: 0.8rem 0;
    }
    
    .download-btn,
    .share-episode-btn,
    .report-issue-btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        justify-content: center;
    }
}

/* Efectos adicionales */
.glow-effect {
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.3);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00bcd4, #26c6da);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #26c6da, #00acc1);
}

/* Géneros responsive */
.anime-genres {
    margin: 1.5rem 0;
}

.anime-genres h4 {
    color: #00bcd4;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.genre-tag {
    background: linear-gradient(45deg, #00bcd4, #26c6da);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 188, 212, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.genre-tag:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.genre-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 188, 212, 0.5);
    background: linear-gradient(45deg, #26c6da, #00bcd4);
    border-color: rgba(255, 255, 255, 0.3);
}

.genre-tag:hover:before {
    left: 100%;
}

.genre-tag:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 188, 212, 0.3);
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .anime-genres {
        margin: 1rem 0;
        text-align: center;
    }
    
    .anime-genres h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
        text-align: center;
    }
    
    .genre-tags {
        gap: 0.4rem;
        justify-content: center;
    }
    
    .genre-tag {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
        border-radius: 20px;
    }
}

/* Responsive para pantallas muy pequeñas */
@media (max-width: 480px) {
    .anime-genres {
        margin: 0.8rem 0;
        text-align: center;
    }
    
    .anime-genres h4 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .genre-tags {
        gap: 0.3rem;
        justify-content: center;
    }
    
    .genre-tag {
        padding: 0.25rem 0.6rem;
        font-size: 0.75rem;
        border-radius: 15px;
        flex: 0 0 auto;
        min-width: fit-content;
        text-align: center;
    }
}

/* Animación de aparición para géneros */
.genre-tag {
    animation: genreAppear 0.6s ease forwards;
    opacity: 0;
    transform: translateY(10px);
}

.genre-tag:nth-child(1) { animation-delay: 0.1s; }
.genre-tag:nth-child(2) { animation-delay: 0.2s; }
.genre-tag:nth-child(3) { animation-delay: 0.3s; }
.genre-tag:nth-child(4) { animation-delay: 0.4s; }
.genre-tag:nth-child(5) { animation-delay: 0.5s; }
.genre-tag:nth-child(6) { animation-delay: 0.6s; }
.genre-tag:nth-child(7) { animation-delay: 0.7s; }
.genre-tag:nth-child(8) { animation-delay: 0.8s; }

@keyframes genreAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accesibilidad */
.genre-tag:focus {
    outline: 2px solid #00bcd4;
    outline-offset: 2px;
}

/* Para high contrast mode */
@media (prefers-contrast: high) {
    .genre-tag {
        border: 2px solid #ffffff;
        background: #00bcd4;
    }
}

/* Para modo oscuro del sistema */
@media (prefers-color-scheme: dark) {
    .genre-tag {
        box-shadow: 0 2px 10px rgba(0, 188, 212, 0.4);
    }
    
    .genre-tag:hover {
        box-shadow: 0 5px 20px rgba(0, 188, 212, 0.6);
    }
}

