/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    cursor: none; /* Hide default cursor for custom cat paw cursor */
}

body {
    font-family: 'Space Mono', monospace;
    background: linear-gradient(135deg, #2c5530 0%, #1a3d1e 50%, #0f2812 100%);
    color: #e8f5e8;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 200, 120, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200, 255, 200, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(150, 255, 150, 0.05) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Floating particles */
.background-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.1), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'VT323', monospace;
    font-size: 24px;
    color: #a8d8a8;
}

.logo-text {
    font-size: 32px;
    animation: leafSway 3s ease-in-out infinite;
}

@keyframes leafSway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* Main content */
.main-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.construction-message {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 216, 168, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.construction-message::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(168, 216, 168, 0.1), transparent);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.title {
    font-family: 'VT323', monospace;
    font-size: 3.5rem;
    font-weight: 400;
    color: #a8d8a8;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(168, 216, 168, 0.5);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 20px rgba(168, 216, 168, 0.5); }
    100% { text-shadow: 0 0 30px rgba(168, 216, 168, 0.8), 0 0 40px rgba(168, 216, 168, 0.3); }
}

.subtitle {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #88c888;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

/* Construction icon */
.construction-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    position: relative;
}

.gear {
    font-size: 2rem;
    animation: gearRotate 4s linear infinite;
}

.gear-1 {
    animation-delay: 0s;
}

.gear-2 {
    animation-delay: -1.33s;
    font-size: 1.5rem;
}

.gear-3 {
    animation-delay: -2.66s;
    font-size: 1.2rem;
}

@keyframes gearRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Description */
.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #c8e8c8;
    margin: 30px 0;
    font-weight: 400;
}

/* Progress bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    margin: 30px 0;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #a8d8a8, #88c888, #a8d8a8);
    background-size: 200% 100%;
    border-radius: 4px;
    width: 0%;
    animation: progressFill 3s ease-in-out infinite, progressShimmer 2s linear infinite;
}

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 75%; }
    100% { width: 0%; }
}

@keyframes progressShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Contact info */
.contact-info {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(168, 216, 168, 0.3);
}

.contact-info a {
    color: #a8d8a8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #88c888;
    text-shadow: 0 0 10px rgba(168, 216, 168, 0.5);
}

/* Footer */
.footer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: #88a888;
    text-align: center;
}

/* Cat paw cursor */
.cat-paw-cursor {
    position: fixed;
    width: 32px;
    height: 32px;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cat-paw-cursor svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(168, 216, 168, 0.6));
}

/* Paw trail */
.paw-trail {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
}

.paw-trail .paw-print {
    position: absolute;
    width: 16px;
    height: 16px;
    opacity: 0.6;
    animation: pawFade 2s ease-out forwards;
}

.paw-trail .paw-print svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 4px rgba(168, 216, 168, 0.4));
}

@keyframes pawFade {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .construction-message {
        padding: 40px 20px;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .construction-icon {
        gap: 15px;
    }
    
    .gear {
        font-size: 1.5rem;
    }
    
    .gear-2 {
        font-size: 1.2rem;
    }
    
    .gear-3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo-text {
        font-size: 28px;
    }
}
