#cookie-banner {
                position: fixed !important;
                bottom: 0 !important;
                left: 0 !important;
                width: 100% !important;
                background-color: rgba(34, 34, 34, 0.9) !important;
                backdrop-filter: blur(5px);
                color: #fff;
                padding: 20px;
                font-size: 0.8em;
                text-align: center;
                box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.4);
                z-index: 999999999 !important;
                display: none;
                box-sizing: border-box;
                /* CAMBIO: Priorizamos Roboto y quitamos las fuentes Apple pesadas */
                font-family: 'Roboto', Arial, sans-serif;
            }

            .cookie-content {
                max-width: 1000px;
                margin: 0 auto;
            }

            .cookie-content p {
                margin: 0 0 15px 0;
                line-height: 1.5;
                color: #fff;
            }

            .cookie-buttons {
                display: flex;
                justify-content: center;
                gap: 10px;
                flex-wrap: wrap;
                margin-bottom: 15px;
            }

            .cookie-buttons button {
                border: none;
                padding: 8px 16px;
                border-radius: 5px;
                cursor: pointer;
                font-size: 0.85em;
                /* CAMBIO: Peso 700 para que se vea bien en Roboto (Inter usaba 600) */
                font-weight: 700;
                transition: background-color 0.3s ease;
                /* CAMBIO: ELIMINADO "Inter", ahora usa la fuente del banner */
                font-family: inherit;
                width: auto;
            }

            #accept-cookies,
            #settings-cookies {
                background-color: #a90102;
                color: white;
            }

            #accept-cookies:hover,
            #settings-cookies:hover {
                background-color: #820101;
            }

            #reject-cookies {
                background-color: #6c757d;
                color: white;
            }

            #reject-cookies:hover {
                background-color: #5a6268;
            }

            .cookie-legal-links {
                margin-top: 10px;
                font-size: 0.75em;
                padding-top: 5px;
            }

            .cookie-legal-links a {
                color: #ccc;
                text-decoration: none;
                margin: 0 8px;
            }

            .cookie-legal-links a:hover {
                color: #fff;
                text-decoration: underline;
            }

            @media (max-width: 600px) {
                .cookie-buttons {
                    gap: 8px;
                }

                #cookie-banner {
                    padding: 15px 10px;
                }
            }