/* Products Section Styling */
#products {
    padding: 120px 20px 40px 20px;
    background: transparent;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.products-header {
    text-align: center;
    margin-bottom: 80px;
}

.products-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -1px;
}

.products-header p {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Individual Product Layouts */
.product-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-bottom: 120px;
}

.product-showcase:last-of-type {
    margin-bottom: 0;
}

.product-showcase.reverse {
    flex-direction: row-reverse;
}

.product-info {
    flex: 1;
    max-width: 520px;
}

.product-visual {
    flex: 1;
    max-width: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Glassmorphism Card for Product Content */
.product-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

.product-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-family: 'Sora', sans-serif;
}

.product-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.product-desc {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Feature Bullets with Glowing Bullets */
.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-light);
    margin-top: 8px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px 0;
}

.feature-text p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
    line-height: 1.4;
}

/* Action Button */
.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Interactive Visualizers (Simulators) */
.visualizer-container {
    width: 100%;
    max-width: 480px;
    height: 420px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.visualizer-container.active {
    opacity: 1;
    transform: translateY(0);
}

.visualizer-container:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.05);
}

/* Visualizer Header */
.vis-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.vis-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    color: #666;
    text-transform: uppercase;
}

.vis-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #00ff66;
    font-family: monospace;
}

.vis-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #00ff66;
    box-shadow: 0 0 8px #00ff66;
    animation: blink-dot 1s infinite alternate;
}

/* 1. Computer Vision Visualizer Content */
.vis-content-cv {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #070707;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.cv-image-feed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    z-index: 0;
    filter: brightness(0.85) contrast(1.1);
}

.cv-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 86, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 86, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}



/* Target bounding box simulator */
.cv-target-box {
    position: absolute;
    border: 2px solid #00ff66;
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.3), inset 0 0 10px rgba(0, 255, 102, 0.2);
    z-index: 3;
    border-radius: 4px;
    opacity: 0;
}

.visualizer-container.active .cv-target-box {
    opacity: 1;
    animation: target-move-1 6s forwards ease-in-out;
}

.cv-target-box-2 {
    position: absolute;
    border: 2px solid #0080ff;
    box-shadow: 0 0 10px rgba(0, 128, 255, 0.3), inset 0 0 10px rgba(0, 128, 255, 0.2);
    z-index: 3;
    border-radius: 4px;
    opacity: 0;
}

.visualizer-container.active .cv-target-box-2 {
    opacity: 1;
    animation: target-move-2 6.5s forwards ease-in-out;
}

.cv-target-label {
    position: absolute;
    top: -24px;
    left: -2px;
    background: #00ff66;
    color: #000;
    font-family: monospace;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 2px 2px 0 0;
    white-space: nowrap;
}

.cv-target-label-2 {
    position: absolute;
    top: -24px;
    left: -2px;
    background: #0080ff;
    color: #ffffff;
    font-family: monospace;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 2px 2px 0 0;
    white-space: nowrap;
}

/* Live Analytics feed overlay */
.cv-overlay-data {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 12px;
    z-index: 4;
    font-family: monospace;
    font-size: 0.7rem;
    color: #aaa;
    display: flex;
    justify-content: space-between;
}

.cv-data-left span, .cv-data-right span {
    display: block;
    margin-bottom: 2px;
}

.highlight-green {
    color: #00ff66;
}

.highlight-blue {
    color: #0080ff;
}

/* 2. AI Receptionist visualizer Content */
.vis-content-receptionist {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-end;
}

/* Dialogue logs chat interface */
.chat-bubbles-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    scrollbar-width: none;
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: flex-end;
    padding-bottom: 8px;
}

.chat-bubbles-container::-webkit-scrollbar {
    display: none;
}

.chat-bubble {
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 85%;
    font-size: 0.8rem;
    line-height: 1.4;
    animation: fade-in-bubble 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    opacity: 0;
    transform: translateY(10px);
}

.chat-bubble.bot {
    background: rgba(0, 128, 255, 0.1);
    border: 1px solid rgba(0, 128, 255, 0.2);
    color: #fff;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 128, 255, 0.1);
}

.chat-bubble.user {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

/* Speech Waveform visualizer */
.waveform-container {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0 16px;
    flex-shrink: 0;
}

.waveform-bar {
    width: 3px;
    height: 8px;
    background-color: #0080ff;
    border-radius: 3px;
    animation: bounce-wave 0.8s infinite ease-in-out alternate;
}

/* Stagger waves */
.waveform-bar:nth-child(2) { animation-delay: 0.1s; height: 16px; }
.waveform-bar:nth-child(3) { animation-delay: 0.2s; height: 24px; }
.waveform-bar:nth-child(4) { animation-delay: 0.3s; height: 14px; }
.waveform-bar:nth-child(5) { animation-delay: 0.15s; height: 28px; }
.waveform-bar:nth-child(6) { animation-delay: 0.25s; height: 18px; }
.waveform-bar:nth-child(7) { animation-delay: 0.35s; height: 8px; }
.waveform-bar:nth-child(8) { animation-delay: 0.05s; height: 22px; }
.waveform-bar:nth-child(9) { animation-delay: 0.4s; height: 12px; }

/* ANIMATIONS */
@keyframes blink-dot {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}



@keyframes target-move-1 {
    0% {
        top: 20px;
        left: 20px;
        width: 100px;
        height: 100px;
    }
    30% {
        top: 140px;
        left: 260px;
        width: 110px;
        height: 90px;
    }
    70% {
        top: 40px;
        left: 130px;
        width: 120px;
        height: 120px;
    }
    100% {
        top: 130px;
        left: 15px;
        width: 120px;
        height: 120px;
    }
}

@keyframes target-move-2 {
    0% {
        top: 120px;
        left: 240px;
        width: 70px;
        height: 70px;
    }
    40% {
        top: 30px;
        left: 60px;
        width: 90px;
        height: 90px;
    }
    80% {
        top: 90px;
        left: 190px;
        width: 110px;
        height: 80px;
    }
    100% {
        top: 210px;
        left: 140px;
        width: 200px;
        height: 110px;
    }
}

@keyframes fade-in-bubble {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce-wave {
    0% {
        transform: scaleY(0.4);
        background-color: #555555;
    }
    100% {
        transform: scaleY(1.3);
        background-color: #ffffff;
    }
}

/* 3. Trading Agent Visualizer Content */
.vis-content-trading {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
}

.trading-chart-wrapper {
    flex: 1;
    min-height: 160px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #070707;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.trading-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

.trading-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: visible;
}

.chart-line {
    transition: d 1s ease-in-out, stroke 0.5s ease-in-out;
}

.chart-area {
    transition: d 1s ease-in-out, fill 0.5s ease-in-out;
}

.chart-marker {
    transition: cy 1s ease-in-out, fill 0.3s ease;
}

.trading-pnl-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: bold;
    font-family: monospace;
    z-index: 3;
    background: rgba(0, 255, 102, 0.1);
    border: 1px solid rgba(0, 255, 102, 0.2);
    color: #00ff66;
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.15);
    transition: all 0.3s ease;
}

.trading-pnl-badge.negative {
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.2);
    color: #ff3333;
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.15);
    transition: all 0.3s ease;
}

/* Ledger styling */
.trading-ledger {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 8px 12px;
    font-family: monospace;
    font-size: 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 130px;
    overflow: hidden;
}

.ledger-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
    align-items: center;
    color: #aaa;
    text-align: left;
}

.ledger-row.header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 6px;
    font-weight: bold;
    color: #666;
}

.ledger-rows-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
    scrollbar-width: none;
}

.ledger-rows-container::-webkit-scrollbar {
    display: none;
}

.ledger-row.data {
    animation: fade-in-row 0.3s ease-out forwards;
}

@keyframes fade-in-row {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.action-buy {
    color: #00ff66;
    font-weight: bold;
}

.action-sell {
    color: #ff3333;
    font-weight: bold;
}

.status-filled {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.65rem;
    text-align: center;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .product-showcase, .product-showcase.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }
    .product-info, .product-visual {
        width: 100%;
    }
    .visualizer-container {
        max-width: 100%;
        height: 380px;
    }
}

@media (max-width: 768px) {
    #products {
        padding: 80px 15px;
    }
    .products-header h2 {
        font-size: 2.2rem;
    }
    .product-title {
        font-size: 2rem;
    }
    .product-desc {
        font-size: 1rem;
    }
    .product-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    #products {
        padding: 60px 10px;
    }
    .products-header {
        margin-bottom: 40px;
    }
    .products-header h2 {
        font-size: 1.8rem;
    }
    .product-title {
        font-size: 1.6rem;
    }
    .product-desc {
        font-size: 0.95rem;
    }
    .visualizer-container {
        padding: 12px;
        height: 390px;
    }
    .chat-bubble {
        padding: 6px 10px;
        font-size: 0.72rem;
        max-width: 88%;
        margin-bottom: 2px;
    }
    .chat-bubbles-container {
        gap: 6px;
    }
    .waveform-container {
        height: 32px;
        padding: 0 10px;
    }
    .trading-ledger {
        font-size: 0.65rem;
        padding: 6px 8px;
    }
    .ledger-row {
        grid-template-columns: 1fr 0.8fr 1.3fr 0.9fr;
    }
    .cv-overlay-data {
        font-size: 0.6rem;
        padding: 6px 8px;
    }
}

@media (max-width: 768px) {
    .product-showcase {
        display: none !important;
    }

    /* Mobile Bounding Box Custom Keyframes */
    #mobile-cv-visualizer.active .cv-target-box {
        animation: target-move-1-mobile 6s forwards ease-in-out;
    }
    
    #mobile-cv-visualizer.active .cv-target-box-2 {
        animation: target-move-2-mobile 6.5s forwards ease-in-out;
    }
    
    @keyframes target-move-1-mobile {
        0% {
            top: 15px;
            left: 15px;
            width: 100px;
            height: 100px;
        }
        30% {
            top: 100px;
            left: 240px;
            width: 100px;
            height: 80px;
        }
        70% {
            top: 30px;
            left: 120px;
            width: 110px;
            height: 110px;
        }
        100% {
            top: 90px;
            left: 15px;
            width: 110px;
            height: 110px;
        }
    }
    
    @keyframes target-move-2-mobile {
        0% {
            top: 90px;
            left: 220px;
            width: 70px;
            height: 70px;
        }
        40% {
            top: 20px;
            left: 50px;
            width: 80px;
            height: 80px;
        }
        80% {
            top: 60px;
            left: 170px;
            width: 100px;
            height: 75px;
        }
        100% {
            top: 160px;
            left: 130px;
            width: 180px;
            height: 95px;
        }
    }
}

/* Mobile Products Tabs Layout */
.mobile-products-tabs {
    display: none;
}

@media (max-width: 768px) {
    .mobile-products-tabs {
        display: block;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
        position: relative;
        z-index: 3;
    }
    
    .mobile-products-bar {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-bottom: 35px;
        transition: gap 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    .mobile-product-btn {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
        cursor: pointer;
        padding: 16px;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        outline: none;
        position: relative;
        box-sizing: border-box;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }
    
    .mobile-product-btn img, .mobile-product-btn svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        color: rgba(255, 255, 255, 0.6);
        transition: all 0.3s ease;
    }
    
    .mobile-product-btn:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .mobile-product-btn.active {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--accent);
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.15), 0 10px 25px rgba(0, 0, 0, 0.5);
    }
    
    .mobile-product-btn.active img, .mobile-product-btn.active svg {
        color: #ffffff;
    }
    
    /* Content Container */
    .mobile-products-content {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.02);
        backdrop-filter: blur(15px) saturate(180%);
        -webkit-backdrop-filter: blur(15px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 20px;
        box-sizing: border-box;
        transition: max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), 
                    opacity 0.4s ease, 
                    padding 0.4s ease;
        padding: 0 20px;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
    }
    
    .mobile-products-content.expanded {
        max-height: 1200px;
        opacity: 1;
        padding: 30px 20px;
    }
    
    .mobile-product-pane {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.3s ease, max-height 0s 0.3s;
    }
    
    .mobile-product-pane.active {
        opacity: 1;
        max-height: 1200px;
        overflow: visible;
        transition: opacity 0.4s ease;
    }
    
    .mobile-product-pane .product-tag {
        display: inline-block;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--accent);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 4px 10px;
        border-radius: 50px;
        margin-bottom: 15px;
    }
    
    .mobile-product-pane h3 {
        font-size: 1.6rem;
        margin: 0 0 10px 0;
        font-weight: 800;
        color: #fff;
    }
    
    .mobile-product-pane .product-desc {
        color: #aaa;
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .mobile-product-pane .visualizer-container {
        width: 100%;
        height: 320px;
        margin-top: 25px;
    }
    
    .pane-header-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        gap: 15px;
        width: 100%;
    }
    
    .pane-header-left {
        flex: 1;
        text-align: left;
    }
    
    .product-logo-right {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.02);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px;
        box-sizing: border-box;
        flex-shrink: 0;
    }
    
    .product-logo-right img, .product-logo-right svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        color: #ffffff;
    }
}

/* Premium High-Tech Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo {
    height: 90px;
    animation: preloaderBuildUp 1.0s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.preloader-text {
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

@keyframes preloaderBuildUp {
    0% {
        opacity: 0;
        transform: scale(0.9);
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    }
    15% {
        opacity: 1;
        transform: scale(0.95);
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
        filter: drop-shadow(0 0 50px rgba(255, 255, 255, 1));
    }
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}
