/*
* Chicken Version of Ptc Express
* Created by : ScriptBooster.org
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

@keyframes backgroundMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-10%, 10%) rotate(5deg); }
    66% { transform: translate(10%, -10%) rotate(-5deg); }
}

/* Floating particles */
.particle {
    position: absolute;
    background: rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* Gradient styles */
.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-blue {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.gradient-purple {
    background: linear-gradient(135deg, #5b21b6 0%, #d4a373 100%);
}

.gradient-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #fbc638 100%);
}

.gradient-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.gradient-card {
    background: linear-gradient(135deg, rgb(175 237 83 / 64%) 0%, rgba(227, 237, 255, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-gradient {
    background: linear-gradient(135deg, #4a2c1b 0%, rgba(175, 237, 83, 1) 50%, rgba(116, 255, 51, 1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: heroShine 8s ease-in-out infinite;
}

@keyframes heroShine {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20%, -20%); }
}

/* Glass morphism */
.glass-effect {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Sidebar styles */
.sidebar {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-overlay {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar.mobile-open {
    transform: translateX(0);
}

/* Neon text effect */
.neon-text {
   text-shadow: 0 0 5px rgb(255 255 255 / 80%), 0 0 10px rgba(59, 130, 246, 0.3);
    animation: neonPulse 2s 
ease-in-out infinite;
    color: #4a2c1b;
}

@keyframes neonPulse {
    0%, 100% { text-shadow: 0 0 5px rgba(59, 130, 246, 0.5), 0 0 10px rgba(59, 130, 246, 0.3); }
    50% { text-shadow: 0 0 10px rgba(59, 130, 246, 0.7), 0 0 15px rgba(59, 130, 246, 0.5); }
}

/* 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 60px rgba(6, 182, 212, 0.3);
}

.hover-scale {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Pulse glow animation */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(6, 182, 212, 0.4),
                    0 0 40px rgba(6, 182, 212, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(6, 182, 212, 0.8),
                    0 0 60px rgba(6, 182, 212, 0.4);
    }
}

/* Production card styles */
.production-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(227, 237, 255, 0.8) 100%);
    border: 1px solid rgba(6, 182, 212, 0.3);
    position: relative;
    overflow: hidden;
}

.production-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    transition: left 0.5s;
}

.production-card:hover::before {
    left: 100%;
}

/* Claim button */
.claim-button {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.claim-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.claim-button:hover::before {
    width: 300px;
    height: 300px;
}

.claim-button:hover {
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.5);
    transform: translateY(-2px);
}

/* Circular progress */
.circular-progress {
    width: 220px;
    height: 220px;
    border-radius: 70%;
    background: conic-gradient(from 0deg, rgba(175, 237, 83, 1) 0deg 280deg, rgba(200, 220, 255, 0.5) 280deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: rotateProgress 1s ease-in-out infinite;
}

@keyframes rotateProgress {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}

.circular-progress::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #f0f4f8;
}

.circular-progress::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Badge styles */
.badge-cyan {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
}

/* Sidebar link animation */
.sidebar-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 70%;
    background: linear-gradient(90deg, #06b6d4, transparent);
    border-radius: 0 10px 10px 0;
    transition: width 0.3s ease;
}

.sidebar-link:hover::before {
    width: 4px;
}

.sidebar-link:hover {
    background: rgba(59, 130, 246, 0.1);
    padding-left: 20px;
}

.sidebar-link.active {
    background: rgba(59, 130, 246, 0.2);
    border-left: 3px solid #3b82f6;
}

/* Stat card animation */
.stat-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}

/* Counter animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.count-up {
    animation: countUp 0.6s ease-out;
}

/* Egg bounce animation */
@keyframes eggBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-5px) rotate(5deg); }
}

.egg-icon {
    animation: eggBounce 2s ease-in-out infinite;
}

/* Loading spinner */
.spinner {
    border: 3px solid rgba(6, 182, 212, 0.3);
    border-top: 3px solid #06b6d4;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Shimmer effect */
.shimmer {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(6, 182, 212, 0.2) 50%, 
        transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
        position: fixed;
        z-index: 100;
    }
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
    }
}

/* Tooltip */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #ffffff;
    color: #3b82f6;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.tooltip:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Icon bounce on hover */
.icon-bounce:hover {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
