.hero-gradient {
    background: #FF5700;
    position: relative;
    overflow: hidden;
}

.neural-pattern {
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.15) 1px, transparent 0);
    background-size: 40px 40px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 87, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(255, 87, 0, 0.25);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 87, 0, 0.4);
}

.angular-divider-bottom {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.angular-divider-top {
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
}

@media (max-width: 767px) {
    .angular-divider-bottom {
        clip-path: polygon(0 0, 100% 0, 100% 93%, 0% 100%);
    }
    .angular-divider-top {
        clip-path: polygon(0 7%, 100% 0, 100% 100%, 0% 100%);
    }
}

/* Marquee Animation */
@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

@media (max-width: 767px) {
    .marquee-content {
        animation-duration: 10s;
    }
}

.marquee-content:hover {
    animation-play-state: paused;
}

/* Depth and Glossy Effects */
.depth-1 {
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1), 0 1px 1px rgba(0,0,0,0.05);
}

.neon-glow-primary {
    filter: drop-shadow(0 0 8px rgba(255, 87, 0, 0.4));
}

/* Secondary is now Black - Removing glow or making it dark */
.neon-glow-secondary {
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.5));
}

@keyframes pulse-slow {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.05); opacity: 0.3; }
}

@keyframes rotateY30 {
    0% { transform: rotateY(-15deg); }
    50% { transform: rotateY(15deg); }
    100% { transform: rotateY(-15deg); }
}

.animate-3d-rotate {
    animation: rotateY30 10s ease-in-out infinite;
    transform-style: preserve-3d;
}

.animate-pulse-slow {
    animation: pulse-slow 6s ease-in-out infinite;
}
