.preloader {
    position: fixed;
    inset: 0;
    background-color: #09090b;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
}

.loading-bar {
    width: 250px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    overflow: hidden;
    margin: auto;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: #8A00FF;
    transition: width 0.2s ease-out;
    box-shadow: 0 0 10px #8A00FF;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.main {
    max-width: 100vw;
    overflow-x: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.marquee-content {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    animation: scrollX 20s linear infinite;
    gap: 40px;
    padding: 0 20px;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.marquee-item span {
    background: linear-gradient(309deg, #d2a6ff 0%, #af33ff 50%, #8a00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 32px;
}

.marquee-item i {
    color: rgba(255,255,255,0.3);
    font-size: 14px;
}

@keyframes scrollX {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ground-glow {
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(138, 0, 255, 0.2) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
    filter: blur(50px);
}

.marquee-section {
    width: 100%;
    padding: 20px 0;
    background: transparent !important;
    border: none !important;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
    animation: scrollX 30s linear infinite;
    gap: 80px;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.marquee-item span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.marquee-item i {
    color: #8A00FF;
    font-size: 18px;
    opacity: 0.8;
}

.marquee-item:hover span {
    color: #fff;
    text-shadow: 0 0 15px rgba(138, 0, 255, 0.5);
    transform: scale(1.1);
}

@keyframes scrollX {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
