/* --- Variables y Estilos Base --- */
:root {
    --primary-color: #00355F;
    --secondary-color: #00355F; /* #6E6A19; */
    --background-color: #ffffff;
    --text-color: #343a40;
    --heading-color: #212529;
    --border-color: #dee2e6;
    --font-family: 'Poppins', sans-serif;
    --spacing-unit: 1rem;
}

/* Social media icons section */
#social-media-section {
    background-color: #ffffff;
    padding: 1rem 0 0.5rem 0;
    margin: 0;
}

.social-media-logos-slider {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

.social-media-logos-slider .social-link {
    display: inline-block;
    transition: transform 0.2s ease;
}

.social-media-logos-slider .social-link:hover {
    transform: scale(1.1);
}

.social-media-logos-slider .social-logo {
    max-width: 24px;
    height: auto;
    display: block;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 400;
}

/* Estilos para texto normal de párrafos */
p {
    font-family:  "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

/* Excepción para la sección gafas - restaurar estilos originales */
.bola_gafas p {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
}

/* Estilos específicos para contenido principal */
.container p, 
#golf5vr p, 
#why-golf5vr p, 
#user-reviews p {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1rem;
}


.video-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.video-wrapper {
  width: 50%;
}

.video-player {
  width: 100%;
}

.text-wrapper {
  width: 50%;
  padding: 0px 20px;
}


p {
    font-weight: 300;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3 {
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: calc(var(--spacing-unit) * 0.75);
    font-weight: 700;
}
h1, h2 {
    font-size: 2.5rem;
    max-width: 900px;
    margin-left: 0px;
    margin-right: auto;
    margin-bottom: var(--spacing-unit);
    line-height: 1.3;
    text-align: left;
    color: var(--secondary-color);
    font-weight: 300;
    font-family: 'EB Garamond', serif;
}


h1 { font-size: 2.5rem; line-height: 2rm;}
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

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

a:hover {
    text-decoration: underline;
/*     color: #6E6A19; */
}

/* --- Encabezado y Navegación --- */
#main-header {
    background-color: var(--background-color);
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0px 0px;
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: hidden;
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.logo-mobile {
    display: none;
}

.social-media-logos.logo-desktop{
    display: flex;
    gap: 0.5rem;
}

.logos{
	display:flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	width: 100%;
	gap: 1rem;
}

/* Social Media Icons in Header */
.social-media-logos.header-social {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.social-media-logos.header-social .social-link {
    display: inline-flex;
    align-items: center;
}

.social-media-logos.header-social .social-logo {
    width: 24px;
    height: 24px;
    transition: transform 0.2s;
}

.social-media-logos.header-social .social-logo:hover {
    transform: scale(1.1);
}

/* Dark Mode Toggle Container */
#dark-mode-toggle-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem var(--spacing-unit);
    background-color: var(--background-color);
    max-width: 1100px;
    margin: 0 auto;
}

#dark-mode-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
}

#dark-mode-toggle:hover {
    transform: scale(1.1);
}

#dark-mode-icon {
    width: 32px;
    height: 32px;
    display: block;
    transition: filter 0.3s ease;
}

#main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

#main-nav ul li+li {
    margin-left: calc(var(--spacing-unit) * 1.5);
}

.nav-label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: var(--text-color);
    font-weight: 500;
    cursor: default;
}
strong {
    font-weight: 700;
}
#main-nav ul .nav-label+li {
    margin-left: calc(var(--spacing-unit) * 0.5);
}

#main-nav a {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--text-color);
    color: var(--background-color);
    font-weight: 300;
    text-decoration: none;
    transition: color 0.2s;
}

#main-nav a:hover {
    color: #6E6A19;
    text-decoration: none;
}
#main-nav a.activo {
    color: #6E6A19;
    font-weight: 300;
    text-decoration: none;
}
.header-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-unit);
}

#hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    margin-left: 15px;
}

#hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}


.button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin-top: var(--spacing-unit);
    transition: background-color 0.2s;
}

.button:hover {
    background-color: #0056b3;
    text-decoration: none;
    color: #fff;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    transition: background-color 0.2s;
}

.slider-btn:hover {
    background-color: rgba(0,0,0,0.8);
}

.slider-btn.prev {
    left: 1rem;
}

.slider-btn.next {
    right: 1rem;
}

.dots-container {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.2s;
}

.dot.active {
    background-color: #fff;
}

/* --- Sección Juegos Destacados --- */
#featured-games {
    padding-top: calc(var(--spacing-unit) * 3);
    padding-bottom: var(--spacing-unit);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--spacing-unit) * 1.5);
    margin-top: calc(var(--spacing-unit) * 2);
}

.game-card {
    display: block;
    overflow: hidden;
}

.game-card-image-link {
    display: block;
}

.game-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}

.game-card:hover img {
    transform: scale(1.05) translateY(-5px);
}

.game-card-info {
    padding: var(--spacing-unit) 0px;
    background-color: #ffffff;
}

.game-card-info h3 {
    margin-bottom: calc(var(--spacing-unit) * 0.5);
    font-size: 1.25rem;
}

.game-card-info h3 a {
    color: inherit;
    text-decoration: none;
}

.game-card-info h3 a:hover {
    text-decoration: underline;
}

.game-platforms {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 0.5);
}

.game-platforms a {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.game-platforms a:hover {
    transform: scale(1.15);
    opacity: 1;
}

.platform-icon {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    opacity: 0.8;
}


/* --- Contenido principal --- */
.gafas-links{
	
    text-align: center;
    color: white;
    /* background: aqua; */
    position: relative;
    right: -277px;
    font-size: medium;
    top: 15px;
    line-height: 15px;
}

.gafas{
	display: flex;
	justify-content: center;
	margin-top: 30px;
	margin-right: 70px;
}
.gafas-links .titulo{
    margin-bottom: 8px;
}
.bola_gafas a{
	color: white !important;
    font-size: smaller !important;
    line-height: 10px !important;
    text-decoration: underline !important;
    font-family: inherit !important;
    font-weight: inherit !important;
}

main section#about {
    padding-top: var(--spacing-unit);
    padding-bottom: calc(var(--spacing-unit) * 3);
}

main section#about h2,
main section#featured-games h2 {
    color: var(--secondary-color);
    font-weight: 300;
    font-family: 'EB Garamond', serif;
}

/* --- Footer --- */
footer {
    background-color: var(--heading-color);
    color: var(--background-color);
    text-align: center;
    padding: calc(var(--spacing-unit) * 1.5);
    margin-top: calc(var(--spacing-unit) * 2);
}

.footer-links {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--background-color);
    text-decoration: none;
    margin: 0 0.3rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4AF37;
    text-decoration: none;
}

.slide {
    align-items: center;
    padding-bottom: 0px;
}




.social-logo{
    max-width: 24px;
}
/* --- Media Queries para Responsividad --- */


/* Menu Navigation Styling - Clean approach */
@media (min-width: 981px) {
    /* Create full-width background using pseudo-element to avoid layout issues */
    #main-nav {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    
    /* Full-width background behind the menu */
    #main-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: calc(-50vw);
        width: 200vw;
        height: 100%;
        background-color: var(--heading-color);
        z-index: -1;
    }

    #main-nav ul {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: calc(var(--spacing-unit) * 0.5) 0;
        position: relative;
        z-index: 1;
    }
}

/* Mobile: ensure menu is hidden by default and styled when active */
@media (max-width: 980px) {
    /* Ensure menu is hidden by default - respect original behavior */
    #main-nav {
        display: none !important;
    }
    #main-header{
        overflow: visible;
    }
    .logos {
        padding: 10px 0px;
    }
    /* Only show when hamburger is active */
    #main-header.nav-active #main-nav {
        display: block !important;
        background-color: var(--heading-color);
        width: 100%;
        margin-left: 0;
        padding: 0;
    }
}
@media (max-width: 650px) {

    h1 { font-size: 2rem; } 
    #main-header{
        overflow: visible;
    }
    .logo-mobile {
        display: block;
    }
    
    .logo-desktop{
        display: none;
    }
    
    /* Social icons in 2 rows on mobile */
    .social-media-logos.header-social {
        max-width: 200px;
        justify-content: center;
    }
    
    .social-media-logos.header-social .social-logo {
        width: 20px;
        height: 20px;
    }
    
    #dark-mode-icon {
        width: 28px;
        height: 28px;
    }
    
}


@media (max-width: 980px) {
	
    .gafas-links{
        right: -269px;
        font-size: smaller;
    }



	.video-wrapper {
	  width: 100%;
	}
	
	.text-wrapper {
	  width: 100%;
	  padding: 20px 0px;
	}

	.video-container {
        flex-direction: column-reverse; /* Cambiamos la dirección de flexbox a columna */
    }

    #main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--background-color);
        border-top: 1px solid var(--border-color);
    }
    
    #main-header.nav-active #main-nav {
        display: block;
    }

    #main-nav ul {
        flex-direction: column;
        padding: var(--spacing-unit);
        align-items: flex-start;
    }

    #main-nav ul li+li {
        margin-left: 0;
        margin-top: var(--spacing-unit);
    }

    #main-nav ul .nav-label+li {
        margin-top: calc(var(--spacing-unit) * 0.5);
        margin-left: 0;
    }

    #hamburger-menu {
        display: block;
    }

    #main-header.nav-active #hamburger-menu span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    #main-header.nav-active #hamburger-menu span:nth-child(2) {
        opacity: 0;
    }
    #main-header.nav-active #hamburger-menu span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }
}
/* 
@media (max-width: 880px) {
    .slide {
        align-items: flex-end;
        padding-bottom: 5rem;
    }
} */

/* --- Sección Hero Slider --- */
#hero { 
    padding-top: calc(var(--spacing-unit) * 0);
    padding-bottom: calc(var(--spacing-unit) * 0);

    height: 60vh;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 1rem;
}

.hero-content h2 {
    font-size: 3rem;
    color: #ffffff;
    text-shadow: -2px 2px 5px black;
}

.hero-content p {
    font-weight: 300;
}

b{
    font-weight: 700;
}
@media (min-width:980px) {

    #user-reviews p {
        font-size: 0.9rem;
    }

    #user-reviews p.textonegro {
        color: black;
    }
    #main-header .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.5rem var(--spacing-unit) 0px;
    }

    .logo-link {
        margin-bottom: 0;
    }

    #main-nav {
        width: auto;
        margin-top: 0.5rem;
    }

    #main-nav ul {
        justify-content: flex-start;
    }

    .header-controls {
        display: none;
    }
    
/*
    .slide {
        align-items: flex-end;
        padding-bottom: 5rem;
    }
*/
}

@media (max-width: 480px) {
    /* H1 titles consistent with other pages */
    h1 {
        font-size: 1.8rem;
        font-weight: 300;
        font-family: 'EB Garamond', serif;
    }
    
    .hero-content {
        margin-top: 120px; /* Even more space on smaller screens */
        padding: 1rem 0.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem; /* Even smaller text */
        line-height: 1.2;
    }
    
    .slider-btn {
        padding: 0.6rem;
        font-size: 1rem;
        top: 50%; /* Keep arrows vertically centered */
        transform: translateY(-50%);
    }
    
    .slider-btn.prev {
        left: 0.5rem;
    }
    
    .slider-btn.next {
        right: 0.5rem;
    }
}

/* --- Estilos para Modo Oscuro --- */
body.dark-theme {
    background-color: #121212;
    color: #e0e0e0;
}

body.dark-theme a {
    color: #bb86fc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

body.dark-theme a:hover {
    text-decoration: underline;
}

body.dark-theme h1, 
body.dark-theme h2, 
body.dark-theme h3 {
    color: #ffffff;
}

body.dark-theme .container {
    background-color: #1e1e1e;
}

body.dark-theme .social-logo,
body.dark-theme .logo-desktop,
body.dark-theme .logo-mobile {
    filter: invert(1) brightness(2);
}

body.dark-theme #main-header {
    background-color: #1e1e1e;
    border-bottom: 1px solid #333;
}

body.dark-theme #main-nav {
    background-color: #0a0a0a;
}

body.dark-theme footer {
    background-color: #1e1e1e;
    color: #e0e0e0;
}

body.dark-theme .footer-links a {
    color: #e0e0e0;
}

body.dark-theme .footer-links a:hover {
    color: #D4AF37;
}

body.dark-theme .button {
    background-color: #bb86fc;
    color: #121212;
}

body.dark-theme .button:hover {
    background-color: #9b59b6;
}

body.dark-theme .slider-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

body.dark-theme .slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

body.dark-theme .dot {
    background-color: rgba(255, 255, 255, 0.3);
}

body.dark-theme .dot.active {
    background-color: #bb86fc;
}

body.dark-theme .game-card-info {
    background-color: #2c2c2c;
}

body.dark-theme .game-card-info h3 {
    color: #ffffff;
}

body.dark-theme .game-card-info h3 a {
    color: #bb86fc;
}

body.dark-theme .game-card-info h3 a:hover {
    text-decoration: underline;
}

body.dark-theme .nav-label {
    color: #e0e0e0;
}

body.dark-theme #user-reviews p {
    color: #e0e0e0;
}

body.dark-theme #user-reviews p.textonegro {
    color: #ffffff;
}

/* --- Legal Pages Base Styles --- */
#legal-notice,
#privacy-policy,
#cookies-policy,
#ayuda-cdti {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem var(--spacing-unit);
    line-height: 1.8;
}

#legal-notice h1,
#privacy-policy h1,
#cookies-policy h1,
#ayuda-cdti h1 {
    font-family: 'EB Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    text-align: left;
}

#legal-notice h2,
#privacy-policy h2,
#cookies-policy h2,
#ayuda-cdti h2 {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

#ayuda-cdti h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

#legal-notice p,
#privacy-policy p,
#cookies-policy p,
#ayuda-cdti p {
    font-family: var(--font-family);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 1.2rem;
    color: var(--text-color);
    line-height: 1.6;
    text-align: justify;
}

#legal-notice ul,
#privacy-policy ul,
#cookies-policy ul,
#ayuda-cdti ul {
    margin: 1.5rem 0 1.5rem 2rem;
    list-style-type: disc;
}

#legal-notice li,
#privacy-policy li,
#cookies-policy li,
#ayuda-cdti li {
    font-family: var(--font-family);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    line-height: 1.6;
}

#legal-notice a,
#privacy-policy a,
#cookies-policy a,
#ayuda-cdti a {
    color: #4A90E2;
    text-decoration: none;
    transition: color 0.3s ease;
}

#legal-notice a:hover,
#privacy-policy a:hover,
#cookies-policy a:hover,
#ayuda-cdti a:hover {
    color: #D4AF37;
    text-decoration: underline;
}

#legal-notice strong,
#privacy-policy strong,
#cookies-policy strong,
#ayuda-cdti strong {
    font-weight: 600;
    color: #2c2c2c;
}

/* Legal Pages - Responsive */
@media (max-width: 768px) {
    #legal-notice,
    #privacy-policy,
    #cookies-policy,
    #ayuda-cdti {
        padding: 2rem 1.5rem;
    }

    #legal-notice h1,
    #privacy-policy h1,
    #cookies-policy h1,
    #ayuda-cdti h1 {
        font-size: 2rem;
    }

    #legal-notice h2,
    #privacy-policy h2,
    #cookies-policy h2,
    #ayuda-cdti h2 {
        font-size: 1.3rem;
    }

    #legal-notice p,
    #privacy-policy p,
    #cookies-policy p,
    #ayuda-cdti p,
    #legal-notice li,
    #privacy-policy li,
    #cookies-policy li,
    #ayuda-cdti li {
        font-size: 0.95rem;
        text-align: left;
    }

    #legal-notice ul,
    #privacy-policy ul,
    #cookies-policy ul,
    #ayuda-cdti ul {
        margin-left: 1.2rem;
    }
}

/* --- Cookie Policy Details/Summary Styles --- */
.cookie-service,
.consent-category {
    margin: 1.5rem 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0;
    background-color: #f9f9f9;
}

.cookie-service summary,
.consent-category summary {
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--secondary-color);
    list-style: none;
    user-select: none;
    transition: background-color 0.3s ease;
}

.cookie-service summary::-webkit-details-marker,
.consent-category summary::-webkit-details-marker {
    display: none;
}

.cookie-service summary::before,
.consent-category summary::before {
    content: "▶";
    display: inline-block;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.cookie-service[open] summary::before,
.consent-category[open] summary::before {
    transform: rotate(90deg);
}

.cookie-service summary:hover,
.consent-category summary:hover {
    background-color: #f0f0f0;
}

.cookie-details,
.consent-category > p,
.consent-category > ul {
    padding: 1rem 1.5rem;
    border-top: 1px solid #ddd;
}

.cookie-details p,
.consent-category p {
    margin-bottom: 0.8rem;
}

.cookie-details ul {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
}

.cookie-details li {
    margin-bottom: 0.5rem;
}

#cookies-policy h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.consent-categories {
    margin: 2rem 0;
}

/* --- Legal Pages Dark Theme --- */
body.dark-theme #legal-notice h2,
body.dark-theme #privacy-policy h2,
body.dark-theme #cookies-policy h2,
body.dark-theme #ayuda-cdti h2 {
    color: #d0d0d0;
}

body.dark-theme #ayuda-cdti h3,
body.dark-theme #cookies-policy h3 {
    color: #d0d0d0;
}

body.dark-theme #legal-notice p,
body.dark-theme #privacy-policy p,
body.dark-theme #cookies-policy p,
body.dark-theme #ayuda-cdti p,
body.dark-theme #legal-notice li,
body.dark-theme #privacy-policy li,
body.dark-theme #cookies-policy li,
body.dark-theme #ayuda-cdti li {
    color: #b0b0b0;
}

body.dark-theme #legal-notice strong,
body.dark-theme #privacy-policy strong,
body.dark-theme #cookies-policy strong,
body.dark-theme #ayuda-cdti strong {
    color: #e0e0e0;
}

body.dark-theme #legal-notice a,
body.dark-theme #privacy-policy a,
body.dark-theme #cookies-policy a,
body.dark-theme #ayuda-cdti a {
    color: #bb86fc;
}

body.dark-theme #legal-notice a:hover,
body.dark-theme #privacy-policy a:hover,
body.dark-theme #cookies-policy a:hover,
body.dark-theme #ayuda-cdti a:hover {
    color: #D4AF37;
}

/* --- Cookie Policy Dark Theme --- */
body.dark-theme .cookie-service,
body.dark-theme .consent-category {
    background-color: #252525;
    border-color: #404040;
}

body.dark-theme .cookie-service summary,
body.dark-theme .consent-category summary {
    color: #d0d0d0;
}

body.dark-theme .cookie-service summary:hover,
body.dark-theme .consent-category summary:hover {
    background-color: #2a2a2a;
}

body.dark-theme .cookie-details,
body.dark-theme .consent-category > p,
body.dark-theme .consent-category > ul {
    border-top-color: #404040;
}

/* --- CDTI Logo Styles --- */
.cdti-logo {
    margin-top: 3rem;
    text-align: center;
}

.cdti-logo img {
    max-height: 200px;
    height: auto;
}
