
    /* Webuma Custom Theme - Warm Orange Gradient */
    .wu-primary {
        color: #f97316 !important;
    }

    .wu-bg-primary {
        background-color: #f97316 !important;
    }

    .wu-gradient-text {
        background: linear-gradient(135deg, #fbbf24 0%, #f97316 50%, #ef4444 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .wu-card {
        background: rgba(0, 0, 0, 0.02);
        border: 1px solid rgba(0, 0, 0, 0.06);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
    }

    .wu-card:hover {
        background: rgba(0, 0, 0, 0.04);
        border-color: rgba(249, 115, 22, 0.4);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px -10px rgba(249, 115, 22, 0.2);
    }

    .wu-icon-box {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        border-radius: 14px;
        background: rgba(0, 0, 0, 0.05);
        color: rgba(0, 0, 0, 0.3);
        margin-bottom: 1.5rem;
    }

    .wu-badge {
        border: 1px solid rgba(249, 115, 22, 0.3);
        background: rgba(249, 115, 22, 0.1);
        color: #fdba74;
    }

    .btn-wu-primary {
        background: linear-gradient(135deg, #f97316, #ef4444);
        color: white;
        font-weight: 600;
        border: none;
        transition: all 0.3s ease;
    }

    .btn-wu-primary:hover {
        transform: translateY(-2px);
        color: white;
        box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.4);
    }

    .wu-section-divider {
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .wu-check-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .wu-check-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        margin-top: 2px;
        font-size: 0.75rem;
    }

    /* ===== Interactive Hotspot Hero (Bayraktar TB2 Style) ===== */
    .wu-hero-showcase {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        perspective: 1200px;
        z-index: 999; /* Ensure it stays above following sections */
    }

    .wu-hero-showcase-inner {
        position: relative;
        border-radius: 6px;
        overflow: visible;
        box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0,0,0,0.04);
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
    }

    .wu-hero-showcase-inner:hover {
        box-shadow: 0 40px 100px -20px rgba(249, 115, 22, 0.22), 0 0 0 1px rgba(249,115,22,0.12);
    }

    .wu-hero-img-wrap {
        position: relative;
        border-radius: 6px;
        /* overflow: hidden; Removed to allow tooltips to overflow out of the box */
    }

    .wu-hero-img-wrap img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 6px; /* Added here to keep the rounded corners */
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .wu-hero-img-wrap img.wu-fade-out {
        opacity: 0;
        transform: scale(1.02);
    }

    /* Hotspot Dots */
    .wu-hotspot {
        position: absolute;
        width: 40px;
        height: 40px;
        z-index: 20;
        cursor: pointer;
        transform: translate(-50%, -50%);
        transition: opacity 0.5s ease, transform 0.5s ease, z-index 0s;
    }

    .wu-hotspot:hover,
    .wu-hotspot.active {
        z-index: 9999 !important;
    }

    .wu-hotspot-dot {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: transparent;
        border: none;
        position: relative;
        z-index: 2;
        transition: background 0.3s ease;
    }

    .wu-hotspot:hover .wu-hotspot-dot {
        background: rgba(249, 115, 22, 0.15); /* Slight highlight on hover/touch */
    }

    .wu-hotspot-pulse {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 2px solid rgba(249, 115, 22, 0.8);
        animation: wuPulse 2.5s ease-out infinite;
        z-index: 1;
        pointer-events: none;
    }

    .wu-hotspot-pulse:nth-child(3) {
        animation-delay: 0.8s;
    }

    @keyframes wuPulse {
        0% { width: 18px; height: 18px; opacity: 1; }
        100% { width: 50px; height: 50px; opacity: 0; }
    }

    /* Tooltip */
    .wu-hotspot-tooltip {
        position: absolute;
        bottom: calc(100% + 4px);
        left: 50%;
        transform: translateX(-50%) translateY(8px);
        background: rgba(15, 23, 42, 0.92);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        color: #fff;
        padding: 14px 20px;
        border-radius: 14px;
        font-size: 0.82rem;
        line-height: 1.5;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
        border: 1px solid rgba(255,255,255,0.08);
        z-index: 9999 !important;
    }

    .wu-hotspot-tooltip::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 7px solid transparent;
        border-top-color: rgba(15, 23, 42, 0.92);
    }

    .wu-hotspot-tooltip .wu-tt-title {
        font-weight: 700;
        font-size: 0.9rem;
        margin-bottom: 4px;
        color: #fdba74;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .wu-hotspot-tooltip .wu-tt-desc {
        color: rgba(255,255,255,0.75);
        font-weight: 400;
    }

    .wu-hotspot:hover .wu-hotspot-tooltip,
    .wu-hotspot.active .wu-hotspot-tooltip {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }

    /* Bottom-positioned tooltip */
    .wu-hotspot-tooltip.wu-tt-bottom {
        bottom: auto;
        top: calc(100% + 4px);
    }

    .wu-hotspot-tooltip.wu-tt-bottom::after {
        top: auto;
        bottom: 100%;
        border-top-color: transparent;
        border-bottom-color: rgba(15, 23, 42, 0.92);
    }

    /* Left-positioned tooltip */
    .wu-hotspot-tooltip.wu-tt-left {
        left: auto;
        right: calc(100% + 4px);
        bottom: auto;
        top: 50%;
        transform: translateY(-50%) translateX(8px);
    }

    .wu-hotspot-tooltip.wu-tt-left::after {
        top: 50%;
        left: 100%;
        bottom: auto;
        transform: translateY(-50%);
        border-top-color: transparent;
        border-left-color: rgba(15, 23, 42, 0.92);
    }

    .wu-hotspot:hover .wu-hotspot-tooltip.wu-tt-left,
    .wu-hotspot.active .wu-hotspot-tooltip.wu-tt-left {
        transform: translateY(-50%) translateX(0);
    }

    /* Right-positioned tooltip */
    .wu-hotspot-tooltip.wu-tt-right {
        left: calc(100% + 4px);
        bottom: auto;
        top: 50%;
        transform: translateY(-50%) translateX(-8px);
    }

    .wu-hotspot-tooltip.wu-tt-right::after {
        top: 50%;
        right: 100%;
        left: auto;
        bottom: auto;
        transform: translateY(-50%);
        border-top-color: transparent;
        border-right-color: rgba(15, 23, 42, 0.92);
    }

    .wu-hotspot:hover .wu-hotspot-tooltip.wu-tt-right,
    .wu-hotspot.active .wu-hotspot-tooltip.wu-tt-right {
        transform: translateY(-50%) translateX(0);
    }

    /* Screen Nav Tabs */
    .wu-screen-nav {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 2rem;
        flex-wrap: wrap;
    }

    .wu-screen-tab {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 22px;
        border-radius: 50px;
        border: 2px solid rgba(0,0,0,0.08);
        background: #fff;
        color: #64748b;
        font-size: 0.85rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        user-select: none;
    }

    .wu-screen-tab:hover {
        border-color: rgba(249, 115, 22, 0.3);
        color: #f97316;
        background: rgba(249, 115, 22, 0.04);
    }

    .wu-screen-tab.active {
        border-color: #f97316;
        color: #f97316;
        background: rgba(249, 115, 22, 0.08);
        box-shadow: 0 4px 15px -3px rgba(249, 115, 22, 0.2);
    }

    .wu-screen-tab i {
        font-size: 1rem;
    }

    /* Side Stats */
    .wu-hero-stats {
        position: absolute;
        left: -60px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 24px;
        z-index: 30;
    }

    .wu-hero-stat {
        writing-mode: vertical-lr;
        transform: rotate(180deg);
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(0,0,0,0.25);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .wu-hero-stat span {
        color: #f97316;
        font-size: 0.85rem;
    }

    .wu-hero-stat .wu-flag {
        display: inline-block;
        transform: rotate(180deg);
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .wu-hero-stats { display: none; }
        .wu-hotspot-tooltip { white-space: normal; min-width: 180px; max-width: 220px; font-size: 0.78rem; }
    }

    @media (max-width: 576px) {
        .wu-hotspot-dot { width: 14px; height: 14px; border-width: 2px; }
        .wu-hotspot-tooltip { padding: 10px 14px; min-width: 150px; font-size: 0.75rem; }
        .wu-screen-tab { padding: 8px 16px; font-size: 0.78rem; }
    }

    .wu-platform-logo {
        height: 28px;
        opacity: 0.7;
        filter: brightness(0);
        transition: all 0.3s ease;
    }

    .wu-platform-logo:hover {
        opacity: 1;
    }

    @keyframes scrollBounce {
        0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
        40% {transform: translateY(-10px);}
        60% {transform: translateY(-5px);}
    }
    .wu-scroll-down {
        animation: scrollBounce 2s infinite;
        color: #f97316;
        cursor: pointer;
        display: inline-block;
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    .wu-scroll-down:hover {
        opacity: 1;
        color: #ea580c;
    }

    /* Zoomable image styling */
    .zoom-image-wrapper {
        position: relative;
        cursor: zoom-in;
        display: block;
        overflow: hidden;
        width: 100%;
        height: 100%;
    }
    .zoomable-img {
        transition: filter 0.3s ease;
    }
    .zoom-image-wrapper:hover .zoomable-img {
        /* No scaling or brightness change on hover */
    }
    .zoom-icon-overlay.zoom-icon-left {
        right: auto;
        left: 15px;
    }
    .zoom-icon-overlay {
        position: absolute;
        bottom: 15px;
        right: 15px;
        background: rgba(15, 23, 42, 0.75);
        color: #fff;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: scale(0.8);
        transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
        pointer-events: none;
        z-index: 5;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .zoom-image-wrapper:hover .zoom-icon-overlay {
        opacity: 1;
        transform: scale(1);
    }
    
    /* Modern Lightbox Styles */
    .wu-lightbox-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 23, 42, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 99999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .wu-lightbox-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .wu-lightbox-container {
        position: relative;
        max-width: 90%;
        max-height: 85%;
        transform: scale(0.95);
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .wu-lightbox-overlay.active .wu-lightbox-container {
        transform: scale(1);
    }
    .wu-lightbox-img {
        max-width: 100%;
        max-height: 80vh;
        border-radius: 12px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        border: 2px solid rgba(255, 255, 255, 0.15);
        object-fit: contain;
    }
    .wu-lightbox-caption {
        color: #fff;
        margin-top: 15px;
        font-size: 1rem;
        font-weight: 500;
        text-align: center;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    }
    .wu-lightbox-close {
        position: absolute;
        top: -45px;
        right: 0;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: #fff;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s, transform 0.2s;
    }
    .wu-lightbox-close:hover {
        background: rgba(255, 255, 255, 0.35);
        transform: scale(1.1);
    }
    .wu-lightbox-close i {
        font-size: 1.2rem;
    }
