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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    top: -50%;
    left: -50%;
}

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

.container {
    text-align: center;
    z-index: 1;
    padding: 40px;
    max-width: 800px;
}

.logo {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b00, #ffaa00, #ff6b00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s linear infinite, float 3s ease-in-out infinite;
    text-transform: uppercase;
}

@keyframes shine {
    to { background-position: 200% center; }
}

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

.construction-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.2);
    border: 2px solid #ff6b00;
    padding: 15px 30px;
    border-radius: 50px;
    margin: 30px 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); 
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 0 20px 10px rgba(255, 107, 0, 0); 
    }
}

.construction-badge h2 {
    font-size: 1.5rem;
    color: #ffaa00;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.construction-icon {
    font-size: 3rem;
    margin: 20px 0;
    animation: swing 1s ease-in-out infinite;
}

@keyframes swing {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

.developer-info {
    margin-top: 50px;
    font-size: 1.2rem;
    color: #e0e0e0;
}

.developer-link {
    color: #ff6b00;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.developer-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b00, #ffaa00);
    transition: width 0.3s ease;
}

.developer-link:hover {
    color: #ffaa00;
    transform: translateY(-2px);
}

.developer-link:hover::before {
    width: 100%;
}

.dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 170, 0, 0.5);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

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

.dot:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.dot:nth-child(2) { top: 60%; left: 85%; animation-delay: 0.5s; }
.dot:nth-child(3) { top: 40%; left: 20%; animation-delay: 1s; }
.dot:nth-child(4) { top: 80%; left: 70%; animation-delay: 1.5s; }
.dot:nth-child(5) { top: 15%; left: 90%; animation-delay: 2s; }
.dot:nth-child(6) { top: 70%; left: 15%; animation-delay: 2.5s; }

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }

    .construction-badge h2 {
        font-size: 1.2rem;
    }

    .developer-info {
        font-size: 1rem;
    }

    .developer-link {
        font-size: 1.1rem;
    }
}

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

    .construction-badge {
        padding: 12px 20px;
    }

    .construction-badge h2 {
        font-size: 1rem;
    }

    .construction-icon {
        font-size: 2.5rem;
    }
}