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

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.construction-icon {
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

.cone {
    position: relative;
    width: 80px;
    height: 100px;
    margin: 0 auto;
}

.cone-top {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid #ff6b35;
    position: relative;
}

.cone-top::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -35px;
    width: 70px;
    height: 15px;
    background: #ffffff;
    opacity: 0.9;
}

.cone-top::after {
    content: '';
    position: absolute;
    top: 35px;
    left: -30px;
    width: 60px;
    height: 15px;
    background: #ffffff;
    opacity: 0.9;
}

.cone-bottom {
    width: 100px;
    height: 15px;
    background: #2d2d2d;
    border-radius: 50%;
    margin-top: 5px;
    margin-left: -10px;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 1s ease-out;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.loader {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-out 0.4s both;
}

.dot {
    width: 15px;
    height: 15px;
    background-color: #ffffff;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) {
    animation-delay: -0.32s;
}

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

.message {
    font-size: 1rem;
    opacity: 0.8;
    animation: fadeIn 1s ease-out 0.6s both;
}

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

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .cone {
        transform: scale(0.8);
    }
}
