/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #404040 100%);
    min-height: 100vh;
    overflow-x: hidden;
    color: #ffffff;
}

/* Arka plan animasyonu */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.cube {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.cube:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.cube:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.cube:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.cube:nth-child(4) {
    top: 40%;
    left: 60%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.cube:nth-child(5) {
    top: 10%;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 9s;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
}


/* Ana içerik */
.main-content {
    display: grid;
    gap: 40px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Bakım kartı */
.maintenance-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.maintenance-card:hover {
    transform: translateY(-5px);
}

.maintenance-icon {
    font-size: 4rem;
    color: #ce93d8;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
    text-shadow: 0 0 15px rgba(206, 147, 216, 0.8);
}

.maintenance-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.maintenance-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Progress bar */
.progress-container {
    margin: 30px 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ce93d8, #ba68c8, #ab47bc);
    border-radius: 10px;
    width: 0%;
    animation: fillProgress 2s ease-out 1s forwards;
    box-shadow: 0 0 10px rgba(206, 147, 216, 0.5);
}

.progress-text {
    font-weight: 500;
    color: #ce93d8;
}

/* Sunucu Bilgileri */
.server-info {
    margin-top: 40px;
}

.server-info h3 {
    font-family: 'Orbitron', monospace;
    margin-bottom: 20px;
    color: #ce93d8;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.info-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.info-item:hover {
    transform: translateY(-3px);
    background: rgba(206, 147, 216, 0.2);
    border-color: #ce93d8;
}

.info-item i {
    font-size: 1.5rem;
    color: #ce93d8;
    margin-bottom: 10px;
    display: block;
}

.info-item span {
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
}

/* Sosyal medya */
.social-links {
    text-align: center;
    animation: fadeInUp 1s ease-out 1s both;
}

.social-links h3 {
    font-family: 'Orbitron', monospace;
    margin-bottom: 30px;
    color: #ce93d8;
    font-size: 1.5rem;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-btn.twitter:hover {
    background: #000000;
    border-color: #000000;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.social-btn.discord:hover {
    background: #5865f2;
    border-color: #5865f2;
}

.social-btn.tiktok:hover {
    background: #000000;
    border-color: #000000;
}

.social-btn.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.social-btn i {
    font-size: 1.2rem;
}

.social-btn.twitter i {
    font-size: 1.3rem;
    font-weight: bold;
}

/* Son Yenilikler */
.latest-updates {
    animation: fadeInUp 1s ease-out 1.5s both;
}

.latest-updates h3 {
    font-family: 'Orbitron', monospace;
    text-align: center;
    margin-bottom: 30px;
    color: #ce93d8;
    font-size: 1.5rem;
}

.updates-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.update-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #ce93d8;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.update-item:hover {
    transform: translateX(10px);
    background: rgba(206, 147, 216, 0.1);
    border-left-color: #ba68c8;
}

.update-date {
    font-size: 0.9rem;
    color: #ce93d8;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.update-content h4 {
    font-family: 'Orbitron', monospace;
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.update-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 60px;
    padding: 20px;
    opacity: 0.7;
    animation: fadeInUp 1s ease-out 2s both;
}

/* Animasyonlar */
@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 pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes fillProgress {
    to {
        width: 2%;
    }
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .maintenance-card {
        padding: 30px 20px;
    }
    
    .maintenance-title {
        font-size: 2rem;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 15px;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
    
    .social-buttons {
        gap: 15px;
    }
    
    .social-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 12px;
    }
    
    .time-value {
        font-size: 1.2rem;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}
