/* Assumer Dark Theme - Custom Styles & Animations */

html {
    scroll-behavior: smooth;
    background-color: #070708;
    color: #f3f4f6;
}

/* Background Ambient Orbs */
.bg-glow-top {
    background: radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 40%, rgba(7, 7, 8, 0) 70%);
}

.bg-glow-center {
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, rgba(7, 7, 8, 0) 70%);
}

/* Glassmorphism prompt container */
.prompt-glass {
    background: rgba(18, 18, 22, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.prompt-glass:focus-within {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Dark Card Styling */
.dark-card {
    background: #0d0d10;
    border: 1px solid #1e1e24;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dark-card:hover {
    border-color: #33333f;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Icon Box inside cards */
.icon-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Timeline Vertical Line & Glow Nodes */
.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.2) 100%);
}

.timeline-node {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Big Footer Watermark Text */
.footer-watermark {
    font-size: clamp(3rem, 12vw, 11rem);
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.15) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #070708;
}
::-webkit-scrollbar-thumb {
    background: #222228;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3a3a44;
}

/* Marquee Animation */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-marquee {
    animation: marquee 20s linear infinite;
    display: flex;
    width: max-content;
}
.animate-marquee:hover {
    animation-play-state: paused;
}

/* Logo Card Glow Hover */
.logo-card {
    transition: all 0.3s ease;
}
.logo-card:hover {
    border-color: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
    transform: translateY(-2px);
}

/* Explore Section Owl Carousel Styling */
.explore-carousel .owl-item {
    transition: all 0.4s ease;
    opacity: 0.4;
    transform: scale(0.9);
}
.explore-carousel .owl-item.active.center {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}
.explore-carousel .explore-card {
    background: #0a0a0c;
    border-color: rgba(255,255,255,0.05);
}
.explore-carousel .owl-item.active.center .explore-card {
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
