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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
}

.maintenance-page {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    position: relative;
}

.logo-container {
    margin-bottom: 3rem;
    position: relative;
}

.custom-logo {
    max-width: 120px;
    max-height: 120px;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.custom-logo:hover {
    transform: scale(1.05);
}

.logo-fallback {
    font-size: 4rem;
    color: #5865F2;
    margin-bottom: 1rem;
    display: none;
}

.custom-logo:not([src]),
.custom-logo[src=""],
.custom-logo[src="logo.png"] {
    display: none;
}

.custom-logo:not([src]) + .logo-fallback,
.custom-logo[src=""] + .logo-fallback,
.custom-logo[src="logo.png"] + .logo-fallback {
    display: block;
}

.content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff0000, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    font-size: 1.1rem;
    color: #b8bcc8;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.instagram-link {
    margin-bottom: 2rem;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #ff00dd, #ff00dd, #ffd800, #ff00dd, #ffd800, #ffd800);
    background-size: 300% 300%;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    animation: gradientShift 3s ease infinite;
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.3);
    background-position: 100% 0;
}

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

.completion {
    font-size: 0.9rem;
    color: #72767D;
    font-style: italic;
    margin-top: 2rem;
}

.logo-upload {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #b8bcc8;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.upload-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .maintenance-page {
        padding: 1rem;
    }
    
    .content h1 {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .custom-logo {
        max-width: 80px;
        max-height: 80px;
    }
    
    .logo-fallback {
        font-size: 3rem;
    }
    
    .logo-upload {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 1.8rem;
    }
    
    .instagram-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.maintenance-page {
    animation: fadeIn 0.8s ease-out;
}

/* Background gradient effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(88, 101, 242, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(87, 242, 135, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}
