/* Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #fff;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Arka Plan ve Blur Efekti */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Buraya kendi bisiklet silüeti görselini eklemelisin */
    background: url('background.jpeg') no-repeat center center;
    background-size: cover;
    filter: blur(8px) brightness(0.4); /* Flu efekti burada veriliyor */
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(0,0,0,0.8) 100%);
    z-index: -1;
}

/* İçerik Düzeni */
.content {
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    position: relative;
}

/* Logo */
.logo {
    font-size: 3rem;
    letter-spacing: 10px;
    font-weight: 900;
    color: #d4af37; /* Altın/Bronz tonu */
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Hero Yazıları */
.hero-text h2 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    font-weight: 900;
    margin-bottom: 10px;
}

.hero-text h2 span {
    color: rgba(255, 255, 255, 0.1);
    -webkit-text-stroke: 1px #fff;
}

.subtitle {
    font-size: 1.5rem;
    letter-spacing: 5px;
    opacity: 0.8;
}

/* Durum Çubuğu (Sağ Taraf) */
.status-container {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.status-bar-wrapper {
    text-align: center;
}

.status-label {
    font-size: 0.7rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.status-bar {
    width: 15px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.status-bar .fill {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, #d4af37, #f1c40f);
    box-shadow: 0 0 15px #d4af37;
}

.percentage {
    margin-top: 15px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #d4af37;
}

.percentage span {
    display: block;
    font-size: 0.6rem;
    color: #fff;
}

.milestones {
    font-size: 0.8rem;
    letter-spacing: 2px;
    line-height: 3;
}

.fade { opacity: 0.4; }

/* Alt Bilgiler */
.footer-features {
    display: flex;
    gap: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .status-container {
        position: relative;
        transform: none;
        top: 0;
        margin-top: 40px;
    }
    .footer-features {
        flex-direction: column;
        gap: 10px;
    }
}