/* ============================================= */
/* main.css - Estilos globales de AZENIS          */
/* Última actualización: 04 de junio de 2026      */
/* ============================================= */

/* Fuentes locales */
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-ExtraLight.ttf') format('truetype');
    font-weight: 200; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-Light.ttf') format('truetype');
    font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-MediumItalic.ttf') format('truetype');
    font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600; font-style: italic; font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-BoldItalic.ttf') format('truetype');
    font-weight: 700; font-style: italic; font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-Black.ttf') format('truetype');
    font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-ThinItalic.ttf') format('truetype');
    font-weight: 100; font-style: italic; font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('/assets/fonts/open-sans-300.woff2') format('woff2'),
         url('/assets/fonts/open-sans-300.woff') format('woff');
    font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('/assets/fonts/open-sans-regular.woff2') format('woff2'),
         url('/assets/fonts/open-sans-regular.woff') format('woff');
    font-weight: 400; font-style: normal; font-display: swap;
}

/* ============================================= */
/* VARIABLES CSS GLOBALES                        */
/* ============================================= */
:root {
    --azenis-blue: #0a1929;
    --azenis-cyan: #00e5ff;
    --azenis-dark: #0d1b2a;
    --azenis-gold: #d4af37;
    --azenis-gold-glow: #ffd700;
    --azenis-glass: rgba(10, 25, 41, 0.92);
    --azenis-glass-mobile: rgba(10, 25, 41, 0.95);
    --azenis-border: rgba(0, 229, 255, 0.3);
    --font-primary: 'Montserrat', 'Open Sans', Arial, sans-serif;
    
    /* Header dinámico */
    --header-height: 80px;
    --header-scrolled-height: 68px;
    --header-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Sombras */
    --header-shadow-light: 0 4px 30px rgba(0, 0, 0, 0.5);
    --header-shadow-heavy: 0 4px 40px rgba(0, 0, 0, 0.8);
    --header-shadow-scrolled: 0 8px 50px rgba(0, 0, 0, 0.9);
    
    /* Colores de texto */
    --text-primary: #e0e0e0;
    --text-secondary: #b0c4de;
    --text-muted: #8899aa;
    --text-white: #ffffff;
    
    /* Colores de fondo */
    --bg-card: rgba(10, 20, 35, 0.55);
    --bg-card-hover: rgba(10, 20, 35, 0.7);
    --bg-table: rgba(0, 0, 0, 0.35);
    
    /* Bordes */
    --border-gold: rgba(212, 175, 55, 0.2);
    --border-gold-light: rgba(212, 175, 55, 0.15);
    --border-gold-hover: rgba(212, 175, 55, 0.3);
    --border-white: rgba(255, 255, 255, 0.08);
    
    /* Sombras */
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-text: 0 4px 20px rgba(0, 0, 0, 0.4);
    
    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ============================================= */
/* RESET                                         */
/* ============================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--azenis-dark);
    color: var(--text-primary);
    min-height: 100vh;
    padding-top: var(--header-height);
    line-height: 1.6;
    transition: padding-top var(--header-transition);
}

body.header-scrolled {
    padding-top: var(--header-scrolled-height);
}

body.menu-open {
    overflow: hidden;
}

body.sin-header {
    padding-top: 0;
}

/* ============================================= */
/* KEYFRAMES GLOBALES                            */
/* ============================================= */
@keyframes radar-sweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes link-glow-pulse {
    0%, 100% { text-shadow: 0 0 5px rgba(212, 175, 55, 0.2); }
    50% { text-shadow: 0 0 15px rgba(212, 175, 55, 0.5), 0 0 30px rgba(255, 215, 0, 0.2); }
}

@keyframes threat-pulse {
    0%, 100% { opacity: 0.12; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes radar-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes radar-scale-in {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* ============================================= */
/* HEADER Y NAVEGACIÓN                           */
/* ============================================= */
.azenis-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--azenis-glass);
    backdrop-filter: blur(25px) saturate(1.2);
    -webkit-backdrop-filter: blur(25px) saturate(1.2);
    padding: 0 2rem;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--header-shadow-light);
    transition: height var(--header-transition),
                padding var(--header-transition),
                box-shadow var(--header-transition),
                background var(--header-transition);
}

/* Línea base dorada ESTÁTICA */
.azenis-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent 0%,
        transparent 5%,
        var(--azenis-gold) 20%,
        var(--azenis-gold-glow) 40%,
        var(--azenis-gold-glow) 60%,
        var(--azenis-gold) 80%,
        transparent 95%,
        transparent 100%
    );
    z-index: 2;
}

.azenis-header.scrolled {
    height: var(--header-scrolled-height);
    box-shadow: var(--header-shadow-scrolled);
    background: rgba(10, 25, 41, 0.96);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    z-index: 1;
    flex-shrink: 0;
}

.logo-container img {
    height: 50px;
    width: auto;
    max-width: 200px;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.3));
    transition: height var(--header-transition),
                filter var(--transition-normal);
}

.azenis-header.scrolled .logo-container img {
    height: 42px;
}

.logo-container:hover img {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5))
            drop-shadow(0 0 8px rgba(0, 229, 255, 0.3));
}

/* Navegación */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    z-index: 1;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    transition: color var(--transition-normal),
                text-shadow var(--transition-normal);
    position: relative;
}

/* Subrayado grueso con degradado + glow */
.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--azenis-gold) 25%,
        var(--azenis-gold-glow) 50%,
        var(--azenis-gold) 75%,
        transparent 100%
    );
    border-radius: 2px;
    box-shadow: 0 1px 10px rgba(212, 175, 55, 0.35);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--text-white);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.nav-links > li > a:hover::after {
    width: 100%;
}

/* Dropdown — Solo hover, sin clic */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown > a {
    cursor: default;
}

.dropdown-menu {
    display: block;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: #0a1929;
    border-radius: 10px;
    padding: 0.8rem 0;
    min-width: 220px;
    list-style: none;
    margin: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease,
                transform 0.2s ease,
                visibility 0s linear 0.2s;
    pointer-events: none;
    visibility: hidden;
    z-index: 10;
}

/* Sin pseudo-elementos */
.dropdown-menu::before,
.dropdown-menu::after {
    display: none;
    content: none;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
    transition: opacity 0.2s ease,
                transform 0.2s ease,
                visibility 0s linear 0s;
}

.dropdown-menu li {
    padding: 0;
}

/* Enlaces del dropdown — TEXTO PLANO LIMPIO */
.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 400;
    transition: color var(--transition-fast);
    position: relative;
    z-index: 1;
    border-left: none;
    background: none;
    cursor: pointer;
}

/* Subrayado fino 1.5px que aparece en hover */
.dropdown-menu a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 1.5rem;
    right: 1.5rem;
    height: 1.5px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--azenis-gold) 30%,
        var(--azenis-gold-glow) 50%,
        var(--azenis-gold) 70%,
        transparent 100%
    );
    border-radius: 1px;
    box-shadow: 0 1px 6px rgba(212, 175, 55, 0.2);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.dropdown-menu a:hover {
    color: var(--text-white);
    background: none;
    border-left: none;
    padding-left: 1.5rem;
}

.dropdown-menu a:hover::after {
    opacity: 1;
}

/* Indicador de página activa — línea dorada FIJA */
.dropdown-menu a.active-page {
    color: var(--text-white);
}

.dropdown-menu a.active-page::after {
    opacity: 1;
}

/* Label del dropdown — TEXTO PLANO */
.dropdown-menu .dropdown-label {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    padding: 0.3rem 1.5rem 0.5rem;
    letter-spacing: 0.3px;
    text-transform: none;
    opacity: 0.8;
}

.dropdown-menu .dropdown-label::after {
    display: none;
}

.dropdown-divider {
    border: none;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    margin: 0.3rem 1.5rem;
}

/* Botón Activar Defensa — TEXTO PLANO DORADO */
.btn-defensa {
    background: transparent !important;
    color: var(--azenis-gold) !important;
    font-weight: 600 !important;
    padding: 0.5rem 0 !important;
    border-radius: 0 !important;
    transition: all var(--transition-normal) !important;
    box-shadow: none !important;
    letter-spacing: 0.5px !important;
}

.btn-defensa:hover {
    transform: none !important;
    box-shadow: none !important;
    color: var(--azenis-gold-glow) !important;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5),
                 0 0 30px rgba(255, 215, 0, 0.25) !important;
}

.btn-defensa::after {
    display: block !important;
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 0 !important;
    height: 3px !important;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--azenis-gold) 25%,
        var(--azenis-gold-glow) 50%,
        var(--azenis-gold) 75%,
        transparent 100%
    ) !important;
    border-radius: 2px !important;
    box-shadow: 0 1px 10px rgba(212, 175, 55, 0.35) !important;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-defensa:hover::after {
    width: 100% !important;
}

.btn-defensa::before {
    display: none !important;
}

/* ============================================= */
/* HAMBURGUESA MÓVIL                             */
/* ============================================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
    margin-left: 1rem;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--azenis-gold);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
    transform-origin: center;
}

.hamburger span:nth-child(2) {
    width: 20px;
    margin-left: 6px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    width: 26px;
    margin-left: 0;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 26px;
}

/* ============================================= */
/* RADAR OVERLAY — MENÚ MÓVIL                    */
/* ============================================= */
.radar-overlay {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 41, 0.92);
    backdrop-filter: blur(25px) saturate(1.2);
    -webkit-backdrop-filter: blur(25px) saturate(1.2);
    z-index: 998;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: top var(--header-transition);
}

body.header-scrolled .radar-overlay {
    top: var(--header-scrolled-height);
}

.radar-overlay.active {
    display: flex;
    animation: radar-fade-in 0.4s ease-out;
}

.radar-container {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

/* Círculo exterior */
.radar-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

/* Círculo interior con barrido */
.radar-inner {
    position: absolute;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: conic-gradient(
        from 0deg,
        rgba(212, 175, 55, 0.08) 0deg,
        rgba(212, 175, 55, 0.15) 15deg,
        rgba(212, 175, 55, 0.08) 30deg,
        rgba(212, 175, 55, 0.02) 60deg,
        rgba(212, 175, 55, 0.08) 360deg
    );
    animation: radar-sweep 4s linear infinite;
    pointer-events: none;
}

/* Enlaces dentro del radar — 6 enlaces */
.radar-links {
    position: relative;
    z-index: 2;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    margin: 0;
    cursor: default;
}

.radar-links li {
    opacity: 0;
    animation: radar-scale-in 0.4s ease-out forwards;
}

.radar-links li:nth-child(1) { animation-delay: 0.08s; }
.radar-links li:nth-child(2) { animation-delay: 0.15s; }
.radar-links li:nth-child(3) { animation-delay: 0.22s; }
.radar-links li:nth-child(4) { animation-delay: 0.29s; }
.radar-links li:nth-child(5) { animation-delay: 0.36s; }
.radar-links li:nth-child(6) { animation-delay: 0.43s; }

.radar-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.35rem 2rem;
    transition: color var(--transition-fast),
                text-shadow var(--transition-fast);
    display: block;
    text-align: center;
    cursor: pointer;
}

.radar-links a:hover,
.radar-links a:active {
    color: var(--text-white);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6),
                 0 0 40px rgba(255, 215, 0, 0.3);
}

/* Iluminación secuencial de enlaces — 6 enlaces */
.radar-links li:nth-child(1) a { animation: link-glow-pulse 4s ease-in-out infinite; animation-delay: 0s; }
.radar-links li:nth-child(2) a { animation: link-glow-pulse 4s ease-in-out infinite; animation-delay: 0.66s; }
.radar-links li:nth-child(3) a { animation: link-glow-pulse 4s ease-in-out infinite; animation-delay: 1.33s; }
.radar-links li:nth-child(4) a { animation: link-glow-pulse 4s ease-in-out infinite; animation-delay: 2s; }
.radar-links li:nth-child(5) a { animation: link-glow-pulse 4s ease-in-out infinite; animation-delay: 2.66s; }
.radar-links li:nth-child(6) a { animation: link-glow-pulse 4s ease-in-out infinite; animation-delay: 3.33s; }

/* Acceso Autorizado en radar — resalta más */
.radar-access {
    position: relative;
    z-index: 2;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.8px !important;
    color: var(--text-white) !important;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.35) !important;
    text-decoration: none;
    opacity: 0;
    animation: radar-scale-in 0.4s ease-out forwards;
    animation-delay: 0.5s;
    cursor: pointer;
}

.radar-access:hover,
.radar-access:active {
    color: var(--azenis-gold-glow) !important;
    text-shadow: 0 0 22px rgba(212, 175, 55, 0.7),
                 0 0 40px rgba(255, 215, 0, 0.4) !important;
}

/* Activar Defensa en radar — más grande y dorado */
.radar-defense {
    position: relative;
    z-index: 2;
    margin-top: 1.2rem;
    color: var(--azenis-gold);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 0.5rem 1rem;
    transition: color var(--transition-fast),
                text-shadow var(--transition-fast);
    opacity: 0;
    animation: radar-scale-in 0.4s ease-out forwards;
    animation-delay: 0.55s;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

.radar-defense:hover,
.radar-defense:active {
    color: var(--azenis-gold-glow);
    text-shadow: 0 0 22px rgba(212, 175, 55, 0.7),
                 0 0 40px rgba(255, 215, 0, 0.4);
}

/* Puntos de amenaza decorativos */
.radar-threats {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.radar-threat {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--azenis-gold);
    border-radius: 50%;
    animation: threat-pulse var(--threat-duration, 2s) ease-in-out infinite;
    animation-delay: var(--threat-delay, 0s);
}

/* ============================================= */
/* CLASES PARA VALIDACIÓN DE FORMULARIOS         */
/* ============================================= */
.input-error {
    border-color: #DC2626 !important;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2) !important;
}

input, textarea, select {
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

/* ============================================= */
/* FOOTER GLOBAL                                 */
/* ============================================= */
.azenis-footer {
    position: relative;
    z-index: 1;
    background: var(--azenis-glass);
    backdrop-filter: blur(25px) saturate(1.2);
    -webkit-backdrop-filter: blur(25px) saturate(1.2);
    padding: 2rem;
    text-align: center;
    margin-top: auto;
    overflow: hidden;
}

/* Línea base dorada ESTÁTICA */
.azenis-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent 0%,
        transparent 5%,
        var(--azenis-gold) 20%,
        var(--azenis-gold-glow) 40%,
        var(--azenis-gold-glow) 60%,
        var(--azenis-gold) 80%,
        transparent 95%,
        transparent 100%
    );
    z-index: 2;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-links {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 0.25rem 0;
    transition: color var(--transition-fast);
}

/* Sin subrayado, solo cambio de color a dorado */
.footer-link:hover {
    color: var(--azenis-gold);
    text-shadow: none;
}

.footer-link::after {
    display: none;
}

.footer-separator {
    color: rgba(212, 175, 55, 0.4);
    font-size: 0.9rem;
    user-select: none;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
    letter-spacing: 0.2px;
}

/* ============================================= */
/* RESPONSIVE - TABLET                           */
/* ============================================= */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
        margin-left: auto;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .azenis-header {
        padding: 0 1.5rem;
    }
    
    .logo-container img {
        height: 45px;
        max-width: 160px;
    }
    
    .azenis-header.scrolled .logo-container img {
        height: 38px;
        max-width: 145px;
    }
}

/* ============================================= */
/* RESPONSIVE - MÓVIL                            */
/* ============================================= */
@media (max-width: 480px) {
    .azenis-header {
        padding: 0 1rem;
    }
    
    .logo-container img {
        height: 36px;
        max-width: 120px;
    }
    
    .azenis-header.scrolled .logo-container img {
        height: 30px;
        max-width: 110px;
    }
    
    .hamburger {
        margin-left: auto;
        padding: 0.5rem 0.25rem 0.5rem 0.5rem;
    }
    
    .radar-container {
        width: 280px;
        height: 280px;
    }
    
    .radar-links a {
        font-size: 0.85rem;
        padding: 0.3rem 1.5rem;
    }
    
    .radar-links {
        gap: 0.25rem;
    }
    
    .radar-access {
        font-size: 1rem !important;
    }
    
    .radar-defense {
        font-size: 1.1rem;
    }
    
    .azenis-footer {
        padding: 1.5rem 1rem;
    }
    
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem 0.6rem;
    }
    
    .footer-separator {
        display: inline;
        font-size: 0.75rem;
    }
    
    .footer-link {
        padding: 0.25rem 0;
        font-size: 0.8rem;
    }
}