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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

@keyframes rocketBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes playPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.4); }
    50% { box-shadow: 0 0 40px rgba(102, 126, 234, 0.8); }
}

@keyframes slideInLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    0% { opacity: 0; transform: translateX(50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInUp {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes backgroundMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* New CTA Section Animations */
@keyframes ctaFloat1 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-40px) rotate(10deg) scale(1.1); }
}

@keyframes ctaFloat2 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-30px) rotate(-8deg) scale(1.05); }
}

@keyframes ctaFloat3 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-35px) rotate(12deg) scale(1.08); }
}

@keyframes ctaPatternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-50px) translateY(-50px); }
}

@keyframes ctaInternalFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

@keyframes ctaTitlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes ctaUnderlineGrow {
    0%, 100% { width: 100px; }
    50% { width: 150px; }
}

/* New Features Section Animations */
@keyframes featuresPatternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-87px); }
}

@keyframes featuresFloat1 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    33% { transform: translateY(-30px) rotate(5deg) scale(1.1); }
    66% { transform: translateY(-15px) rotate(-3deg) scale(1.05); }
}

@keyframes featuresFloat2 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    33% { transform: translateY(-25px) rotate(-8deg) scale(1.08); }
    66% { transform: translateY(-40px) rotate(4deg) scale(1.12); }
}

@keyframes featuresFloat3 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    33% { transform: translateY(-35px) rotate(6deg) scale(1.06); }
    66% { transform: translateY(-20px) rotate(-5deg) scale(1.09); }
}

@keyframes featuresTitleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes featuresUnderlinePulse {
    0%, 100% { transform: scaleX(1); opacity: 1; }
    50% { transform: scaleX(1.2); opacity: 0.8; }
}

/* Feature Card Animations */
@keyframes featureIconFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-8px) rotateX(10deg); }
}

@keyframes featureIconSpin {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

@keyframes speedLines1 {
    0%, 100% { transform: translateX(0) scaleX(1); opacity: 0.6; }
    50% { transform: translateX(15px) scaleX(1.5); opacity: 1; }
}

@keyframes speedLines2 {
    0%, 100% { transform: translateX(0) scaleX(1); opacity: 0.4; }
    50% { transform: translateX(12px) scaleX(1.3); opacity: 0.8; }
}

@keyframes speedLines3 {
    0%, 100% { transform: translateX(0) scaleX(1); opacity: 0.5; }
    50% { transform: translateX(18px) scaleX(1.7); opacity: 1; }
}

@keyframes securityPulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.1); filter: brightness(1.2); }
}

@keyframes securityWave1 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.1; }
}

@keyframes securityWave2 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.05; }
}

@keyframes securityWave3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    50% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

@keyframes globalSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes connectionPulse1 {
    0%, 100% { opacity: 0.3; transform: scaleX(1); }
    50% { opacity: 0.8; transform: scaleX(1.1); }
}

@keyframes connectionPulse2 {
    0%, 100% { opacity: 0.2; transform: scaleX(1); }
    50% { opacity: 0.6; transform: scaleX(1.05); }
}

@keyframes connectionPulse3 {
    0%, 100% { opacity: 0.4; transform: scaleX(1); }
    50% { opacity: 0.9; transform: scaleX(1.15); }
}

@keyframes locationBlink1 {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

@keyframes locationBlink2 {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

@keyframes locationBlink3 {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.4); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(102,126,234,0.3); }
    50% { transform: scale(1.05); box-shadow: 0 12px 35px rgba(102,126,234,0.5); }
}

/* Enhanced Button Effects */
.btn-primary-enhanced:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 60px rgba(52,152,219,0.6);
}

.btn-primary-enhanced:hover .ripple-effect {
    width: 300px;
    height: 300px;
}

.btn-secondary-enhanced:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.6);
}

.btn-cta-main-enhanced:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 70px rgba(102, 126, 234, 0.5);
}

.btn-cta-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

/* Highlight text effect */
.highlight-text {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Blue highlight text effect */
.highlight-text-blue {
    background: linear-gradient(45deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-fullscreen h1 {
        font-size: 2.8rem !important;
    }
    
    .hero-fullscreen p {
        font-size: 1.2rem !important;
    }
    
    .cta-buttons a {
        display: block !important;
        margin-bottom: 20px !important;
        margin-right: 0 !important;
        padding: 18px 35px !important;
        font-size: 1.1rem !important;
    }
    
    .trust-indicators {
        justify-content: center !important;
        gap: 25px !important;
    }
    
    .dashboard-container {
        padding: 30px !important;
    }
    
    .section-header h2 {
        font-size: 2.5rem !important;
    }
}

/* Particle Canvas */
#particleCanvas {
    pointer-events: none;
}

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

@keyframes gpuFloat2 {
    0%, 100% { transform: translateY(0px) rotate(-15deg); }
    50% { transform: translateY(-15px) rotate(-15deg); }
}

@keyframes gpuFloat3 {
    0%, 100% { transform: translateY(0px) rotate(30deg); }
    50% { transform: translateY(-25px) rotate(30deg); }
}

@keyframes circuitMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(25px) translateY(25px); }
}

@keyframes gpuTitleGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(231,76,60,0.5); }
    50% { text-shadow: 0 0 40px rgba(231,76,60,0.8), 0 0 60px rgba(243,156,18,0.6); }
}

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

@keyframes gpuPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 15px 40px rgba(231,76,60,0.4); }
    50% { transform: scale(1.05); box-shadow: 0 20px 50px rgba(231,76,60,0.6); }
}

@keyframes gpuSpin {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

@keyframes powerPulse1 {
    0%, 100% { opacity: 0.8; width: 25px; }
    50% { opacity: 1; width: 30px; }
}

@keyframes powerPulse2 {
    0%, 100% { opacity: 0.6; width: 20px; }
    50% { opacity: 1; width: 25px; }
}

@keyframes powerPulse3 {
    0%, 100% { opacity: 0.7; width: 22px; }
    50% { opacity: 1; width: 28px; }
}

@keyframes priceGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(231,76,60,0.3); }
    50% { box-shadow: 0 12px 35px rgba(231,76,60,0.5), 0 0 30px rgba(231,76,60,0.3); }
}

/* Responsive GPU Cards */
@media (max-width: 768px) {
    .gpu-card {
        margin-bottom: 30px !important;
    }
    
    .gpu-icon {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 20px !important;
    }
    
    .gpu-icon i {
        font-size: 2rem !important;
    }
    
    .gpu-specs {
        padding: 20px !important;
        font-size: 0.9rem !important;
    }
    
    .gpu-price {
        font-size: 1.1rem !important;
        padding: 12px 20px !important;
    }
}