/* Temel Ayarlar */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-y: auto; /* Kaydırmayı etkinleştir */
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #121212; /* Dark theme background */
    color: #ffffff; /* Kontrastlı metin rengi */
    box-sizing: border-box;
}

/* Konteyner */
.container {
    max-width: 90%; /* Mobil için genişliği optimize et */
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    background-color: #1a1a1a; /* Daha açık bir koyu ton */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Logo */
.logo-container {
    margin: 20px 0;
}

.logo {
    max-width: 120px; /* Mobil için optimize edilmiş boyut */
    height: auto;
}

/* Başlık ve Açıklama */
.content h1 {
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #f1f1f1; /* Daha iyi görünürlük için */
}

.description {
    font-size: 1em;
    color: #b3b3b3; /* Hafif bir kontrast */
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Adım Listesi */
.steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steps li {
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 8px;
    background-color: #242424; /* Adım kartı için koyu arka plan */
    color: #e0e0e0;
    text-align: left;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.steps strong {
    color: #ff5c5c; /* Modern kırmızı vurgu */
}

.step-image {
    display: block;
    margin: 15px auto;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    margin-top: 30px;
    font-size: 0.85em;
    color: #777777;
    text-align: center;
}

/* Hover Efektleri */
.steps li:hover {
    background-color: #292929; /* Hover için hafif açık ton */
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.step-image:hover {
    transform: scale(1.05); /* Görsel büyütme efekti */
    transition: transform 0.3s ease;
}

/* Mobil Uyum Medya Sorguları */
@media (max-width: 768px) {
    .content h1 {
        font-size: 1.5em;
    }

    .description {
        font-size: 0.9em;
    }

    .steps li {
        font-size: 0.9em;
        padding: 12px;
    }

    .logo {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 1.2em;
    }

    .description {
        font-size: 0.85em;
    }

    .steps li {
        font-size: 0.85em;
        padding: 10px;
    }

    .logo {
        max-width: 80px;
    }
}
