/* Fuentes E Importaciones */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

/* Variables Globales (Idénticas Al Main) */
:root {
    --color-primary: #0474C4;
    --color-primary-dark: #06457F;
    --color-secondary: #5379AE;
    --color-accent: #A8C4EC;
    --color-dark-teal: #2C444C;
    --color-cyan: #21D0FF;
    --color-background: #0A0F19;
    --color-text: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.98);
    --nav-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --color-nav-text: #2C444C;

    --font-main: 'Inter', sans-serif;
    --font-tech: 'Space Mono', monospace;
}

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

body {
    background-color: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-main);
    min-height: 100vh;
    overflow-x: hidden;
}

.text-cyan {
    color: var(--color-cyan);
}

/* Pantalla De Carga (Loader) */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-background);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    opacity: 1;
    visibility: visible;
}

.loader-logo {
    width: 120px;
    height: 50;
    animation: spin 1.2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.loader-wrapper.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Navbar — Idéntico Al Main */
.navbar {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1050px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    z-index: 1000;
    background: transparent;
    border-radius: 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border-radius: 0;
    padding: 0 30px;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-img {
    height: 130px;
    width: auto;
    object-fit: contain;
    margin-top: 4px;
}

/* CENTRO — Pastilla glassmorphism */
.navbar-center {
    display: flex;
    gap: 30px;
    align-items: center;
    height: 45px;
    background: rgba(10, 14, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 0 25px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: inset 0 -1px 2px rgba(255, 255, 255, 0.05), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #a0a0a0;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

/* Enlace Destacado (HackaToB) */
.nav-link.highlight-link,
.mobile-link.highlight-link {
    color: var(--color-primary);
    font-weight: 800;
}

.nav-link.highlight-link:hover,
.mobile-link.highlight-link:hover {
    color: var(--color-primary-dark);
}

.disabled-link {
    pointer-events: none !important;
    opacity: 0.4 !important;
    cursor: not-allowed !important;
    text-decoration: line-through !important;
}

/* Dropdown estilo Duna */
.dropdown-duna {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    width: max-content;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-duna::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-item:hover .dropdown-duna {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content h4 {
    color: var(--color-primary-dark);
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.dropdown-content p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* DERECHA */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Selector de Idioma tipo switch */
.lang-selector {
    position: relative;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3px;
    width: 64px;
    height: 32px;
    cursor: pointer;
    justify-content: space-between;
}

.lang-text {
    font-family: var(--font-main);
    font-size: 0.75rem;
    font-weight: 700;
    color: #a0a0a0;
    z-index: 2;
    width: 50%;
    text-align: center;
    transition: color 0.3s;
    user-select: none;
    display: block;
}

.lang-text.active {
    color: #000;
}

.lang-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 29px;
    height: 26px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.lang-selector[data-lang="EN"] .lang-slider {
    transform: translateX(29px);
}

/* Botones */
.btn {
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    box-shadow: 0 4px 15px rgba(4, 116, 196, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(4, 116, 196, 0.5);
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}

/* Hamburger Menu & Responsive */
.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    left: 11px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger {
    top: 20px;
}

.hamburger::before {
    content: '';
    top: -7px;
    left: 0;
}

.hamburger::after {
    content: '';
    top: 7px;
    left: 0;
}

.menu-toggle.active .hamburger {
    background-color: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .hamburger::after {
    transform: translateY(-7px) rotate(-45deg);
}

/* Menú Móvil */
.mobile-nav {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    width: 90%;
    max-width: 400px;
    background: var(--glass-bg);
    border-radius: 24px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mobile-link {
    text-decoration: none;
    color: var(--color-nav-text);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.3s;
}

.mobile-link:hover,
.mobile-link.active {
    color: var(--color-primary);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

@media (max-width: 980px) {
    .navbar {
        height: 70px;
        padding: 0 15px;
    }

    .navbar-center,
    .navbar-right .btn-primary {
        display: none;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Hero Del Programa */
.programa-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    background-image: url('../imagenes/programa/FondoPrograma.webp');
    /* Fallback IE/Edge viejo */
    background-image: -webkit-image-set(url('../imagenes/programa/FondoPrograma.webp') type('image/webp'),
            url('../imagenes/programa/FondoPrograma.webp') type('image/jpeg'));
    background-image: image-set(url('../imagenes/programa/FondoPrograma.webp') type('image/webp'),
            url('../imagenes/programa/FondoPrograma.webp') type('image/jpeg'));
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.programa-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 15, 25, 0.4) 0%,
            rgba(10, 15, 25, 0.7) 60%,
            rgba(10, 15, 25, 0.95) 100%);
}

.programa-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    width: 95%;
    margin: 0 auto;
    padding: 0 10px;
}

.programa-eyebrow {
    display: inline-block;
    font-family: var(--font-tech);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-cyan);
    margin-bottom: 16px;
    opacity: 0.9;
}

.programa-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.programa-slogan {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    max-width: 550px;
    margin-bottom: 30px;
}

.programa-dates {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.date-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(33, 208, 255, 0.1);
    border: 1px solid rgba(33, 208, 255, 0.25);
    color: var(--color-cyan);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(8px);
}

.date-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-cyan);
}

.date-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
}

/* Agenda / Programa */
.schedule-section {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Tabs de días */
.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.schedule-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    padding: 18px 40px;
    border-radius: 16px;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.schedule-tab:hover {
    border-color: rgba(33, 208, 255, 0.3);
    color: #fff;
    background: rgba(33, 208, 255, 0.05);
}

.schedule-tab.active {
    background: rgba(33, 208, 255, 0.1);
    border-color: var(--color-cyan);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(33, 208, 255, 0.15);
}

.tab-day {
    font-size: 1.1rem;
    font-weight: 700;
}

.tab-date {
    font-size: 0.85rem;
    margin-top: 4px;
    opacity: 0.7;
}

/* Timeline */
.schedule-day {
    display: none;
}

.schedule-day.active-day {
    display: block;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-cyan), rgba(33, 208, 255, 0.1));
}

.timeline-item {
    position: relative;
    padding-left: 65px;
    margin-bottom: 36px;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 14px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-background);
    border: 3px solid var(--color-cyan);
    box-shadow: 0 0 12px rgba(33, 208, 255, 0.5);
    z-index: 2;
    transition: transform 0.3s;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.2);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 28px 30px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(33, 208, 255, 0.2);
}

.time-badge {
    display: inline-block;
    background: rgba(33, 208, 255, 0.08);
    color: var(--color-cyan);
    padding: 5px 14px;
    border-radius: 20px;
    font-family: var(--font-tech);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 14px;
    border: 1px solid rgba(33, 208, 255, 0.15);
    letter-spacing: 0.5px;
}

.talk-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.talk-desc {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin-bottom: 16px;
    font-size: 0.97rem;
}

.talk-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.talk-tag-cyan {
    background: rgba(33, 208, 255, 0.1);
    color: var(--color-cyan);
    border-color: rgba(33, 208, 255, 0.2);
}

.talk-speaker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.talk-speaker img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(33, 208, 255, 0.3);
}

.speaker-details h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 3px;
    font-weight: 600;
}

.speaker-details p {
    color: var(--color-cyan);
    font-size: 0.83rem;
    opacity: 0.85;
}

/* Footer */
.site-footer {
    background-color: #010204;
    color: #a0a5b0;
    padding: 80px 0 0 0;
    margin-top: 100vh;
    /* Espacio para el cierre "MASTER THE CHAOS" */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col-brand .footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 250px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: all 0.3s ease;
}

.social-link-footer svg {
    width: 16px;
    height: 16px;
}

.social-link-footer:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
}

.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #a0a5b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-highlight-link {
    color: var(--color-accent) !important;
    font-weight: 600;
}

.footer-address {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
    padding: 24px 6%;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copy {
    font-size: 0.85rem;
    color: #7a7f8a;
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .schedule-section {
        padding: 60px 5%;
    }

    .schedule-tabs {
        flex-direction: column;
        align-items: center;
    }

    .schedule-tab {
        width: 100%;
        max-width: 320px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-dot {
        left: 6px;
        top: 16px;
    }

    .timeline-item {
        padding-left: 48px;
    }

    .timeline-content {
        padding: 22px 20px;
    }

    .talk-title {
        font-size: 1.15rem;
    }

    .programa-hero {
        min-height: 60vh;
        padding-bottom: 60px;
    }

    .programa-dates {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .date-separator {
        display: none;
    }
}

@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .footer-col-brand .footer-logo,
    .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }
}

/* ==================================================== */
/* STORYTELLING LAYER (SCROLLYTELLING)                  */
/* ==================================================== */

#storytelling-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Asegurar que todo el contenido del programa esté por encima */
.programa-hero,
.schedule-section {
    position: relative;
    z-index: 2;
}

/* Navbar y loader ya tienen position:fixed, solo subir z-index */
.mobile-nav {
    z-index: 999;
}

#storytelling-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#story-year-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.story-year {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-tech);
    font-size: 25vw;
    font-weight: 800;
    color: rgba(33, 208, 255, 0.04);
    text-align: center;
    opacity: 0;
    user-select: none;
    letter-spacing: -2vw;
    white-space: nowrap;
    transition: opacity 0.6s ease;
}

#story-final-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.master-chaos-text {
    font-size: 5rem;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 2px;
    color: var(--color-text);
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.tob-ati-text {
    font-family: var(--font-tech);
    color: var(--color-cyan);
    font-size: 1.3rem;
    letter-spacing: 4px;
    margin: 0;
}

/* Timeline cards active glow */
.timeline-item {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item.active-event .timeline-content {
    border-color: rgba(33, 208, 255, 0.4) !important;
    box-shadow: 0 0 25px rgba(33, 208, 255, 0.1);
}

.timeline-item.active-event .timeline-dot {
    background-color: var(--color-cyan) !important;
    box-shadow: 0 0 12px var(--color-cyan);
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
    .story-year {
        font-size: 35vw;
    }

    .master-chaos-text {
        font-size: 2.5rem;
    }

    .tob-ati-text {
        font-size: 0.9rem;
    }
}

/* Coordinadores Button and Tooltip (from main/style.css) */
.coordinators-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.coordinators-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    color: var(--color-primary);
}

.coordinators-btn svg {
    width: 20px;
    height: 20px;
}

.tooltip-text {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 250px;
    background: #ffffff;
    color: #666;
    padding: 15px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    text-align: left;
}

.tooltip-text strong {
    color: var(--color-primary-dark);
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
}

.tooltip-text::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 16px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    transform: rotate(45deg);
}

.coordinators-btn:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-actions .coordinators-btn {
    display: flex;
    margin-bottom: 10px;
}
.mobile-actions .tooltip-text {
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
}
.mobile-actions .tooltip-text::before {
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}
.mobile-actions .coordinators-btn:hover .tooltip-text {
    transform: translateX(-50%) translateY(0);
}