 :root {
     --color-bg: #050816;
     --color-bg-alt: #0b1020;
     --color-surface: #111827;
     --color-surface-alt: #1f2937;
     --color-primary: #2f80ed;
     --color-primary-soft: rgba(47, 128, 237, 0.15);
     --color-accent: #10b981;
     --color-text: #f9fafb;
     --color-text-muted: #9ca3af;
     --color-border: #1f2937;
     --radius-lg: 1rem;
     --radius-xl: 1.5rem;
     --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.65);
     --transition-fast: 0.2s ease;
     --max-width: 1120px;
     --header-height: 72px;
 }

 * {
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     margin: 0;
     font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
     background: radial-gradient(circle at top, #111827 0, #020617 55%, #020617 100%);
     color: var(--color-text);
     line-height: 1.6;
 }

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

 a {
     color: inherit;
     text-decoration: none;
 }



 .container {
     width: 100%;
     max-width: var(--max-width);
     margin: 0 auto;
     padding: 0 1.5rem;
 }

 section {
     padding: 5rem 0 4rem;
     scroll-margin-top: calc(var(--header-height) + 24px);
 }

 @media (max-width: 768px) {
     section {
         padding: 4rem 0 3rem;
     }
 }

 h1,
 h2,
 h3,
 h4 {
     margin: 0;
     font-weight: 700;
     letter-spacing: -0.02em;
 }

 p {
     margin-top: 0.5rem;
     margin-bottom: 1rem;
 }

 .badge {
     display: inline-flex;
     align-items: center;
     gap: 0.4rem;
     padding: 0.25rem 0.75rem;
     border-radius: 999px;
     border: 1px solid rgba(148, 163, 184, 0.35);
     background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.22), transparent 60%);
     color: var(--color-text-muted);
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 0.08em;
 }

 .badge i {
     font-size: 0.75rem;
     color: var(--color-primary);
 }

 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 0.5rem;
     padding: 0.9rem 1.4rem;
     border-radius: 999px;
     border: none;
     cursor: pointer;
     font-weight: 600;
     font-size: 0.95rem;
     transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
     white-space: nowrap;
 }

 .btn-primary {
     background: linear-gradient(135deg, var(--color-primary), #2563eb);
     color: #f9fafb;
     box-shadow: 0 18px 35px rgba(37, 99, 235, 0.35);
 }

 .btn-primary:hover {
     transform: translateY(-1px);
     box-shadow: 0 24px 48px rgba(37, 99, 235, 0.5);
 }

 .btn-outline {
     background: transparent;
     color: var(--color-text);
     border: 1px solid rgba(148, 163, 184, 0.45);
 }

 .btn-outline:hover {
     background: rgba(15, 23, 42, 0.9);
 }

 .tag {
     display: inline-flex;
     align-items: center;
     gap: 0.35rem;
     padding: 0.3rem 0.7rem;
     border-radius: 999px;
     border: 1px solid rgba(148, 163, 184, 0.5);
     background: rgba(15, 23, 42, 0.85);
     font-size: 0.7rem;
     color: var(--color-text-muted);
 }

 .tag i {
     color: var(--color-accent);
     font-size: 0.75rem;
 }

 .pill {
     display: inline-flex;
     align-items: center;
     gap: 0.35rem;
     padding: 0.35rem 0.8rem;
     border-radius: 999px;
     background: rgba(15, 23, 42, 0.9);
     font-size: 0.75rem;
     color: var(--color-text-muted);
 }

 .pill i {
     font-size: 0.75rem;
     color: var(--color-primary);
 }



 .main-header {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     height: var(--header-height);
     background: rgba(2, 6, 23, 0.9);
     backdrop-filter: blur(16px);
     border-bottom: 1px solid rgba(15, 23, 42, 0.85);
     z-index: 999;
 }

 .header-inner {
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 1.5rem;
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 0.85rem;
 }

 .logo-mark {
     width: 34px;
     height: 34px;
     border-radius: 10px;
     background: radial-gradient(circle at 20% 20%, #60a5fa 0, #1d4ed8 40%, #020617 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45);
     flex-shrink: 0;
 }

 .logo-mark span {
     font-size: 0.9rem;
     font-weight: 800;
 }

 .logo-text-main {
     font-weight: 700;
     font-size: 1.05rem;
 }

 .logo-sub {
     font-size: 0.75rem;
     color: var(--color-text-muted);
 }

 .nav {
     display: flex;
     align-items: center;
     gap: 1.5rem;
 }

 .nav-links {
     display: flex;
     align-items: center;
     gap: 1.2rem;
     font-size: 0.88rem;
 }

 .nav-links a {
     color: var(--color-text-muted);
     position: relative;
     padding: 0.25rem 0;
 }

 .nav-links a::after {
     content: "";
     position: absolute;
     left: 0;
     bottom: 0;
     width: 0;
     height: 2px;
     border-radius: 999px;
     background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
     transition: width var(--transition-fast);
 }

 .nav-links a:hover {
     color: var(--color-text);
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 .nav-cta {
     display: flex;
     align-items: center;
     gap: 0.75rem;
 }

 .nav-toggle {
     display: none;
     width: 40px;
     height: 40px;
     border-radius: 999px;
     border: 1px solid rgba(148, 163, 184, 0.5);
     background: transparent;
     align-items: center;
     justify-content: center;
     cursor: pointer;
 }

 .nav-toggle span,
 .nav-toggle span::before,
 .nav-toggle span::after {
     display: block;
     width: 18px;
     height: 2px;
     border-radius: 999px;
     background: #e5e7eb;
     transition: transform var(--transition-fast), opacity var(--transition-fast);
     position: relative;
 }

 .nav-toggle span::before,
 .nav-toggle span::after {
     content: "";
     position: absolute;
     left: 0;
 }

 .nav-toggle span::before {
     top: -6px;
 }

 .nav-toggle span::after {
     top: 6px;
 }

 .nav-toggle.open span {
     transform: rotate(45deg);
 }

 .nav-toggle.open span::before {
     transform: rotate(-90deg);
     top: 0;
 }

 .nav-toggle.open span::after {
     opacity: 0;
 }

 @media (max-width: 980px) {
     .nav-links {
         position: fixed;
         inset: var(--header-height) 0 auto 0;
         background: rgba(15, 23, 42, 0.98);
         border-bottom: 1px solid rgba(31, 41, 55, 0.9);
         padding: 1rem 1.5rem 1.25rem;
         flex-direction: column;
         align-items: flex-start;
         gap: 0.75rem;
         transform: translateY(-100%);
         opacity: 0;
         pointer-events: none;
         transition: transform var(--transition-fast), opacity var(--transition-fast);
     }

     .nav-links.nav-open {
         transform: translateY(0);
         opacity: 1;
         pointer-events: auto;
     }

     .nav-cta {
         display: none;
     }

     .nav-toggle {
         display: inline-flex;
     }
 }



 .hero {
     padding-top: calc(5.5rem + var(--header-height));
     padding-bottom: 4.5rem;
     background:
         radial-gradient(circle at top left, rgba(37, 99, 235, 0.45), transparent 55%),
         radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.25), transparent 60%),
         linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
     border-bottom: 1px solid rgba(31, 41, 55, 0.9);
 }

 .hero-grid {
     display: grid;
     grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
     gap: 3rem;
     align-items: center;
 }

 .hero-title {
     font-size: clamp(2.2rem, 3vw, 2.8rem);
     margin-top: 0.8rem;
     margin-bottom: 0.75rem;
 }

 .hero-subtitle {
     color: var(--color-text-muted);
     max-width: 34rem;
     font-size: 0.98rem;
 }

 .hero-bullets {
     margin: 1.5rem 0 2rem;
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 0.8rem 1.5rem;
 }

 .hero-bullet {
     display: flex;
     gap: 0.65rem;
     align-items: flex-start;
     font-size: 0.9rem;
     color: #e5e7eb;
 }

 .hero-bullet i {
     margin-top: 0.1rem;
     color: var(--color-accent);
     font-size: 0.85rem;
 }

 .hero-actions {
     display: flex;
     flex-wrap: wrap;
     gap: 0.75rem;
     align-items: center;
 }

 .hero-note {
     font-size: 0.8rem;
     color: var(--color-text-muted);
     display: flex;
     align-items: center;
     gap: 0.4rem;
 }

 .hero-note i {
     color: #facc15;
 }

 .hero-card {
     background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), #020617);
     border-radius: var(--radius-xl);
     border: 1px solid rgba(31, 41, 55, 0.85);
     padding: 1.4rem 1.4rem 1.3rem;
     box-shadow: var(--shadow-soft);
     position: relative;
     overflow: hidden;
 }

 .hero-card::before {
     content: "";
     position: absolute;
     inset: -1px;
     background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.3), transparent 55%);
     opacity: 0.6;
     pointer-events: none;
 }

 .hero-card-inner {
     position: relative;
     z-index: 1;
 }

 .hero-card-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 1rem;
     gap: 1rem;
 }

 .hero-card-title {
     font-size: 0.95rem;
     font-weight: 600;
 }

 .hero-card-rating {
     display: inline-flex;
     align-items: center;
     gap: 0.3rem;
     padding: 0.25rem 0.6rem;
     border-radius: 999px;
     background: rgba(15, 23, 42, 0.9);
     border: 1px solid rgba(55, 65, 81, 0.9);
     font-size: 0.75rem;
 }

 .hero-card-rating i {
     color: #fbbf24;
 }

 .hero-card-badges {
     display: flex;
     flex-wrap: wrap;
     gap: 0.4rem;
     margin-bottom: 0.8rem;
 }

 .hero-card-badges .tag {
     background: rgba(15, 23, 42, 0.9);
 }

 .hero-card-list {
     list-style: none;
     padding: 0;
     margin: 0 0 1.1rem;
     font-size: 0.85rem;
     color: var(--color-text-muted);
 }

 .hero-card-list li {
     display: flex;
     align-items: center;
     gap: 0.45rem;
     margin-bottom: 0.35rem;
 }

 .hero-card-list i {
     color: var(--color-primary);
     font-size: 0.75rem;
 }

 .hero-card-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 0.5rem;
     font-size: 0.8rem;
     color: var(--color-text-muted);
 }

 .hero-card-footer strong {
     color: #fbbf24;
     font-weight: 600;
 }

 @media (max-width: 900px) {
     .hero-grid {
         grid-template-columns: minmax(0, 1fr);
     }
 }

 @media (max-width: 640px) {
     .hero {
         padding-top: calc(5rem + var(--header-height));
     }

     .hero-bullets {
         grid-template-columns: minmax(0, 1fr);
     }

     .hero-actions {
         flex-direction: column;
         align-items: stretch;
     }

     .hero-actions .btn {
         width: 100%;
         justify-content: center;
     }
 }



 .section-heading {
     display: flex;
     flex-direction: column;
     gap: 0.4rem;
     margin-bottom: 1.7rem;
 }

 .section-heading h2 {
     font-size: 1.6rem;
 }

 .section-heading p {
     max-width: 35rem;
     color: var(--color-text-muted);
     font-size: 0.96rem;
 }



 .codere-wrapper {
     display: grid;
     grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
     gap: 2rem;
 }

 .codere-main-card {
     background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.22), transparent 45%), var(--color-surface);
     border-radius: var(--radius-xl);
     border: 1px solid rgba(31, 41, 55, 0.95);
     padding: 1.7rem 1.6rem 1.6rem;
     box-shadow: var(--shadow-soft);
 }

 .codere-header {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-between;
     gap: 1.25rem;
     margin-bottom: 1.25rem;
 }

 .codere-logo-block {
     display: flex;
     align-items: center;
     gap: 0.9rem;
 }

 .codere-logo-placeholder {
     width: 98px;
     height: 42px;
     border-radius: 12px;
     background: #111827;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 1.05rem;
     padding: 10px;
     color: #ecfdf3;
 }

 .codere-label {
     font-size: 0.8rem;
     color: var(--color-text-muted);
 }

 .codere-rating {
     text-align: right;
     font-size: 0.8rem;
     color: var(--color-text-muted);
 }

 .codere-stars {
     display: flex;
     gap: 0.15rem;
     justify-content: flex-end;
     margin-bottom: 0.2rem;
 }

 .codere-stars i {
     color: #fbbf24;
     font-size: 0.9rem;
 }

 .codere-bonus {
     margin-bottom: 1.2rem;
     padding: 0.9rem 1rem;
     border-radius: 0.85rem;
     background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(37, 99, 235, 0.18));
     border: 1px solid rgba(52, 211, 153, 0.25);
     font-size: 0.9rem;
 }

 .codere-bonus strong {
     font-weight: 600;
     color: #bbf7d0;
 }

 .codere-lists {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 1.5rem;
     margin-bottom: 1.4rem;
 }

 .codere-list-title {
     font-size: 0.85rem;
     font-weight: 600;
     color: #e5e7eb;
     margin-bottom: 0.4rem;
 }

 .codere-list {
     list-style: none;
     padding: 0;
     margin: 0;
     font-size: 0.85rem;
 }

 .codere-list li {
     display: flex;
     align-items: flex-start;
     gap: 0.45rem;
     margin-bottom: 0.3rem;
     color: var(--color-text-muted);
 }

 .codere-list li i {
     font-size: 0.75rem;
 }

 .codere-list--pros li i {
     color: var(--color-accent);
 }

 .codere-list--cons li i {
     color: #f97316;
 }

 .codere-meta {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 0.85rem 1.2rem;
     font-size: 0.83rem;
     color: var(--color-text-muted);
     margin-bottom: 1.25rem;
 }

 .codere-meta-item span {
     display: block;
 }

 .codere-meta-label {
     font-size: 0.75rem;
     color: #9ca3af;
     text-transform: uppercase;
     letter-spacing: 0.08em;
     margin-bottom: 0.1rem;
 }

 .codere-meta-value {
     font-weight: 500;
     color: #e5e7eb;
 }

 .codere-cta-row {
     display: flex;
     flex-wrap: wrap;
     gap: 0.75rem;
     align-items: center;
 }

 .codere-cta-note {
     font-size: 0.8rem;
     color: var(--color-text-muted);
     display: flex;
     align-items: center;
     gap: 0.4rem;
 }

 .codere-cta-note i {
     color: #22c55e;
 }

 .codere-text {
     font-size: 0.9rem;
     color: var(--color-text-muted);
 }

 .codere-text strong {
     color: #e5e7eb;
     font-weight: 600;
 }

 .codere-side {
     display: flex;
     flex-direction: column;
     gap: 1.3rem;
 }

 .codere-highlight {
     padding: 1.1rem 1.2rem;
     border-radius: 1rem;
     background: var(--color-surface-alt);
     border: 1px solid rgba(31, 41, 55, 0.9);
     font-size: 0.86rem;
 }

 .codere-highlight-header {
     display: flex;
     align-items: center;
     gap: 0.55rem;
     margin-bottom: 0.35rem;
 }

 .codere-highlight-header i {
     color: var(--color-primary);
 }

 .codere-highlight-title {
     font-size: 0.9rem;
     font-weight: 600;
 }

 .codere-highlight-list {
     list-style: none;
     padding: 0;
     margin: 0.4rem 0 0;
     font-size: 0.83rem;
     color: var(--color-text-muted);
 }

 .codere-highlight-list li {
     margin-bottom: 0.25rem;
     display: flex;
     align-items: center;
     gap: 0.35rem;
 }

 .codere-highlight-list i {
     color: var(--color-accent);
     font-size: 0.7rem;
 }

 @media (max-width: 980px) {
     .codere-wrapper {
         grid-template-columns: minmax(0, 1fr);
     }
 }



 .comparativa-intro {
     display: flex;
     flex-wrap: wrap;
     gap: 1rem;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 1.5rem;
     font-size: 0.86rem;
     color: var(--color-text-muted);
 }

 .comparativa-intro-cta {
     display: flex;
     flex-wrap: wrap;
     gap: 0.5rem;
     align-items: center;
 }

 .comparison-table-wrapper {
     background: var(--color-surface);
     border-radius: var(--radius-xl);
     border: 1px solid rgba(31, 41, 55, 0.95);
     overflow: hidden;
     box-shadow: var(--shadow-soft);
 }

 .casino-table {
     width: 100%;
     border-collapse: collapse;
     font-size: 0.86rem;
 }

 .casino-table thead {
     background: rgba(15, 23, 42, 0.95);
 }

 .casino-table th,
 .casino-table td {
     padding: 0.8rem 0.8rem;
     text-align: left;
     border-bottom: 1px solid rgba(31, 41, 55, 0.9);
 }

 .casino-table th {
     font-weight: 600;
     color: #e5e7eb;
     font-size: 0.8rem;
     text-transform: uppercase;
     letter-spacing: 0.06em;
 }

 .casino-table tbody tr:nth-child(even) {
     background: rgba(15, 23, 42, 0.65);
 }

 .casino-name {
     font-weight: 600;
 }

 .casino-rating {
     display: flex;
     align-items: center;
     gap: 0.25rem;
 }

 .casino-rating i {
     color: #fbbf24;
     font-size: 0.8rem;
 }

 .casino-badge {
     display: inline-flex;
     align-items: center;
     gap: 0.25rem;
     padding: 0.2rem 0.6rem;
     border-radius: 999px;
     font-size: 0.74rem;
     border: 1px solid rgba(55, 65, 81, 0.9);
     background: rgba(15, 23, 42, 0.9);
     color: var(--color-text-muted);
 }

 .casino-badge i {
     font-size: 0.7rem;
     color: var(--color-primary);
 }

 .casino-table .btn {
     font-size: 0.8rem;
     padding: 0.55rem 0.9rem;
 }

 @media (max-width: 880px) {
     .casino-table thead {
         display: none;
     }

     .casino-table,
     .casino-table tbody,
     .casino-table tr,
     .casino-table td {
         display: block;
         width: 100%;
     }

     .casino-table tr {
         border-bottom: 1px solid rgba(31, 41, 55, 0.9);
     }

     .casino-table td {
         border: none;
         padding: 0.6rem 0.9rem;
         position: relative;
     }

     .casino-table td::before {
         content: attr(data-label);
         display: block;
         font-size: 0.75rem;
         text-transform: uppercase;
         letter-spacing: 0.06em;
         color: #9ca3af;
         margin-bottom: 0.15rem;
     }

     .casino-table td:last-child {
         padding-bottom: 0.85rem;
     }
 }



 .criteria-grid {
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: 1.2rem;
 }

 .criteria-card {
     padding: 1.1rem 1.1rem 1rem;
     border-radius: 1rem;
     background: var(--color-surface);
     border: 1px solid rgba(31, 41, 55, 0.95);
     font-size: 0.86rem;
 }

 .criteria-icon {
     width: 32px;
     height: 32px;
     border-radius: 999px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 0.5rem;
     background: rgba(37, 99, 235, 0.1);
     color: var(--color-primary);
 }

 .criteria-card h3 {
     font-size: 0.98rem;
     margin-bottom: 0.2rem;
 }

 .criteria-card p {
     font-size: 0.86rem;
     color: var(--color-text-muted);
     margin-bottom: 0;
 }

 @media (max-width: 900px) {
     .criteria-grid {
         grid-template-columns: repeat(2, minmax(0, 1fr));
     }
 }

 @media (max-width: 640px) {
     .criteria-grid {
         grid-template-columns: minmax(0, 1fr);
     }
 }



 .guides-grid {
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: 1.2rem;
 }

 .guide-card {
     padding: 1.1rem 1.1rem 1rem;
     border-radius: 1rem;
     background: var(--color-surface-alt);
     border: 1px solid rgba(31, 41, 55, 0.95);
     font-size: 0.86rem;
     position: relative;
     overflow: hidden;
 }

 .guide-card::before {
     content: "";
     position: absolute;
     inset: 0;
     background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 55%);
     opacity: 0.7;
     pointer-events: none;
 }

 .guide-card-inner {
     position: relative;
     z-index: 1;
 }

 .guide-icon {
     width: 32px;
     height: 32px;
     border-radius: 999px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 0.5rem;
     background: rgba(16, 185, 129, 0.13);
     color: var(--color-accent);
 }

 .guide-card h3 {
     font-size: 0.98rem;
     margin-bottom: 0.25rem;
 }

 .guide-card p {
     font-size: 0.86rem;
     color: var(--color-text-muted);
     margin-bottom: 0;
 }

 @media (max-width: 900px) {
     .guides-grid {
         grid-template-columns: repeat(2, minmax(0, 1fr));
     }
 }

 @media (max-width: 640px) {
     .guides-grid {
         grid-template-columns: minmax(0, 1fr);
     }
 }



 .faq-wrapper {
     width: 100%;
 }

 .faq-item {
     border-radius: 0.9rem;
     background: var(--color-surface);
     border: 1px solid rgba(31, 41, 55, 0.95);
     margin-bottom: 0.75rem;
     overflow: hidden;
 }

 .faq-question {
     width: 100%;
     text-align: left;
     padding: 0.9rem 1rem;
     background: transparent;
     border: none;
     color: #e5e7eb;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 1rem;
     cursor: pointer;
     font-size: 0.92rem;
     font-weight: 500;
 }



 .faq-icon {
     width: 24px;
     height: 24px;
     border-radius: 999px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: rgba(55, 65, 81, 0.9);
     flex-shrink: 0;
     font-size: 0.75rem;
     color: var(--color-text-muted);
     transition: transform var(--transition-fast), background var(--transition-fast);
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.25s ease;
     padding: 0 1rem;
 }

 .faq-answer-inner {
     padding-bottom: 0.9rem;
     font-size: 0.86rem;
     color: var(--color-text-muted);
 }

 .faq-item.active .faq-icon {
     transform: rotate(90deg);
     background: rgba(37, 99, 235, 0.9);
     color: #e5e7eb;
 }



 .responsible-grid {
     display: grid;
     grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
     gap: 2rem;
 }

 .responsible-main {
     font-size: 0.9rem;
     color: var(--color-text-muted);
 }

 .responsible-main p {
     margin-bottom: 0.8rem;
 }

 .responsible-main ul {
     padding-left: 1.1rem;
     margin: 0.4rem 0 0.9rem;
 }

 .responsible-main li {
     margin-bottom: 0.25rem;
 }

 .responsible-resources {
     padding: 1.1rem 1.1rem 1rem;
     border-radius: 1rem;
     background: var(--color-surface);
     border: 1px solid rgba(31, 41, 55, 0.95);
     font-size: 0.86rem;
 }

 .responsible-resources h3 {
     font-size: 0.98rem;
     margin-bottom: 0.4rem;
 }

 .responsible-resources ul {
     list-style: none;
     padding: 0;
     margin: 0.3rem 0 0.7rem;
 }

 .responsible-resources li {
     display: flex;
     align-items: center;
     gap: 0.4rem;
     margin-bottom: 0.35rem;
 }

 .responsible-resources li i {
     font-size: 0.75rem;
     color: var(--color-primary);
 }

 .responsible-disclaimer {
     margin-top: 0.6rem;
     padding: 0.75rem 0.8rem;
     border-radius: 0.7rem;
     border: 1px dashed rgba(248, 113, 113, 0.7);
     background: rgba(127, 29, 29, 0.4);
     color: #fecaca;
     font-size: 0.8rem;
 }

 @media (max-width: 880px) {
     .responsible-grid {
         grid-template-columns: minmax(0, 1fr);
     }
 }



 footer {
     background: #020617;
     border-top: 1px solid rgba(15, 23, 42, 0.95);
     margin-top: 1rem;
 }

 .footer-main {
     padding: 2.5rem 0 1.8rem;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
     gap: 2rem;
     font-size: 0.86rem;
 }

 .footer-logo {
     display: flex;
     flex-direction: column;
     gap: 0.5rem;
 }

 .footer-logo .logo {
     margin-bottom: 0.4rem;
 }

 .footer-text {
     color: var(--color-text-muted);
 }

 .footer-heading {
     font-size: 0.9rem;
     font-weight: 600;
     margin-bottom: 0.4rem;
 }

 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links li {
     margin-bottom: 0.25rem;
 }

 .footer-links a {
     font-size: 0.86rem;
     color: var(--color-text-muted);
 }

 .footer-links a:hover {
     color: var(--color-text);
 }

 .footer-legal {
     font-size: 0.8rem;
     color: var(--color-text-muted);
 }

 .footer-bottom {
     border-top: 1px solid rgba(15, 23, 42, 0.95);
     padding: 0.8rem 0;
     font-size: 0.8rem;
     color: var(--color-text-muted);
 }

 .footer-bottom-inner {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 1rem;
     flex-wrap: wrap;
 }

 .footer-social {
     display: flex;
     align-items: center;
     gap: 0.6rem;
 }

 .footer-social a {
     width: 26px;
     height: 26px;
     border-radius: 999px;
     border: 1px solid rgba(55, 65, 81, 0.9);
     display: inline-flex;
     align-items: center;
     justify-content: center;
     color: var(--color-text-muted);
     font-size: 0.7rem;
 }

 .footer-social a:hover {
     color: var(--color-text);
     border-color: rgba(156, 163, 175, 0.9);
 }

 @media (max-width: 900px) {
     .footer-grid {
         grid-template-columns: repeat(2, minmax(0, 1fr));
     }
 }

 @media (max-width: 640px) {
     .footer-grid {
         grid-template-columns: minmax(0, 1fr);
     }
 }

 #contacto {
     text-align: center;
 }

 #contacto p {
     margin: 0 auto;
 }

 .logo-footer {
     display: flex;
     flex-wrap: wrap;
     gap: 15px;
     width: 100%;
     max-width: 1120px;
     margin: 25px auto;
     justify-content: center;
 }

 .logo-footer a {
     height: 48px;

 }

 .logo-footer a img {
     height: 100%;
     object-fit: contain;
 }
   .cookie-banner {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9;
        display: none;
        justify-content: center;
        padding: 0.75rem 0.6rem;
        pointer-events: none;
    }

    .cookie-banner--visible {
        display: flex;
    }

    .cookie-banner__content {
        pointer-events: auto;
        width: 100%;
        max-width: 960px;
        background: rgba(15, 23, 42, 0.97);
        border-radius: 999px;
        border: 1px solid rgba(31, 41, 55, 0.95);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
        padding: 0.75rem 1.4rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
        font-size: 0.8rem;
        color: var(--color-text-muted);
    }

    .cookie-banner__text strong {
        display: block;
        color: var(--color-text);
        margin-bottom: 0.15rem;
        font-size: 0.86rem;
    }

    .cookie-banner__text p {
        margin: 0;
    }

    .cookie-banner__text a {
        color: var(--color-primary);
        text-decoration: underline;
    }

    .cookie-banner__buttons {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .cookie-banner__buttons .btn {
        font-size: 0.8rem;
        padding: 0.55rem 0.9rem;
    }

    .cookie-btn-reject {
        border-style: dashed;
    }

    @media (max-width: 768px) {
        .cookie-banner__content {
            flex-direction: column;
            align-items: stretch;
            border-radius: 1rem;
        }
        .cookie-banner__buttons {
            justify-content: flex-end;
        }
        .cookie-banner__buttons .btn {
            flex: 1;
            justify-content: center;
        }
    }

    /* Configuración de cookies (modal) */
    .cookie-settings-overlay {
        position: fixed;
        inset: 0;
        z-index: 9998;
        display: none;
        align-items: center;
        justify-content: center;
        background: rgba(15, 23, 42, 0.85);
        backdrop-filter: blur(10px);
    }

    .cookie-settings-overlay--visible {
        display: flex;
    }

    .cookie-settings {
        width: 100%;
        max-width: 520px;
        background: var(--color-surface);
        border-radius: 1.2rem;
        border: 1px solid rgba(31, 41, 55, 0.95);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
        padding: 1.4rem 1.3rem 1.2rem;
    }

    .cookie-settings__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        margin-bottom: 0.6rem;
    }

    .cookie-settings__header h3 {
        margin: 0;
        font-size: 1.05rem;
    }

    .cookie-settings__close {
        border: none;
        background: transparent;
        color: var(--color-text-muted);
        cursor: pointer;
        width: 30px;
        height: 30px;
        border-radius: 999px;
        border: 1px solid rgba(55, 65, 81, 0.9);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
    }

    .cookie-settings__intro {
        font-size: 0.84rem;
        color: var(--color-text-muted);
    }

    .cookie-settings__group {
        margin-top: 0.6rem;
        margin-bottom: 0.9rem;
        display: flex;
        flex-direction: column;
        gap: 0.55rem;
    }

    .cookie-toggle {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        padding: 0.6rem 0.55rem;
        border-radius: 0.8rem;
        background: var(--color-surface-alt);
        border: 1px solid rgba(31, 41, 55, 0.9);
        font-size: 0.84rem;
        cursor: pointer;
    }

    .cookie-toggle input {
        display: none;
    }

    .cookie-toggle__check {
        width: 38px;
        height: 22px;
        border-radius: 999px;
        background: rgba(55, 65, 81, 0.9);
        position: relative;
        flex-shrink: 0;
        margin-top: 0.2rem;
    }

    .cookie-toggle__check::before {
        content: "";
        position: absolute;
        top: 3px;
        left: 3px;
        width: 16px;
        height: 16px;
        border-radius: 999px;
        background: #020617;
        transition: transform 0.18s ease, background 0.18s ease;
    }

    .cookie-toggle input:checked + .cookie-toggle__check {
        background: var(--color-primary);
    }

    .cookie-toggle input:checked + .cookie-toggle__check::before {
        transform: translateX(14px);
        background: #e5e7eb;
    }

    .cookie-toggle__info {
        display: flex;
        flex-direction: column;
        gap: 0.1rem;
    }

    .cookie-toggle__title {
        color: var(--color-text);
        font-weight: 600;
        font-size: 0.86rem;
    }

    .cookie-toggle__desc {
        color: var(--color-text-muted);
        font-size: 0.8rem;
    }

    .cookie-toggle--disabled {
        opacity: 0.7;
        cursor: default;
    }

    .cookie-settings__footer {
        display: flex;
        justify-content: flex-end;
        gap: 0.5rem;
    }

    .cookie-settings__footer .btn {
        font-size: 0.82rem;
        padding: 0.6rem 1.1rem;
    }

    @media (max-width: 640px) {
        .cookie-settings {
            margin: 0 1.2rem;
        }
        .cookie-settings__footer {
            flex-direction: column-reverse;
        }
        .cookie-settings__footer .btn {
            width: 100%;
        }
    }

    /* Overlay de verificación de edad */
    .age-overlay {
        position: fixed;
        inset: 0;
        z-index: 9997;
        display: none;
        align-items: center;
        justify-content: center;
    }

    .age-overlay--visible {
        display: flex;
    }

    .age-overlay__backdrop {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617);
        opacity: 0.96;
        backdrop-filter: blur(8px);
    }

    .age-overlay__card {
        position: relative;
        width: 100%;
        max-width: 480px;
        background: var(--color-surface);
        border-radius: 1.5rem;
        border: 1px solid rgba(31, 41, 55, 0.95);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
        padding: 1.8rem 1.6rem 1.4rem;
        text-align: center;
    }

    .age-overlay__logo {
        width: 58px;
        height: 58px;
        border-radius: 1.1rem;
        margin: 0 auto 0.8rem;
        background: radial-gradient(circle at top, #f97316, #b91c1c);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        color: #fef2f2;
        font-size: 1.1rem;
        box-shadow: 0 16px 35px rgba(185, 28, 28, 0.7);
    }

    .age-overlay__card h2 {
        margin: 0 0 0.6rem;
        font-size: 1.4rem;
    }

    .age-overlay__text {
        font-size: 0.9rem;
        color: var(--color-text-muted);
        margin: 0 0 0.5rem;
    }

    .age-overlay__buttons {
        margin: 0.9rem 0 0.6rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
        justify-content: center;
    }

    .age-overlay__buttons .btn {
        min-width: 170px;
        font-size: 0.9rem;
    }

    .age-btn-no {
        border-color: rgba(185, 28, 28, 0.8);
        color: #fecaca;
    }

    .age-overlay__warning {
        font-size: 0.78rem;
        color: var(--color-text-muted);
        margin: 0.5rem 0 0.7rem;
    }

    .age-overlay__minor-message {
        display: flex;
        align-items: flex-start;
        gap: 0.4rem;
        padding: 0.55rem 0.65rem;
        border-radius: 0.7rem;
        background: rgba(127, 29, 29, 0.45);
        border: 1px dashed rgba(248, 113, 113, 0.9);
        color: #fee2e2;
        font-size: 0.8rem;
        text-align: left;
    }

    .age-overlay__minor-message i {
        margin-top: 0.1rem;
    }

    @media (max-width: 640px) {
        .age-overlay__card {
            margin: 0 1.2rem;
            padding: 1.5rem 1.2rem 1.2rem;
        }
        .age-overlay__buttons {
            flex-direction: column;
        }
    }