/* Futuristic 3D Effects and Animations - Removed problematic fade-in animations */

/* Enhanced See More Arrow */
.group:hover .group-hover\:translate-y-1 {
    transform: translateY(-2px);
}

.group-hover\:opacity-100 {
    opacity: 1;
}

/* Minuscule Interactive Effects */
.hover\:scale-101:hover {
    transform: scale(1.01);
}

/* 3D Perspective and Transform */
.perspective-1000 {
    perspective: 1000px;
}

.transform-gpu {
    transform: translateZ(0);
    will-change: transform;
}

/* Futuristic Background Elements */
.grid-bg {
    background-image: 
        linear-gradient(rgba(6, 182, 212, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 10s linear infinite;
    transform-style: preserve-3d;
}

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: particle-float 8s linear infinite;
}

.particles::before {
    left: 10%;
    animation-delay: 0s;
}

.particles::after {
    left: 80%;
    animation-delay: 4s;
}

.geometric-shapes .shape {
    position: absolute;
    border: 2px solid rgba(6, 182, 212, 0.3);
    animation: rotate3d 20s linear infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    transform: rotate(45deg);
    animation-duration: 25s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    border-radius: 50%;
    animation-duration: 30s;
    animation-direction: reverse;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 50%;
    transform: rotate(30deg);
    animation-duration: 35s;
}

/* Holographic Lines */
.holographic-lines::before,
.holographic-lines::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.3), transparent);
    height: 1px;
    width: 100%;
    animation: shimmer 3s linear infinite;
}

.holographic-lines::before {
    top: 30%;
    animation-delay: 0s;
}

.holographic-lines::after {
    bottom: 30%;
    animation-delay: 1.5s;
}

/* 3D Hero Container */
.hero-3d-container {
    transform-style: preserve-3d;
    transform: rotateX(5deg);
    transition: transform 0.6s ease;
}

.hero-3d-container:hover {
    transform: rotateX(0deg) translateZ(20px);
}

/* Enhanced Landing Page Styles */
.font-black {
    font-weight: 900;
}

.bg-gradient-to-r {
    background: linear-gradient(to right, var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to));
}

.from-cyan-400 {
    --tw-gradient-from: #22d3ee;
}

.via-blue-400 {
    --tw-gradient-via: #60a5fa;
}

.to-purple-600 {
    --tw-gradient-to: #9333ea;
}

.bg-clip-text {
    background-clip: text;
    -webkit-background-clip: text;
}

.text-transparent {
    color: transparent;
}

.backdrop-blur-sm {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Smooth Scrolling - Removed to fix flow issues */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #3b82f6, #1e40af);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #60a5fa, #3b82f6);
}

/* Video Background Fixes */
video {
    object-fit: cover;
    object-position: center;
    filter: contrast(1.1) brightness(0.9);
}

/* Hover Effects */
.hover-lift {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Text Selection */
::selection {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
}

/* Focus States */
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Responsive Video */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .text-6xl {
        font-size: 2.5rem;
    }
    
    .text-8xl {
        font-size: 3.5rem;
    }
    
    .text-2xl {
        font-size: 1.25rem;
    }
    
    .text-3xl {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    nav,
    button,
    video {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}
