
        body {
            font-family: 'Playfair Display', serif;
            background-color: #ffffff;
            color: #000000;
        }
        .article-card {
            transition: transform 0.3s ease, opacity 0.5s ease;
            opacity: 0;
            position: relative;
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            padding: 1rem;
            flex: 0 0 auto;
            border-radius: 2rem;
            background-color: #f0f0f0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            height: auto;
        }
        .article-card.loaded { opacity: 1; }
        .article-card:hover { transform: scale(1.02); }
        .article-card .image-container {
            position: relative;
            width: 100%;
            aspect-ratio: 1080/1580;
            overflow: hidden;
            border-radius: 1.5rem;
            background-color: #e0e0e0;
            padding: 0.5rem;
        }
        .article-card .image-link {
            display: block;
            width: 100%;
            height: 100%;
        }
        .article-card .image-link img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            border-radius: 1rem;
        }
        .article-card .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1rem;
            color: #ffffff;
        }
        .article-card h3 { 
            font-size: 1.6rem;
            font-weight: 700; 
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-align: center;
        }
        .article-card p.artist { 
            font-size: 1.1rem;
            margin: 0.5rem 0 0;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .article-card .listen-buttons {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin: 1.5rem auto 0;
        }
        .article-card .listen-buttons a { 
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s ease;
        }
        .article-card .listen-buttons a.spotify { background-color: #1db954; }
        .article-card .listen-buttons a.instagram {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }
        .article-card .listen-buttons a.hype-button { background-color: #ff6600; }
        .article-card .listen-buttons a.share-button { background-color: #007bff; }
        .article-card .listen-buttons a:hover { opacity: 0.9; }
        .article-card .listen-buttons img {
            width: 20px;
            height: 20px;
            filter: brightness(0) invert(1);
        }
        .hype-badge {
            position: absolute;
            top: 0.75rem;
            left: 0.75rem;
            background-color: #ff6600;
            color: #ffffff;
            padding: 0.25rem 0.75rem;
            font-size: 0.75rem;
            font-weight: 700;
            border-radius: 9999px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            z-index: 10;
        }
        .logo {
            width: 100px;
            height: auto;
            display: block;
        }
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: #2f00ff;
            color: #000000;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s ease;
        }
        .header.scrolled { box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); }
        .language-menu {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background-color: #ffffff;
            color: #000000;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            border-radius: 1rem;
            z-index: 1000;
            min-width: 150px;
            max-width: 90vw;
        }
        .language-menu.show { display: block; }
        .language-menu a {
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            color: #000000;
            transition: background-color 0.2s ease;
        }
        .language-menu a:hover { background-color: #f0f0f0; }
        .language-menu a.selected {
            background-color: #f0f0f0;
            border: 2px solid #ff6600;
            border-radius: 0.5rem;
        }
        .language-menu img {
            width: 24px;
            height: 24px;
            margin-right: 0.5rem;
        }
        .category-title {
            display: inline-flex;
            align-items: center;
            background-color: #FFD4B8;
            color: #FF6600;
            padding: 0.4rem 1.2rem;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 9999px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
            text-align: center;
            gap: 0.5rem;
        }
        .category-title .icon {
            width: 16px;
            height: 16px;
            display: inline-block;
        }
        .hype-icon {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='orange'%3E%3Cpath d='M7 2v11h3v9l7-12h-4l4-8z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }
        .emergentes-icon {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='orange'%3E%3Cpath d='M13 3v10l9-5-9-5zm-2 10H5l7 7 7-7h-6z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }
        .recently-viewed-icon {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='orange'%3E%3Cpath d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }
        .slick-prev, .slick-next {
            z-index: 1000 !important;
            width: 50px !important;
            height: 50px !important;
            background: rgba(0, 0, 0, 0.8) !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            transition: background 0.3s ease !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            opacity: 1 !important;
        }
        .slick-prev:hover, .slick-next:hover {
            background: rgba(0, 0, 0, 1) !important;
        }
        .slick-prev:before, .slick-next:before {
            font-size: 30px !important;
            color: white !important;
            font-family: 'Playfair Display', serif !important;
            line-height: 1 !important;
        }
        .slick-prev:before { content: '←' !important; }
        .slick-next:before { content: '→' !important; }
        .slick-prev { left: 10px !important; }
        .slick-next { right: 10px !important; }
        footer {
            background-color: #f0f0f0;
            color: #000000;
            padding: 1rem 0;
            text-align: center;
            font-family: 'Playfair Display', serif;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .category-section { padding: 2rem 0; }
        .article-carousel { max-width: 1240px; margin: 0 auto; }
        .whatsapp-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #0026FF;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            z-index: 1002;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            animation: float 3s ease-in-out infinite;
        }
        .whatsapp-button img {
            width: 34px;
            height: 34px;
        }
        .whatsapp-button:hover {
            background-color: #e65c00;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        .footer {
            background-color: white;
            padding: 20px 40px;
            text-align: center;
            border-top: 1px solid #eee;
        }
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .footer-address {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
            width: 100%;
            text-align: center;
        }
        .icon-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        .social-icon {
            width: 20px;
            height: auto;
            transition: opacity 0.3s ease;
        }
        .social-icon:hover { opacity: 0.7; }
        .footer-notice {
            color: #666;
            font-size: 0.8rem;
            width: 100%;
            text-align: center;
        }
        .search-container {
            position: relative;
            width: 0;
            max-width: 300px;
            transition: width 0.3s ease;
        }
        .search-container.active {
            width: 70%;
        }
        #search-input {
            width: 100%;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            border: 1px solid #ccc;
            font-family: 'Playfair Display', serif;
            background-color: #f0f0f0;
            color: #000;
            display: none;
        }
        .search-container.active #search-input {
            display: block;
        }
        #search-toggle {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #ffffff;
            cursor: pointer;
            display: flex;
            align-items: center;
        }
        #search-toggle:hover {
            color: #ff6600;
        }
        #search-results {
            margin-top: 2rem;
            display: none;
        }
        #search-results .article-carousel {
            max-width: 1240px;
            margin: 0 auto;
        }
        .hype-modal {
            display: none;
            position: fixed;
            z-index: 1001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.4);
            padding-top: 60px;
        }
        .hype-modal-content {
            background-color: #fefefe;
            margin: 5% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 600px;
            border-radius: 1rem;
        }
        .hype-card {
            background: linear-gradient(45deg, #ff6600, #ffd4b8);
            padding: 1.5rem;
            margin-bottom: 1rem;
            border-radius: 1rem;
            text-align: center;
            color: #ffffff;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .hype-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        .hype-card .payment-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }
        .hype-card .payment-buttons button {
            background-color: #ffffff;
            color: #ff6600;
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 9999px;
            cursor: pointer;
            font-weight: bold;
        }
        .hype-card p.explanation {
            font-size: 0.9rem;
            margin-top: 1rem;
            color: #f0f0f0;
        }
        .hype-card input#moneyAmount {
            background-color: #ffffff;
            color: #000000;
            border: 1px solid #ccc;
            border-radius: 0.5rem;
            padding: 0.5rem;
            font-family: 'Playfair Display', serif;
        }
        .hype-card input#moneyAmount::placeholder {
            color: #666;
        }
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }
        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }
        .cookie-banner {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #2f00ff;
            color: #ffffff;
            padding: 1rem;
            z-index: 1003;
            text-align: center;
        }
        .cookie-banner p {
            margin: 0;
            font-size: 0.9rem;
        }
        .cookie-banner button {
            background-color: #ff6600;
            color: #ffffff;
            border: none;
            padding: 0.5rem 1rem;
            margin: 0.5rem;
            border-radius: 9999px;
            cursor: pointer;
        }
        .cookie-banner button:hover {
            background-color: #e65c00;
        }
        .cookie-settings {
            background-color: #ffffff;
            color: #000000;
            border: 1px solid #ff6600;
        }
        @media (max-width: 768px) {
            .footer {
                padding: 20px;
            }
            .footer-address {
                font-size: 0.85rem;
            }
            .footer-notice {
                font-size: 0.75rem;
            }
            .icon-container {
                gap: 10px;
            }
            .search-container {
                max-width: 200px;
            }
        }
        @media (min-width: 1024px) {
            .article-card {
                max-width: 600px;
                padding: 1.5rem;
                margin: 0 auto 2rem;
            }
            .article-card .image-container {
                max-height: 600px;
            }
            .article-card h3 {
                font-size: 1.85rem;
                margin: 1rem 0;
            }
            .article-card p.artist {
                font-size: 1.225rem;
                margin: 0.75rem 0;
            }
            .article-card .listen-buttons a {
                width: 50px;
                height: 50px;
            }
            .article-card .listen-buttons img {
                width: 25px;
                height: 25px;
            }
            .slick-slide {
                padding: 0 1.5rem;
            }
        }
        @media (max-width: 1024px) {
            .slick-prev {
                left: 5px !important;
            }
            .slick-next {
                right: 5px !important;
            }
            .article-card .image-container {
                max-height: 550px;
            }
        }
        @media (max-width: 640px) {
            .article-card {
                width: 100%;
                padding: 0.25rem;
            }
            .article-card .image-container {
                aspect-ratio: 1080/2200;
                padding: 0.25rem;
            }
            .article-card h3 {
                font-size: 1.35rem;
            }
            .article-card p.artist {
                font-size: 0.975rem;
            }
            .article-card .listen-buttons a {
                width: 35px;
                height: 35px;
            }
            .article-card .listen-buttons img {
                width: 18px;
                height: 18px;
            }
            .hype-badge {
                font-size: 0.75rem;
                padding: 0.15rem 0.3rem;
                top: 0.5rem;
                left: 0.5rem;
            }
            .slick-prev,
            .slick-next {
                display: none !important;
            }
            .category-section {
                padding: 1rem 0;
            }
            .whatsapp-button {
                padding: 0.5rem 1rem;
                font-size: 0.875rem;
            }
            .whatsapp-button img {
                width: 30px;
                height: 30px;
            }
            .search-container.active {
                width: 100%;
            }
        }
