/* Estilos para la página de Chilotes Destacados, alineados con styles.css */

.container {
    padding-top: 120px; /* Espacio para la cabecera fija */
    padding-bottom: 80px;
}

.chilotes-description {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 35px;
    border-radius: 20px;
    margin: 30px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.chilotes-description::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #76b900, #4C9A14, #312783);
    border-radius: 22px;
    z-index: -1;
}

.chilotes-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin: 0;
    text-align: center;
    font-weight: 400;
}

.voting-box {
    background: linear-gradient(135deg, #312783 0%, #4C9A14 100%);
    border-radius: 16px;
    padding: 25px;
    margin: 25px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(49, 39, 131, 0.3);
}

.voting-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(118, 185, 0, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.voting-box p {
    color: #ffffff;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.voting-emoji {
    font-size: 1.4rem;
    margin-right: 10px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.voting-highlight {
    color: #76b900;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Colores para modo oscuro */
[data-theme="dark"] .chilotes-description {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

[data-theme="dark"] .chilotes-description p {
    color: #e2e8f0;
}

[data-theme="dark"] .voting-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #76b900;
}

[data-theme="dark"] .voting-box p {
    color: #ffffff;
}

[data-theme="dark"] .voting-highlight {
    color: #76b900;
}

.section-title {
    color: #2d5016 !important; /* Verde más oscuro */
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #2d5016 !important;
}

.section-subtitle {
    color: #4a7c59 !important; /* Verde más oscuro */
}

.highlight-text {
    color: #0066cc !important; /* Azul más oscuro */
}

/* Colores originales para modo oscuro */
[data-theme="dark"] .section-title {
    color: #76b900 !important;
    -webkit-text-fill-color: #76b900 !important;
}

[data-theme="dark"] .section-subtitle {
    color: #afe59f !important;
}

[data-theme="dark"] .highlight-text {
    color: #00bfff !important;
}

.personajes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive para tablets */
@media (max-width: 1024px) {
    .personajes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .personajes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Para pantallas muy pequeñas */
@media (max-width: 480px) {
    .personajes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.personaje-card {
    background: var(--light-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    min-height: 280px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow);
}

.personaje-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.likes-count {
    position: absolute;
    top: 15px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 8px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.likes-count .thumbs-up {
    color: #76b900;
    font-size: 1rem;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.personaje-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 20px 0 15px 0;
    border: 3px solid #76b900;
}

.personaje-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.personaje-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 5px 0;
    text-align: center;
    line-height: 1.2;
}

.personaje-years {
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin: 0 0 20px 0;
    font-weight: 500;
}

.voto-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
}

.voto-btn {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.voto-btn:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

.voto-btn .star {
    color: #ffd700;
    font-size: 1rem;
}

/* Colores para modo oscuro */
[data-theme="dark"] .personaje-card {
    background: var(--background-light);
    border-color: var(--border-color);
}

[data-theme="dark"] .likes-count {
    color: white;
    background-color: rgba(0, 0, 0, 0.8);
}

[data-theme="dark"] .personaje-info h2 {
    color: var(--primary-color);
}

[data-theme="dark"] .personaje-years {
    color: var(--secondary-color);
}

[data-theme="dark"] .voto-btn {
    color: var(--secondary-color);
}

[data-theme="dark"] .voto-btn:hover {
    color: var(--accent-color);
}

[data-theme="dark"] .modal-content {
    background: var(--background-light);
}

[data-theme="dark"] .modal-header {
    background: var(--background-light);
    border-bottom-color: var(--border-color);
}

[data-theme="dark"] .modal-header h2 {
    color: var(--primary-color);
}

[data-theme="dark"] .modal-left {
    background: var(--background-dark);
}

[data-theme="dark"] .modal-right {
    background: var(--background-light);
}

[data-theme="dark"] .modal-description h3 {
    color: var(--text-dark);
}

[data-theme="dark"] .modal-description p {
    color: var(--text-secondary);
}

[data-theme="dark"] .modal-likes {
    color: var(--text-dark);
    background: none;
    border: none;
}

[data-theme="dark"] .form-group label {
    color: var(--text-dark);
}

[data-theme="dark"] .form-group input {
    background: var(--background-dark);
    color: var(--text-dark);
    border-color: var(--border-color);
}

[data-theme="dark"] .form-group input:focus {
    border-color: var(--secondary-color);
}

[data-theme="dark"] .close-button {
    color: var(--text-secondary);
    background: var(--background-dark);
}

[data-theme="dark"] .close-button:hover {
    color: var(--text-dark);
    background: var(--border-color);
}

/* Estilos del modal con animaciones */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--light-color);
    border-radius: 20px;
    width: 95%;
    max-width: 1200px;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: scale(0.7) translateY(50px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal.closing {
    opacity: 0;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
}

.modal.closing .modal-content {
    transform: scale(0.8) translateY(30px);
    opacity: 0;
}

.modal-header {
    background: var(--light-color);
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.close-button {
    font-size: 1.8rem;
    color: var(--text-secondary);
    cursor: pointer;
    background: var(--background-light);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.close-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.close-button:hover {
    color: white;
    background: var(--secondary-color);
    transform: scale(1.1);
}

.close-button:hover::before {
    width: 100%;
    height: 100%;
}

.close-button:active {
    transform: scale(0.95);
}

.modal-body {
    display: flex;
    flex-direction: row;
    padding: 0;
    min-height: auto;
    animation: modalBodySlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

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

.modal-left {
    flex: 0 0 40%;
    padding: 25px 30px;
    background: var(--background-light);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    min-height: 400px;
}

.modal-right {
    flex: 1;
    padding: 25px 30px 30px 30px;
    background: var(--light-color);
    border-radius: 0 0 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 400px;
    overflow: visible;
}

.modal-image {
    text-align: center;
    margin-bottom: 0;
    flex-shrink: 0;
}

.modal-image img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary-color);
    box-shadow: var(--shadow);
    animation: modalImageZoomIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    transition: all 0.3s ease;
}

.modal-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(118, 185, 0, 0.2);
}

@keyframes modalImageZoomIn {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.modal-audio-section {
    margin-top: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 200px;
}

.spotify-btn {
    background: #1db954;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.spotify-btn:hover {
    background: #1ed760;
    transform: translateY(-2px);
}

.spotify-icon {
    font-size: 1.2rem;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.audio-player {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.play-btn {
    background: linear-gradient(135deg, #1db954 0%, #1ed760 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
    position: relative;
    overflow: hidden;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(29, 185, 84, 0.4);
}

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

.play-icon {
    font-size: 1.5rem;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.player-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.track-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.track-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.track-subtitle {
    color: #b3b3b3;
    font-size: 0.85rem;
    font-weight: 400;
}

.progress-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-bar:hover {
    height: 8px;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #1db954 0%, #1ed760 100%);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
    position: relative;
}

.progress-handle {
    position: absolute;
    top: 50%;
    right: -6px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.progress-bar:hover .progress-handle {
    opacity: 1;
}

.time-display {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: #b3b3b3;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.time-separator {
    color: #666;
}

.player-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.volume-btn {
    background: none;
    border: none;
    color: #b3b3b3;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.volume-icon {
    font-size: 1.2rem;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.volume-slider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.volume-slider:hover {
    height: 6px;
}

.volume-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.volume-progress {
    height: 100%;
    background: linear-gradient(90deg, #1db954 0%, #1ed760 100%);
    border-radius: 2px;
    width: 100%;
    transition: width 0.1s ease;
}

.modal-description {
    flex: none;
    margin-bottom: 0;
}

.modal-description h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    animation: modalTextSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.modal-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    animation: modalTextSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
    text-align: left;
    hyphens: auto;
    word-wrap: break-word;
    max-height: none;
    overflow: visible;
    padding-right: 0;
}


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

.modal-likes {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    background: none;
    padding: 0;
    border-radius: 0;
    border: none;
}

.modal-form {
    margin-top: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    margin-bottom: 10px;
    animation: modalFormSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.form-group:nth-child(1) { animation-delay: 0.5s; }
.form-group:nth-child(2) { animation-delay: 0.6s; }

@keyframes modalFormSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: var(--light-color);
    color: var(--text-dark);
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(118, 185, 0, 0.1);
}

.btn-me-gusta {
    margin-top: 20px;
    width: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #5ba317 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-me-gusta::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 ease;
}

.btn-me-gusta:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--accent-color) 0%, #6bb31a 100%);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 30px rgba(118, 185, 0, 0.5);
}

.btn-me-gusta:hover:not(:disabled)::before {
    left: 100%;
}

.btn-me-gusta:active:not(:disabled) {
    transform: translateY(-1px) scale(0.98);
}

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

.btn-me-gusta:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.7;
}

.btn-me-gusta .thumbs-up {
    font-size: 1.3rem;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 15px;
    font-weight: 500;
}



/* Responsive para el modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
        max-width: 95vw;
        overflow-y: auto;
    }
    
    .modal-body {
        flex-direction: column;
    }
    
    .modal-left {
        flex: none;
        flex-direction: row;
        text-align: center;
        gap: 15px;
        padding: 20px;
        min-height: auto;
    }
    
    .modal-right {
        padding: 20px;
        min-height: auto;
        overflow: visible;
    }
    
    .modal-image img {
        width: 120px;
        height: 120px;
    }
    
    .modal-audio-section {
        min-width: auto;
    }
    
    .player-controls {
        flex-direction: column;
        gap: 15px;
    }
    
    .player-info {
        width: 100%;
    }
    
    .player-actions {
        justify-content: center;
    }
    
    .volume-slider {
        width: 60px;
    }
    
    .modal-description p {
        max-height: none;
        font-size: 1rem;
        overflow: visible;
    }
    
    .modal-description h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 2% auto;
        max-width: 98vw;
        overflow-y: auto;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-left,
    .modal-right {
        padding: 15px;
        overflow: visible;
    }
    
    .modal-image img {
        width: 100px;
        height: 100px;
    }
    
    .modal-description p {
        max-height: none;
        font-size: 0.95rem;
        line-height: 1.6;
        overflow: visible;
    }
    
    .modal-description h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .form-group input {
        padding: 10px;
        font-size: 0.95rem;
    }
    
    .btn-me-gusta {
        padding: 15px 25px;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .close-button {
        width: 35px;
        min-width: 35px;
        height: 35px;
        font-size: 1.6rem;
    }
}
/* Estilos para la caja de nota */
.note-box {
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--secondary-color);
    padding: 25px;
    border-radius: 10px;
    margin: 40px auto;
    box-shadow: var(--shadow);
    max-width: 1200px;
    text-align: center;
}

.note-box h4 {
    margin: 0 0 10px 0;
    color: var(--primary-color);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.note-box p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-secondary);
    font-size: 1rem;
}

[data-theme="dark"] .note-box {
    background: var(--background-light);
    border-color: var(--border-color);
    border-left-color: var(--secondary-color);
}

[data-theme="dark"] .note-box h4 {
    color: var(--primary-color);
}

[data-theme="dark"] .note-box p {
    color: var(--text-secondary);
}