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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

.maintenance-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1508 50%, #2e2410 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content-wrapper {
    max-width: 800px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.logo-section {
    margin-bottom: 40px;
}

.logo {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

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

.main-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.main-content.loaded {
    opacity: 1;
    transform: translateY(0);
}

.icon-container {
    margin-bottom: 30px;
}

.maintenance-icon {
    font-size: 4rem;
    color: #ffc100;
    animation: pulse 2s infinite;
    text-shadow: 0 0 20px rgba(255, 193, 0, 0.5);
}

.main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffc100;
    margin-bottom: 40px;
    text-shadow: 0 0 30px rgba(255, 193, 0, 0.3);
    letter-spacing: -0.5px;
}

.message-box {
    background: rgba(255, 193, 0, 0.1);
    border: 1px solid rgba(255, 193, 0, 0.3);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 193, 0, 0.1);
}

.message-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.message-text:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: #ffc100;
}




.social-section {
    border-top: 1px solid rgba(255, 193, 0, 0.2);
    padding-top: 30px;
}

.social-text {
    font-size: 1rem;
    color: #888;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 193, 0, 0.1);
    color: #ffc100;
    text-decoration: none;
    border-radius: 50%;
    border: 1px solid rgba(255, 193, 0, 0.3);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #ffc100;
    color: #0a0a0a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 0, 0.4);
}

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

.floating-element {
    position: absolute;
    background: rgba(255, 193, 0, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.element-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.element-4 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 30%;
    animation-delay: 6s;
}

/* Animasyonlar */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}


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

/* Responsive tasarım */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.2rem;
    }
    
    .message-box {
        padding: 20px;
    }
    
    .message-text {
        font-size: 1rem;
    }
    
    
    
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .maintenance-icon {
        font-size: 3rem;
    }
    
    .message-box {
        padding: 15px;
    }
    
}
