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

:root {
    --electric-blue: #00d9ff;
    --electric-blue-dark: #00a8cc;
    --black: #000000;
    --off-black: #0a0a0a;
    --gray: #333333;
    --light-gray: #999999;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--black) 0%, var(--off-black) 100%);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.content {
    text-align: center;
    z-index: 10;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.icon-wrapper {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    margin-bottom: 2rem;
}

.construction-icon {
    width: 80px;
    height: 80px;
    color: var(--electric-blue);
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5));
}

.title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--electric-blue) 0%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--light-gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--electric-blue);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px var(--electric-blue);
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

.message {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.footer {
    padding-top: 2rem;
    border-top: 1px solid var(--gray);
}

.footer p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.company-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--electric-blue);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.company-link:hover {
    transform: translateY(-2px);
    color: var(--electric-blue-dark);
}

.company-link:hover .arrow-icon {
    transform: translate(4px, -4px);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.company-name {
    position: relative;
}

.company-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--electric-blue);
    transition: width 0.3s ease;
}

.company-link:hover .company-name::after {
    width: 100%;
}

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

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--electric-blue);
    top: 10%;
    left: 10%;
    animation: moveCircle1 20s ease-in-out infinite;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: var(--electric-blue);
    bottom: 10%;
    right: 10%;
    animation: moveCircle2 25s ease-in-out infinite;
}

.circle-3 {
    width: 250px;
    height: 250px;
    background: var(--electric-blue);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: moveCircle3 30s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes moveCircle1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 50px);
    }
}

@keyframes moveCircle2 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, -30px);
    }
}

@keyframes moveCircle3 {
    0%, 100% {
        transform: translate(-50%, -50%);
    }
    50% {
        transform: translate(-40%, -60%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .construction-icon {
        width: 60px;
        height: 60px;
    }
    
    .message {
        font-size: 1rem;
    }
    
    .circle-1, .circle-2 {
        opacity: 0.05;
    }
}

@media (max-width: 480px) {
    .footer {
        padding-top: 1.5rem;
    }
    
    .company-link {
        font-size: 1rem;
    }
}
