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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #87CEEB 0%, #4682B4 25%, #1E90FF 50%, #0066CC 75%, #003366 100%);
    min-height: 100vh;
    overflow-x: hidden;
    color: #333;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: waterShimmer 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes waterShimmer {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0px);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-10px);
    }
}

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

.content {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.main-message h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 20px;
}

.main-message p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 40px;
    line-height: 1.6;
}

.construction-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    gap: 20px;
}

.gear {
    font-size: 2.5rem;
    animation: rotate 3s linear infinite;
}

.gear-1 {
    animation-delay: 0s;
}

.gear-2 {
    animation-delay: 1s;
    animation-direction: reverse;
}

.gear-3 {
    animation-delay: 2s;
}

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

.progress-section {
    margin: 40px 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #ecf0f1;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 4px;
    width: 0%;
    animation: progress 3s ease-in-out infinite;
}

@keyframes progress {
    0% {
        width: 0%;
    }
    50% {
        width: 75%;
    }
    100% {
        width: 0%;
    }
}

.progress-text {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 500;
}


.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.fish {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.fish-1 { top: 5%; left: 3%; animation-delay: 0s; }
.fish-2 { top: 15%; right: 8%; animation-delay: 0.5s; }
.fish-3 { top: 25%; left: 6%; animation-delay: 1s; }
.fish-4 { top: 35%; right: 4%; animation-delay: 1.5s; }
.fish-5 { top: 45%; left: 12%; animation-delay: 2s; }
.fish-6 { top: 55%; right: 15%; animation-delay: 2.5s; }
.fish-7 { top: 65%; left: 8%; animation-delay: 3s; }
.fish-8 { top: 75%; right: 10%; animation-delay: 3.5s; }
.fish-9 { top: 85%; left: 20%; animation-delay: 4s; }
.fish-10 { top: 10%; left: 25%; animation-delay: 4.5s; }
.fish-11 { top: 20%; right: 25%; animation-delay: 5s; }
.fish-12 { top: 30%; left: 35%; animation-delay: 5.5s; }
.fish-13 { top: 40%; right: 35%; animation-delay: 6s; }
.fish-14 { top: 50%; left: 45%; animation-delay: 6.5s; }
.fish-15 { top: 60%; right: 45%; animation-delay: 7s; }
.fish-16 { top: 70%; left: 55%; animation-delay: 7.5s; }
.fish-17 { top: 80%; right: 55%; animation-delay: 8s; }
.fish-18 { top: 5%; left: 65%; animation-delay: 8.5s; }
.fish-19 { top: 15%; right: 65%; animation-delay: 9s; }
.fish-20 { top: 25%; left: 75%; animation-delay: 9.5s; }
.fish-21 { top: 35%; right: 75%; animation-delay: 10s; }
.fish-22 { top: 45%; left: 85%; animation-delay: 10.5s; }
.fish-23 { top: 55%; right: 85%; animation-delay: 11s; }
.fish-24 { top: 65%; left: 95%; animation-delay: 11.5s; }

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-20px) rotate(5deg) scale(1.1);
    }
    50% {
        transform: translateY(-35px) rotate(-3deg) scale(0.9);
    }
    75% {
        transform: translateY(-15px) rotate(7deg) scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .content {
        padding: 30px 20px;
        margin: 10px;
        border-radius: 15px;
    }
    
    .logo h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .main-message h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .main-message p {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .construction-icon {
        gap: 15px;
        margin: 30px 0;
    }
    
    .gear {
        font-size: 2rem;
    }
    
    .progress-section {
        margin: 30px 0;
    }
    
    .fish {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 25px 15px;
        margin: 5px;
    }
    
    .logo h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .main-message h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .main-message p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .construction-icon {
        gap: 10px;
        margin: 25px 0;
    }
    
    .gear {
        font-size: 1.5rem;
    }
    
    .fish {
        font-size: 1.2rem;
    }
    
    .progress-section {
        margin: 25px 0;
    }
    
    .progress-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .content {
        padding: 20px 10px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .main-message h2 {
        font-size: 1.3rem;
    }
    
    .main-message p {
        font-size: 0.85rem;
    }
    
    .gear {
        font-size: 1.3rem;
    }
    
    .fish {
        font-size: 1rem;
    }
}
