/* Базові налаштування */
body {
    
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at center, #04151a 0%, #000000 100%);
    color: white;
    font-family: 'Inter', sans-serif;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    -webkit-font-smoothing: antialiased;
}

/* Шрифт для заголовків та логотипа */
h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Montserrat', sans-serif;
}

/* Верхнє меню */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    z-index: 1000;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
}

.logo span {
    color: #00e5ff;
    font-weight: 500;
}

/* Навігація та перемикач мов */
.header-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.lang-switcher span {
    cursor: pointer;
    transition: color 0.3s;
}

.lang-switcher span:hover, .lang-switcher span.active {
    color: #00e5ff;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.lang-sep {
    pointer-events: none;
    color: #333;
}

.mobile-lang {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    justify-content: center;
}

/* Кнопка Гамбургер-меню */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.mobile-menu-btn svg {
    fill: #fff;
    width: 28px;
    height: 28px;
    transition: fill 0.3s ease;
}

.mobile-menu-btn:hover svg {
    fill: #00e5ff;
}

/* Головна навігація сайту */
.nav-links {
    display: flex;
    gap: 50px; /* Збільшена відстань між кнопками */
    font-size: 14px;
    font-weight: 300;
}

/* Центрування меню та захист від стискання (ТІЛЬКИ для комп'ютерів) */
@media (min-width: 769px) {
    .nav-links {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
        white-space: nowrap; /* Забороняє переносити слова */
        width: max-content; /* Змушує браузер зберігати повну ширину меню з усіма відступами */
    }
}

.nav-links span {
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links span:hover {
    color: #00e5ff;
}

.nav-links span.active {
    color: #fff;
}

.nav-links span.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00e5ff;
    box-shadow: 0 0 10px #00e5ff;
}

/* Обгортка каруселі */
.carousel-wrapper {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, filter 0.5s ease, transform 0.5s ease;
    width: 100%;
    z-index: 10;
}

.carousel-container {
    position: absolute;
    width: 100%;
    height: 100%;
    perspective: 1200px;
    overflow: hidden;
}

#card-track {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    z-index: 10;
}

/* Стрілки навігації */
.arrow-btn {
    background: transparent;
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -22px; 
    z-index: 50;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-btn:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: #00e5ff;
    color: #00e5ff;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.arrow-btn.left { left: 50%; transform: translateX(-400px); }
.arrow-btn.right { left: 50%; transform: translateX(356px); }

/* Архітектура картки */
.card {
    position: absolute;
    width: 280px;
    height: 500px;
    top: 50%;
    left: 50%;
    margin-top: -250px;
    margin-left: -140px; 
    border-radius: 24px;
    background: #000;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease, filter 0.6s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.card.active {
    border-color: #00e5ff;
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.6), inset 0 0 30px rgba(0, 229, 255, 0.2), 0 0 40px 10px rgba(0,0,0,0.6);
    z-index: 20 !important; 
}

.card-inner {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
    transition: filter 0.6s ease;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    isolation: isolate; 
}

.card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transform: translateZ(0); 
}

.lighting-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: background 0.6s ease, opacity 0.6s ease;
    z-index: 5; 
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 6;
}

.card.active .card-info {
    opacity: 1;
}

.card-info h4 {
    margin: 0 0 5px 0;
    font-size: 11px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.card-info h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
}

/* Кнопка звуку */
.mute-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 20; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto; /* Дозволяємо клікати по ній */
    backdrop-filter: blur(5px);
}

.mute-btn:hover {
    background: rgba(0, 229, 255, 0.2);
    border-color: #00e5ff;
}

.mute-btn svg {
    fill: #fff;
    width: 22px;
    height: 22px;
}

/* Ховаємо кнопку звуку на неактивних картках (тих, що ззаду) */
.card:not(.active) .mute-btn {
    opacity: 0;
    pointer-events: none;
}


/* Нижня навігація */
.bottom-nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 75px; 
    z-index: 100;
    width: 100%;
    position: relative;
}

.category-label {
    color: #aaa;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 12px;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.bottom-nav {
    display: flex;
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15), inset 0 0 15px rgba(0, 229, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
    backdrop-filter: blur(15px);
    align-items: center;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: #888;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 40px;
    background: transparent;
    border: 1px solid transparent;
    white-space: nowrap;
}

.category-btn svg {
    fill: currentColor;
    width: 16px;
    height: 16px;
    transition: all 0.4s ease;
}

.nav-divider {
    width: 1px;
    height: 20px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    margin: 0 2px;
}

.category-btn.active {
    background: rgba(0, 229, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.category-btn.active svg {
    fill: #00e5ff;
    filter: drop-shadow(0 0 5px rgba(0, 229, 255, 0.5));
}

/* Модальне вікно */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: rgba(15, 20, 25, 0.85);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 20px;
    padding: 40px 50px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 30px rgba(0, 229, 255, 0.1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content::-webkit-scrollbar { display: none; }
.modal-content { -ms-overflow-style: none; scrollbar-width: none; }

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-content h2 {
    color: #00e5ff;
    margin-top: 0;
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 20px;
}

#modal-text-content {
    color: #ccc;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 30px;
}

/* Прайс та Калькулятор */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    font-size: 13px;
}

.price-table th, .price-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 8px;
    text-align: left;
    color: #ccc;
}

.price-table th {
    color: #00e5ff;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}

.price-table td:last-child {
    color: #fff;
    font-weight: 500;
}

/* Підзаголовки секцій у прайсі */
.price-section-title {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-top: 25px;
    margin-bottom: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 229, 255, 0.3);
    padding-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Прибираємо відступ для першого підзаголовка */
#modal-price-content .price-section-title:first-child {
    margin-top: 0;
}

.calculator {
    background: rgba(0, 0, 0, 0.4);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    text-align: left;
    margin-bottom: 25px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.calc-row label {
    color: #aaa;
    font-size: 14px;
}

/* Ховаємо потворні стандартні стрілочки браузера */
.calc-input::-webkit-outer-spin-button,
.calc-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.calc-input[type=number] {
    -moz-appearance: textfield; /* Для Firefox */
}

/* Новий контейнер для кнопок та цифри */
.number-control {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Ефект світіння при натисканні */
.number-control:focus-within {
    border-color: #00e5ff;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
    background: rgba(0, 229, 255, 0.05);
}

/* Наші елегантні кнопки + та - */
.num-btn {
    background: transparent;
    border: none;
    color: #00e5ff;
    font-size: 18px;
    font-weight: 300;
    width: 32px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.num-btn:hover {
    background: rgba(0, 229, 255, 0.15);
    color: #fff;
}

/* Стиль самої цифри посередині */
.calc-input {
    background: transparent;
    border: none;
    color: white;
    width: 30px;
    text-align: center;
    outline: none;
    font-size: 16px;
    padding: 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.checkbox-container input {
    accent-color: #00e5ff;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.calc-total-box {
    text-align: center;
    margin-top: 20px;
}

.calc-total-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calc-total-price {
    font-size: 32px;
    color: #00e5ff;
    font-weight: 500;
    margin-top: 5px;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.calc-original-price {
    font-size: 18px;
    color: #888;
    text-decoration: line-through; /* Саме це робить текст перекресленим */
    margin-top: 8px;
    margin-bottom: -5px;
}

.close-btn {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 40px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: #00e5ff;
    color: #00e5ff;
}

/* Нова стилізація секції контактів */
#modal-contact-description {
    color: #ccc;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 25px;
}

/* Вертикальні кнопки (Телефон та Email) */
.contact-actions-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.contact-action-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 16px;
    padding: 14px 20px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.contact-action-btn:hover {
    background: rgba(0, 229, 255, 0.08);
    border-color: #00e5ff;
    box-shadow: 0 5px 20px rgba(0, 229, 255, 0.2);
    transform: translateY(-2px);
}

.contact-action-btn svg {
    width: 24px;
    height: 24px;
    fill: #00e5ff;
    flex-shrink: 0;
}

.contact-action-btn .btn-text {
    display: flex;
    flex-direction: column;
}

.contact-action-btn .label {
    font-size: 11px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-action-btn .value {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Розділювач "Соцмережі" */
.social-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0 15px;
    color: #888;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-divider::before,
.social-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-divider span {
    padding: 0 15px;
}

/* Сітка соцмереж (твої стилі збережені) */
.social-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 10px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 22px 10px;
    color: #aaa;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.social-card svg {
    width: 30px;
    height: 30px;
    fill: #888;
    transition: all 0.3s ease;
}

.social-card span {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.social-card.instagram:hover {
    border-color: #e1306c;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.35);
}
.social-card.instagram:hover svg { fill: #e1306c; }

.social-card.whatsapp:hover {
    border-color: #25d366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.35);
}
.social-card.whatsapp:hover svg { fill: #25d366; }

.social-card.facebook:hover {
    border-color: #1877f2;
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.35);
}
.social-card.facebook:hover svg { fill: #1877f2; }

/* Стиль для підказки (Tooltip) скопійованого номера */
.copy-tooltip {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) translateX(10px);
    background: #00e5ff;
    color: #000;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}
.phone-btn.copied .copy-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Посилений відступ для кнопки закриття (Працює на десктопі та мобільному) */
.close-modal-btn, 
.modal .close-btn { 
    margin-top: 70px !important; /* Збільшили до 70px і додали !important для примусового виконання */
}

/* ЄДИНИЙ БЛОК Мобільної Адаптації */
@media (max-width: 768px) {
    header { padding: 20px 30px; }
    .logo { font-size: 20px; }
    
    .desktop-lang { display: none; }
    .mobile-menu-btn { display: block; }
    
    .nav-links { 
        position: absolute;
        top: 70px;
        right: 25px;
        background: rgba(10, 15, 20, 0.95);
        border: 1px solid rgba(0, 229, 255, 0.3);
        border-radius: 12px;
        flex-direction: column;
        gap: 15px;
        padding: 20px 30px;
        align-items: center;
        opacity: 0;
        transform: translateY(-15px);
        pointer-events: none;
        transition: all 0.3s ease;
        backdrop-filter: blur(15px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.8);
    }

    .nav-links.active-menu {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

    .nav-links span { font-size: 16px; padding: 5px 10px; }
    .mobile-lang { display: flex; }

    .card { 
        width: 220px; 
        height: 400px; 
        margin-top: -200px;
        margin-left: -110px;
    }
    .card-inner { -webkit-mask-image: none; }
    .arrow-btn { display: none; }
    
    .bottom-nav-container { margin-bottom: 45px; }
    .category-label { font-size: 9px; }
    
    .bottom-nav { 
        max-width: 98%; 
        overflow-x: visible; 
        flex-wrap: nowrap; 
        justify-content: center;
        padding: 4px;
    }
    .category-btn { padding: 8px 6px; font-size: 10px; gap: 4px; }
    .category-btn svg { width: 14px; height: 14px; }

    .card.active {
        box-shadow: 0 0 35px rgba(0, 229, 255, 0.6), inset 0 0 20px rgba(0, 229, 255, 0.2), 0 0 50px 20px rgba(0,0,0,0.8);
    }

    .modal-content { padding: 30px 20px; }
    .price-table { font-size: 11px; }
    .price-table th, .price-table td { padding: 8px 4px; }
    .calc-input { width: 50px; }

    /* Оптимізація контактів для мобільних */
    .contact-action-btn { padding: 12px 15px; gap: 12px; }
    .contact-action-btn .value { font-size: 14px; }
    .social-links-grid { gap: 10px; }
    .social-card { padding: 15px 5px; }
    .social-card span { font-size: 11px; }
    .social-card svg { width: 24px; height: 24px; }

    
}

/* ========================================= */
/* СТИЛІ ДЛЯ НЕОНОВИХ ПІДКАЗОК (TOOLTIPS)     */
/* ========================================= */

/* Контейнер для назви пакету */
.tooltip-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: #00e5ff;
    font-weight: 500;
    border-bottom: 1px dotted rgba(0, 229, 255, 0.5);
    transition: all 0.3s ease;
    user-select: none;
}

.tooltip-trigger:hover {
    color: #white;
    border-bottom-color: #white;
}

/* Маленька кругла іконка ⓘ */
.info-icon {
    font-size: 11px;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 229, 255, 0.8);
}

/* Десктопна версія скляного віконця підказки */
.tooltip-box {
    display: none;
    position: absolute;
    bottom: 135%; /* З'являється чітко над текстом */
    left: 0;
    background: rgba(5, 20, 25, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.25);
    padding: 12px 16px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 13px;
    width: 250px;
    white-space: normal; /* Дозволяємо тексту красиво переноситися */
    z-index: 9999;
    line-height: 1.4;
    font-weight: 300;
}

/* Анімація появи */
.tooltip-box.active {
    display: block;
    animation: tooltipFadeIn 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes tooltipFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 📱 АДАПТИВ ДЛЯ МОБІЛЬНИХ СМАРТФОНІВ */
@media (max-width: 768px) {
    /* Робимо так, щоб підказка ставала красивою карткою по центру екрану телефона */
    .tooltip-box {
        position: fixed;
        top: 50%;
        left: 50%;
        bottom: auto;
        transform: translate(-50%, -50%) !important;
        width: 80%;
        max-width: 290px;
        text-align: center;
        box-shadow: 0 0 35px rgba(0, 229, 255, 0.4);
        background: rgba(10, 25, 30, 0.98);
        padding: 16px 20px;
        border-radius: 12px;
    }
    
    .tooltip-box.active {
        animation: tooltipMobileIn 0.25s ease-out;
    }
}

@keyframes tooltipMobileIn {
    from { opacity: 0; scale: 0.9; transform: translate(-50%, -45%); }
    to { opacity: 1; scale: 1; transform: translate(-50%, -50%); }
}
