* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f7f6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

.container {
    text-align: center;
    padding: 20px;
}

.main-img {
    width: 300px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 30px;
}

/* Yükleme Çubuğu */
.status-bar {
    width: 100%;
    max-width: 400px;
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    margin: 0 auto 10px;
    overflow: hidden;
}

.progress {
    width: 85%;
    height: 100%;
    background: #3498db;
    animation: loading 2s ease-in-out;
}

.percentage {
    font-size: 0.9rem;
    font-weight: bold;
    color: #3498db;
}

.contact {
    margin-top: 40px;
}

.contact a {
    text-decoration: none;
    color: #fff;
    background: #3498db;
    padding: 10px 25px;
    border-radius: 25px;
    transition: 0.3s;
}

.contact a:hover {
    background: #2980b9;
}

@keyframes loading {
    from { width: 0; }
    to { width: 85%; }
}