body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #000;
    font-family: "Inter", Arial, sans-serif;
    color: #fff;
    overflow-x: hidden;
}

.header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    height: 80px;
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
    box-sizing: border-box;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(6px);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    height: 100%;
    max-height: 100px;
    width: auto;
    cursor: pointer;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    background: transparent;
    padding: 7px 16px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.header-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.header-btn:active {
    transform: scale(0.96);
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    gap: 50px;
}

.hero-box {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 60px 30px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-basic,
.btn-blue {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 8px;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-family: "Montserrat", sans-serif;
}

/* Basic button */
.btn-basic {
    background: transparent;
    color: #fff;
}

.btn-basic:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Blue button */
.btn-blue {
    background: #2ca4fc;
    color: #fff;
    border-color: #2ca4fc;
    box-shadow: 0 0 10px rgba(44, 164, 252, 0.4);
}

.btn-blue:hover {
    background: #5cb3ff;
    box-shadow: 0 0 15px rgba(92, 179, 255, 0.6);
    transform: translateY(-2px);
}


.stars {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: 0.15;
    animation: driftStars 120s linear infinite;
    top: -50%;
    left: -50%;
}

@keyframes driftStars {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(100px, -100px);
    }
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.revenue-box {
    padding: 35px 30px 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    text-align: left;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.revenue-vision {
    color: #fff;
}

.revenue-vision h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.revenue-vision p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.5;
    max-width: 650px;
}

.revenue-inner-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.revenue-inner-box h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #fff;
}

.revenue-inner-box .revenue-amount {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: #333;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #222 #0a0a0a;
}

.design-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.design-text {
    flex: 1.2;
    min-width: 420px;
    text-align: left;
}

.design-preview {
    flex: 0.8;
    min-width: 300px;
}

.design-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    position: relative;
    left: -5px;
}

.design-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    color: #ddd;
    font-size: 1.05rem;
    line-height: 1.4;
    white-space: nowrap;
}

.list-icon {
    font-size: 1.1rem;
    color: #2ca4fc;
    line-height: 1;
    position: relative;
    top: 1px;
    flex-shrink: 0;
}

.design-text h2 {
    color: #ccc;
    font-weight: 500;
    font-size: 1.8rem;
}

.design-text h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 20px;
}

.design-footer {
    color: #888;
    font-size: 0.9rem;
}

.contact-link {
    color: #2ca4fc;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.contact-link:hover {
    border-color: #2ca4fc;
}

.design-section {
    position: relative;
    margin-top: -30px;
    width: 90%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 70px 40px 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.design-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.design-text {
    flex: 1;
    min-width: 260px;
}

.design-tag {
    position: absolute;
    top: 20px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.15rem;
    font-weight: 500;
    color: #fff;
    background: rgba(44, 164, 252, 0.1);
    border: 1px solid rgba(44, 164, 252, 0.3);
    padding: 6px 14px;
    border-radius: 8px;
    letter-spacing: 0.3px;
    box-shadow: 0 0 10px rgba(44, 164, 252, 0.2);
}

.design-tag .material-symbols-outlined {
    font-size: 1.4rem;
    color: #2ca4fc;
    vertical-align: middle;
}

.design-preview {
    flex: 1;
    min-width: 320px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.preview-sub {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preview-box h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
}

.dashboard-preview {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 200px;
    margin-bottom: 15px;
}

.dash-sidebar {
    width: 60px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 0;
    gap: 14px;
}

.dash-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-bottom: 8px;
}

.dash-menu {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.3s, transform 0.2s;
}

.dash-menu:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.dash-menu.active {
    background: #2ca4fc;
}

.dash-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
}

.dash-topbar {
    height: 32px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
}

.dash-search-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #bbb;
    font-size: 0.75rem;
}

.search-icon {
    opacity: 0.6;
}

.dash-user {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2ca4fc;
}

.dash-content {
    flex: 1;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dash-header h5 {
    color: #fff;
    font-size: 0.85rem;
    margin: 0;
}

.dash-header p {
    color: #aaa;
    font-size: 0.7rem;
    margin: 2px 0 8px 0;
}

.dash-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.stat-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 6px 8px;
    margin: 0 4px;
    text-align: center;
}

.stat-label {
    color: #aaa;
    font-size: 0.7rem;
    margin-bottom: 3px;
}

.stat-value {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}

.dash-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4px;
    height: 50px;
}

.dash-chart .bar {
    flex: 1;
    background: linear-gradient(180deg, #2ca4fc, #1b6ed2);
    border-radius: 3px;
    opacity: 0.8;
    transition: height 0.3s, opacity 0.2s;
}

.dash-chart .bar:hover {
    opacity: 1;
}

.preview-note {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
}

.material-symbols-outlined.icon {
    font-size: 1.1rem;
    vertical-align: middle;
    margin-right: 6px;
    color: #2ca4fc;
}

.material-symbols-outlined.search-icon {
    font-size: 1rem;
    vertical-align: middle;
    color: #bbb;
}

.contact-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-method {
    flex: 1;
    min-width: 260px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.contact-method:hover {
    transform: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.contact-method h3 {
    font-size: 1.1rem;
    color: #2ca4fc;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: #fff;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}

.contact-item:hover {
    color: #2ca4fc;
}

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(44, 164, 252, 0.9);
    color: #f2f2f2;
    line-height: 1.5;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 1.1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

.discord-logo {
    width: 20px;
    height: 20px;
    filter: invert(54%) sepia(79%) saturate(4033%) hue-rotate(188deg) brightness(100%) contrast(97%);
}



.faq-section {
    width: 90%;
    max-width: 850px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 30px;
    text-align: left;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-box:hover {
    border-color: rgba(44, 164, 252, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(44, 164, 252, 0.1);
}

.faq-box h3 {
    color: #2ca4fc;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.faq-box p {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.6;
}

.discord-dashboard {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 300px;
    transition: transform 0.3s ease;
}

.discord-dashboard:hover {
    transform: scale(1.01);
}

.discord-sidebar {
    width: 160px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-header {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-btn {
    background: transparent;
    color: #ccc;
    border: none;
    padding: 10px 16px;
    text-align: left;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.sidebar-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #2ca4fc;
}

.sidebar-btn.active {
    background: rgba(44, 164, 252, 0.15);
    color: #2ca4fc;
    font-weight: 600;
}

.discord-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
}

.discord-topbar {
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dash-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
}

.online-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2ca4fc;
    box-shadow: 0 0 10px #2ca4fc;
}

.discord-content {
    flex: 1;
    padding: 15px;
}

.hidden {
    display: none !important;
}

.small-chart {
    position: relative;
    width: 100%;
    height: 120px;
}

.small-chart canvas {
    border-radius: 10px;
}

.discord-content h5 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.chart-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
}

.ticket-list {
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 10px;
    font-size: 0.85rem;
}

.ticket-list .ticket-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    color: #aaa;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 6px;
    margin-bottom: 10px;
    font-weight: 500;
}

.ticket-create {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    margin-bottom: 15px;
    transition: all 0.2s ease;
    display: block;
}

.ticket-create:hover {
    background: rgba(44,164,252,0.2);
    border-color: rgba(44,164,252,0.4);
}

.ticket-list .ticket-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 8px 10px;
    transition: background 0.2s ease;
}

.ticket-list .ticket-item:hover {
    background: rgba(255,255,255,0.06);
}

.ticket-list .ticket-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.ticket-list .ticket-icon {
    font-size: 1.3rem;
    color: #f5d442;
}

.ticket-list .ticket-name {
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0;
}

.ticket-list .ticket-sub {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
}

.ticket-list .ticket-status {
    justify-self: center;
    background: rgba(0,255,100,0.15);
    color: #00ff88;
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

.ticket-list .ticket-count {
    color: #fff;
    font-weight: 500;
    text-align: right;
}

.ticket-search input {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #ccc;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.ticket-log {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 8px;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ticket-log .ticket-header {
    display: grid;
    grid-template-columns: 1.1fr 0.2fr 1fr;
    align-items: center;
    color: #aaa;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding-bottom: 4px;
    margin-bottom: 2px;
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.ticket-log .ticket-item {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 6px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.ticket-log .ticket-item:hover {
    background: rgba(255,255,255,0.05);
}

.ticket-log .ticket-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 500;
    font-size: 0.8rem;
}

.ticket-log .ticket-icon {
    font-size: 1.1rem;
    color: #f5d442;
}

.ticket-log .ticket-status {
    justify-self: center;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
}

.ticket-log .ticket-status.active {
    background: rgba(0,255,100,0.15);
    color: #00ff88;
}

.ticket-log .ticket-status.closed {
    background: rgba(255,0,0,0.15);
    color: #ff5c5c;
}

.ticket-log .ticket-user {
    color: #bbb;
    font-size: 0.78rem;
    text-align: right;
}

.ticket-search {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.ticket-search input {
    width: 92%;
    padding: 5px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: #ccc;
    font-size: 0.78rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.ticket-search input:focus {
    outline: none;
    border-color: rgba(44,164,252,0.4);
    background: rgba(255,255,255,0.06);
}

.settings-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.settings-section {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 15px;
    transition: background 0.2s ease;
}

.settings-section:hover {
    background: rgba(255,255,255,0.06);
}

.settings-header h6 {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.settings-header p {
    margin: 2px 0 12px;
    color: #aaa;
    font-size: 0.85rem;
}

.settings-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.settings-field label {
    color: #ccc;
    font-size: 0.85rem;
}

.settings-field select {
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 8px;
    font-size: 0.85rem;
    cursor: pointer;
}

.cooldown-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cooldown-control button {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cooldown-control button:hover {
    background: rgba(44,164,252,0.25);
}

.cooldown-control span {
    min-width: 20px;
    text-align: center;
    color: #fff;
    font-weight: 500;
}

.revenue-box {
    position: relative;
}

.vision-tag {
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2ca4fc;
    background: rgba(44,164,252,0.08);
    border: 1px solid rgba(44,164,252,0.3);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.info-icon:hover {
    transform: scale(1.1);
    background: rgba(44,164,252,0.15);
    border-color: rgba(44,164,252,0.5);
}

.info-tooltip {
    position: absolute;
    top: -5px;
    right: 35px;
    background: rgba(0, 0, 0, 0.85);
    color: #a7cfff;
    border: 1px solid rgba(44,164,252,0.4);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    width: max-content;
    max-width: 240px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-5px);
    box-shadow: 0 0 12px rgba(44,164,252,0.2);
    backdrop-filter: blur(4px);
    z-index: 10;
}

.vision-tag:hover .info-tooltip {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

