/* Premium UI Styles */
:root {
    --primary: #FF5A2C;
    --primary-hover: #e54e24;
}

@keyframes gradient-text {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-gradient {
    background: linear-gradient(270deg, #FF5A2C, #ff8c00, #FF5A2C);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-text 2s ease infinite;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.typing-cursor::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

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

.animate-marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

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

/* More Premium Utilities */
.soft-glow-orange {
    filter: drop-shadow(0 0 20px rgba(255, 90, 44, 0.2));
}

.border-glass {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-mesh {
    background-color: #ffffff;
    background-image: radial-gradient(at 0% 0%, hsla(11, 100%, 93%, 1) 0, transparent 50%), 
                      radial-gradient(at 50% 0%, hsla(50, 100%, 93%, 1) 0, transparent 50%), 
                      radial-gradient(at 100% 0%, hsla(30, 100%, 93%, 1) 0, transparent 50%);
}

.card-stack::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    background: #FF5A2C;
    border-radius: 30px;
    z-index: -1;
    opacity: 0.1;
}

/* Timeline vertical line */
.timeline-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #FF5A2C, #ffe9e3, transparent);
    transform: translateX(-50%);
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Floating Social Icons Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float-alt {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(20px) rotate(-5deg); }
}

@keyframes icon-zoom {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.6); opacity: 0.5; }
}

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

.animate-float-delayed {
    animation: float-alt 8s ease-in-out infinite;
    animation-delay: 2s;
}

.animate-zoom-fade {
    animation: icon-zoom 10s ease-in-out infinite;
}

/* Bubble Crash Intro */
.bubble-splash {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #FF5A2C;
    border-radius: 50%;
    opacity: 0.8;
    box-shadow: 0 10px 30px rgba(255, 90, 44, 0.3);
}

@keyframes bubble-converge {
    0% { transform: translate(var(--startX), var(--startY)) scale(0); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translate(0, 0) scale(1); opacity: 1; }
}

#social-popup.show {
    display: block;
    animation: popup-reveal 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popup-reveal {
    0% { transform: scale(0) translateY(20px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

.crash-bubble {
    animation: bubble-converge 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
