:root {
    --primary-gradient: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    --secondary-gradient: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    --accent-gradient: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
    --dark-bg: #0f0f0f;
    --card-bg: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #e5e5e5;
    --glass-border: rgba(255, 255, 255, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    bottom: -200px;
    right: -200px;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, -100px) scale(1.1);
    }

    66% {
        transform: translate(-100px, 100px) scale(0.9);
    }
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Glass Card */
.content-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: cardEntrance 0.8s ease-out;
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon */
.icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.construction-icon {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 10px 20px rgba(220, 38, 38, 0.3));
}

.gear-rotate {
    animation: rotate 10s linear infinite;
    transform-origin: center;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Typography */
.main-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-word {
    display: inline-block;
    animation: titleFloat 3s ease-in-out infinite;
}

.title-word:nth-child(2) {
    animation-delay: 0.2s;
    margin-left: 1rem;
}

@keyframes titleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 2.5rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 10px;
    width: 0%;
    animation: progressAnimation 3s ease-out forwards;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
}

@keyframes progressAnimation {
    to {
        width: 67%;
    }
}

.progress-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}





/* Company Link */
.company-link {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.parrot-link {
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--glass-border);
    border-radius: 0.75rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.parrot-link:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

/* Footer */
.footer-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-card {
        padding: 2rem 1.5rem;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .title-word:nth-child(2) {
        margin-left: 0;
        display: block;
    }

    .subtitle {
        font-size: 1rem;
    }



    .construction-icon {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }

    .content-card {
        padding: 1.5rem 1rem;
        border-radius: 1.5rem;
    }
}