/* LOADING SCREEN */
.loading-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000;
}

.neon-text-wrapper {
    margin-top: 50px;
}

/* NEON TEXT ANIMATIONS */
.neon-text {
    font-family: 'Exo 2', 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-shadow:
        0 0 1px #ffffff,
        0 0 3px rgba(255, 255, 255, 0.8),
        0 0 6px rgba(255, 255, 255, 0.5),
        0 0 10px rgba(255, 255, 255, 0.2);
    animation: subtleFlicker 4s infinite alternate;
}

.neon-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px);
    animation: slideUp 0.8s ease-out forwards;
}

.neon-text span:nth-child(1) {
    animation-delay: 0.2s;
}

.neon-text span:nth-child(2) {
    animation-delay: 0.4s;
}

.neon-text span:nth-child(3) {
    animation-delay: 0.6s;
}

.neon-text span:nth-child(4) {
    animation-delay: 0.8s;
}

.neon-text span:nth-child(5) {
    animation-delay: 1.0s;
}

.neon-text span:nth-child(6) {
    animation-delay: 1.2s;
}

.neon-text span:nth-child(7) {
    animation-delay: 1.4s;
}

.neon-text span:nth-child(8) {
    animation-delay: 1.6s;
}

.neon-text span:nth-child(9) {
    animation-delay: 1.8s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtleFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow:
            0 0 1px #ffffff,
            0 0 3px rgba(255, 255, 255, 0.8),
            0 0 6px rgba(255, 255, 255, 0.5),
            0 0 10px rgba(255, 255, 255, 0.2);
    }
    20%, 24%, 55% {
        text-shadow:
            0 0 0.5px #ffffff,
            0 0 2px rgba(255, 255, 255, 0.6),
            0 0 4px rgba(255, 255, 255, 0.3),
            0 0 8px rgba(255, 255, 255, 0.1);
    }
}

.neon-text.light {
    text-shadow:
        0 0 1px rgba(255, 255, 255, 0.8),
        0 0 2px rgba(255, 255, 255, 0.4),
        0 0 4px rgba(255, 255, 255, 0.2);
    animation: verySubtleFlicker 4s infinite alternate;
}

@keyframes verySubtleFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow:
            0 0 1px rgba(255, 255, 255, 0.8),
            0 0 2px rgba(255, 255, 255, 0.4),
            0 0 4px rgba(255, 255, 255, 0.2);
    }
    20%, 24%, 55% {
        text-shadow:
            0 0 0.5px rgba(255, 255, 255, 0.6),
            0 0 1px rgba(255, 255, 255, 0.3),
            0 0 2px rgba(255, 255, 255, 0.1);
    }
}

/* RESPONSIVE NEON TEXT */
.neon-text {
    font-size: 4.5rem;
}

@media (max-width: 1024px) {
    .neon-text {
        font-size: 3.5rem;
        letter-spacing: 0.12em;
    }
}

@media (max-width: 768px) {
    .neon-text {
        font-size: 2.8rem;
        letter-spacing: 0.1em;
    }
    .neon-text-wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .neon-text {
        font-size: 2.2rem;
        letter-spacing: 0.08em;
    }
    .neon-text-wrapper {
        margin-top: 30px;
    }
    .neon-text {
        text-shadow:
            0 0 4px #fff,
            0 0 8px #fff,
            0 0 15px #fff,
            0 0 25px #6abfd1,
            0 0 35px #56afbf,
            0 0 45px #429fad,
            0 0 60px #2A7787,
            0 0 75px #2A7787;
    }
}

/* SUBTLE GLOW */
.title {
    font-size: 45px !important;
}

.service-title {
    font-size: 35px !important;
}

.subtle-glow {
    text-shadow:
        0 0 2px #ffffff, /* Increased spread */
        0 0 5px rgba(255, 255, 255, 0.9), /* Increased spread and opacity */
        0 0 10px rgba(255, 255, 255, 0.6), /* Increased spread */
        0 0 15px rgba(255, 255, 255, 0.3); /* Increased spread */
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fefefe; /* Lighter white */
}


/* SHARP CORNERS FOR HERO ELEMENTS */
.info-box,
.hero-social-proof {
    border-radius: 0;
}

.info-box[class*="br-"] {
    border-radius: 0;
}

.counter-info {
    border-radius: 0;
}

.counter-info[class*="br-"] {
    border-radius: 0;
}

.counter-info .icon-box {
    border-radius: 0;
}

.info-box.jump3 {
    border-radius: 8px !important;
}

.info-box.jump3 .hero-social-proof {
    border-radius: 8px !important;
}

/* FULL-WIDTH HERO SECTION */
.tv-hero-section .hero-inner {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    border-radius: 0 !important;
}

.hero-inner.mx-30,
.hero-inner.xxl-mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.tv-hero-section .container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.tv-hero-section .row {
    padding-left: 5vw;
    padding-right: 5vw;
    margin: 0;
}

.tv-hero-section .hero-inner.mt-30,
.tv-hero-section .hero-inner.ml-mt-0 {
    margin-top: 0 !important;
}

/* BUTTONS */
.theme-btn {
    border-radius: 8px !important;
}

.theme-btn br-30 {
    border-radius: 8px !important;
}


/* glass effect */

.glass-effect {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.search-btn.glass-effect {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-btn.glass-effect,
.sidebar-trigger.glass-effect {}

.glass-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0s;
}

.search-btn.glass-effect::before {
    border-radius: 50%;
}


/* Timeline Styles */
.left-timeline {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-dot.active {
    background: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    transform: scale(1.4);
}

.timeline-dot::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.4s ease;
}

.timeline-dot:hover::before {
    width: 20px;
}

.timeline-label {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%) translateX(-20px);
    white-space: nowrap;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    pointer-events: none;
    /* Add the same background effect */
    background: radial-gradient(ellipse at center,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.15) 70%,
            rgba(255, 255, 255, 0.05) 100%);
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 9999;
}

/* Update the arrow color to match the gradient background */
.timeline-label::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid rgba(255, 255, 255, 0.2);
}

.timeline-dot.active .timeline-label,
.timeline-dot:hover .timeline-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
    background: radial-gradient(ellipse at center,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0.18) 70%,
            rgba(255, 255, 255, 0.08) 100%);
}

.timeline-dot.active .timeline-label {
    background: radial-gradient(ellipse at center,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.22) 70%,
            rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.timeline-line {
    position: absolute;
    left: 5px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
}

.timeline-title {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    z-index: 9997;
    white-space: nowrap;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.timeline-dot.new-section {
    animation: pulseGlow 1.5s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .left-timeline {
        left: 12px;
    }

    .timeline-title {
        display: none;
    }
}


/* cursor  */

.cursor,
.cursor-follower,
.hover-effect,
[class*="cursor"],
[id*="cursor"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}


/* Hero  */

/* Hero Statistics */

.horizontal-rectangle {
    width: 300px;
    height: 140px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.blur-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.blur-bg img {
    width: 140%;
    height: 140%;
    object-fit: cover;
    filter: blur(28px);
    transform: translate(-12%, -12%) scale(1.2);
}

.glass-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 20, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(42, 119, 135, 0.3);
    box-shadow: inset 0 0 30px rgba(42, 119, 135, 0.15);
    z-index: 1;
}

.stats-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-icon-circle {
    width: 44px;
    height: 44px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(42, 119, 135, 0.4);
    border-radius: 50%;
    color: #2A7787;
    background: rgba(42, 119, 135, 0.1);
    box-shadow: 0 0 15px rgba(42, 119, 135, 0.3);
}

.stat-icon-circle svg {
    width: 26px;
    height: 26px;
    stroke: #2A7787;
    filter: drop-shadow(0 0 6px rgba(42, 119, 135, 0.5));

}

.stat-number {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 0 15px rgba(42, 119, 135, 0.6);
    line-height: 1;
}

.stat-number span {
    font-size: 20px;
    color: #2A7787;
    text-shadow: 0 0 12px rgba(42, 119, 135, 0.7);
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.95);
    margin: 4px 0 0;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
}

.stat-icon-circle svg {
    color: #2A7787;
    stroke: #2A7787;
}



/* Hero BG */

.tv-hero-section {
    position: relative;
    background: linear-gradient(90deg,
            #031012 0%,
            #0B3B3E 40%,
            #051B22 65%,
            #02090C 100%);
    overflow: hidden;
}

.tv-hero-section::before,
.tv-hero-section::after {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle,
            rgba(42, 119, 135, 0.45),
            transparent 65%);
    filter: blur(120px);
    animation: floatGlow 18s infinite alternate ease-in-out;
}

.tv-hero-section::before {
    top: -300px;
    left: -300px;
}

.tv-hero-section::after {
    bottom: -350px;
    right: -300px;
    animation-delay: 6s;
}


/* Moving Line */

.clean-moving-line {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    overflow: visible;
}

.clean-moving-line::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 4px;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(42, 119, 135, 0.3) 20%,
            #2A7787 50%,
            rgba(42, 119, 135, 0.6) 80%,
            transparent 100%);
    border-radius: 4px;
    filter:
        drop-shadow(0 0 8px #2A7787) drop-shadow(0 0 16px #2A7787) drop-shadow(0 0 30px #2A7787);

    offset-path: inset(0 round 10px);
    offset-rotate: auto;
    offset-position: center;
    offset-anchor: center;
    animation: moveBorder 9s linear infinite;
}

@keyframes moveBorder {
    from {
        offset-distance: 0%;
    }

    to {
        offset-distance: 100%;
    }
}


/* Rectangles */

.vertical-rectangle-container {
    max-width: 700px;
    margin: 0 auto;
}

.rectangles-wrapper {
    width: 100%;
}

.left-stack {
    flex-shrink: 0;
}

.vertical-rectangle,
.horizontal-rectangle,
.tall-side-rectangle {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(42, 119, 135, 0.3);
}

.vertical-rectangle {
    width: 300px;
    height: 500px;
}

.horizontal-rectangle {
    width: 300px;
    height: 140px;
}

.tall-side-rectangle {
    width: 300px;
    height: 655px;
    flex-shrink: 0;
}

.vertical-rectangle img,
.tall-side-rectangle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.static-border {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(42, 119, 135, 0.3);
    border-radius: 8px;
    z-index: 2;
    pointer-events: none;
    box-shadow: inset 0 0 15px rgba(42, 119, 135, 0.2), 0 0 15px rgba(42, 119, 135, 0.15);
}


@media (max-width: 1199px) {
    .rectangles-wrapper {
        flex-direction: column;
        align-items: center;
    }

    /* Adjust height for tablet view */
    .tall-side-rectangle {
        height: 500px;
        margin-top: 20px;
    }
}

@media (max-width: 992px) {
    .vertical-rectangle-container {
        margin-top: 30px;
    }

    .clean-moving-line::before {
        width: 50px;
        height: 3px;
    }
}

@media (max-width: 576px) {

    .vertical-rectangle,
    .horizontal-rectangle,
    .tall-side-rectangle {
        width: 280px;
    }

    .vertical-rectangle {
        height: 460px;
    }

    .horizontal-rectangle {
        height: 130px;
    }

    .tall-side-rectangle {
        height: 605px;
    }
}


/* ## About Section ## */

/* Moving Line */

.about-clean-moving-line {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    overflow: visible;
}

.about-clean-moving-line::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 4px;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(42, 119, 135, 0.3) 20%,
            #2A7787 50%,
            rgba(42, 119, 135, 0.6) 80%,
            transparent 100%);
    border-radius: 4px;
    filter:
        drop-shadow(0 0 8px #2A7787) drop-shadow(0 0 16px #2A7787) drop-shadow(0 0 30px #2A7787);

    offset-path: inset(0 round 20px);
    offset-rotate: auto;
    offset-position: center;
    offset-anchor: center;
    animation: moveBorder 9s linear infinite;
}

@keyframes moveBorder {
    from {
        offset-distance: 0%;
    }

    to {
        offset-distance: 100%;
    }
}


/* About BG */

.tv-achivement-section {
    background: linear-gradient(90deg,
            #02090C 0%,
            #031012 35%,
            #051B22 60%,
            #03080A 100%);
}


/* About Layout */

.about-info {
    width: 100%;
    max-width: 340px;
}

.about-info-glass.vertical-layout {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 45px;
    padding: 55px 40px;
    background: rgba(5, 10, 20, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 18px;
    border: 1px solid rgba(42, 119, 135, 0.3);
    box-shadow:
        inset 0 0 30px rgba(42, 119, 135, 0.15),
        0 12px 40px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    text-align: center;
}

.about-info-glass.vertical-layout::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
    pointer-events: none;
}

.info-divider.horizontal {
    width: 180px;
    height: 3px;
    background: linear-gradient(to right,
            transparent,
            rgba(42, 119, 135, 0.8),
            #2A7787,
            rgba(42, 119, 135, 0.8),
            transparent);
    border-radius: 3px;
    box-shadow: 0 0 16px rgba(42, 119, 135, 0.9);
    filter: drop-shadow(0 0 8px #2A7787);
}

.about-counter .count-box {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.about-counter .count-box .plus {
    font-size: 40px;
    margin-left: 6px;
}

.about-counter .text p {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 500;
}

.video-btn.centered {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.video-btn.centered a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(42, 119, 135, 0.35);
    border: 2px solid #2A7787;
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
    transition: all 0.4s ease;
    backdrop-filter: blur(6px);
}

.video-btn.centered a:hover {
    background: #2A7787;
    box-shadow: 0 0 25px rgba(42, 119, 135, 0.9);
    transform: scale(1.12);
}

.video .content p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 1199px) {
    .about-info {
        max-width: 300px;
    }

    .info-divider.horizontal {
        width: 160px;
    }
}

@media (max-width: 991px) {
    .about-info-glass.vertical-layout {
        padding: 45px 30px;
        gap: 40px;
    }

    .video-btn.centered a {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .about-info-glass.vertical-layout {
        padding: 40px 25px;
        gap: 35px;
    }

    .info-divider.horizontal {
        width: 140px;
    }
}


/* About Custom Icons */

.custom-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.custom-icon i {
    color: #2A7787;
    font-size: 20px;
}

.custom-icon:hover {
    box-shadow: 0 0 15px rgba(42, 119, 135, 0.6);
    transform: scale(1.05);
    transition: all 0.3s ease;
}


/* ## Marquee Section ## */

.marquee__group .m-item {
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
}

.marquee__group .m-item .item-text {
    position: relative;
    z-index: 2;
}

.marquee__group .m-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    text-shadow:
        0 0 12px rgba(255, 255, 255, 0.9),
        0 0 20px rgba(255, 255, 255, 0.7),
        0 0 30px rgba(255, 255, 255, 0.4);
    color: #ffffff;
    filter: brightness(1.35);
    transform: scale(1.05);
}


.marquee__group .m-item:hover .icon {
    filter: brightness(1.5) drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
}

.slider__marquee:hover .marquee__group {
    animation-play-state: paused;
}


/* Marquee Tooltip */

.marquee-tooltip {
    position: fixed;
    background: rgba(20, 20, 20, 0.95);
    color: #fff;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
    white-space: normal;
    /* allow wrapping */
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    max-width: 280px;
    text-align: center;
}

.marquee-tooltip.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.marquee-tooltip::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(20, 20, 20, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    transform: rotate(45deg);
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.2);
    left: var(--arrow-left, 50%);
    top: var(--arrow-top, 100%);
    transform: var(--arrow-transform, translateX(-50%) translateY(-50%) rotate(45deg));
}
