/* public/css/style.css */

/* Genel Sıfırlamalar ve Temel Stil */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;

    /* Sayfanın genel düzenini flexbox ile ayarla */
    display: flex;
    flex-direction: column; /* Öğeleri dikey olarak sırala (header, main, footer) */
    min-height: 100vh;      /* Body'nin en az viewport yüksekliği kadar olmasını sağla */
}

/* Ana Başlık (Header) */
.main-header {
    background-color: #007bff; /* Mavi */
    color: white;
    padding: 15px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;             /* Tam genişlik */
    box-sizing: border-box;  /* Padding'i genişliğe dahil et */
}

/* Ana Navigasyon (Header içindeki menü) */
.main-nav {
    display: flex;            /* Flexbox kullan */
    justify-content: space-between; /* Öğeler arasında boşluk bırak */
    align-items: center;      /* Dikeyde hizala */
    max-width: 1200px; /* İçeriği ortalamak için max-width */
    margin: 0 auto;    /* Ortala */
    width: 100%;
}

.logo {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 20px; /* Logo ile menü arasında boşluk */
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    /* flex-grow: 1; */ /* Bu, menünün kalan alanı doldurmasını sağlar, isteğe bağlı */
    justify-content: flex-start; /* Menü öğelerini sola hizala */
    align-items: center;
}

.nav-links li {
    margin-right: 25px; /* Menü öğeleri arasında boşluk */
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #cccccc;
}

/* Dil Seçici */
.lang-switcher {
    margin-left: auto; /* Sağ tarafa it (nav-links'ten sonra) */
    padding-left: 20px; /* Soldan boşluk */
}
.lang-switcher select {
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: #f8f8f8;
    color: #333;
}


/* Ana İçerik Alanı */
main {
    flex-grow: 1; /* Kalan tüm dikey alanı doldurmasını sağlar */
    padding: 20px;
    width: 100%;
    box-sizing: border-box; /* Padding'i genişliğe dahil et */
    display: flex; /* İçeriği ortalamak veya düzenlemek için flex kullanabiliriz */
    justify-content: center; /* İçeriği yatayda ortala */
    align-items: flex-start; /* İçeriği dikeyde yukarı hizala */
}

.container {
    width: 100%;
    max-width: 400px; /* Mobil cihazlar için maksimum genişlik */
    /* padding: 20px; */ /* main zaten padding veriyor, çakışmayı önlemek için kaldırıldı */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.auth-form, .dashboard {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%; /* Kendi max-width'ine kadar genişlesin */
}


/* Ana Altlık (Footer) */
.main-footer {
    text-align: center;
    padding: 20px;
    background-color: #34495e; /* Koyu gri mavi */
    color: white;
    font-size: 0.9rem;
    width: 100%;             /* Tam genişlik */
    box-sizing: border-box;  /* Padding'i genişliğe dahil et */
}

.auth-form, .dashboard {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h2 {
    color: #007bff;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.form-options a {
    color: #007bff;
    text-decoration: none;
}

.btn {
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    text-decoration: none;
    text-align: center;
}

.primary-btn {
    background-color: #007bff;
    color: white;
}

.success-btn {
    background-color: #28a745;
    color: white;
}

.secondary-btn {
    background-color: #6c757d;
    color: white;
}

.google-btn {
    background-color: #db4437; /* Google kırmızısı */
    color: white;
}

.facebook-btn {
    background-color: #3b5998; /* Facebook mavisi */
    color: white;
}

.btn:hover:not(:disabled) {
    opacity: 0.9;
}

.btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.social-login {
    margin-top: 25px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.social-login p {
    margin-bottom: 15px;
}

.message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Dashboard spesifik stiller */
.balance-info h3 {
    color: #28a745;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.balance-info span {
    font-weight: bold;
    color: #007bff;
}

.ad-section {
    margin-top: 30px;
    padding: 20px;
    border: 1px dashed #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
}

/* Mobil uyumluluk için medya sorguları */
@media (max-width: 600px) {
    body {
        align-items: flex-start; /* Küçük ekranlarda içeriği üste yasla */
        padding-top: 20px;
    }
    .auth-form, .dashboard {
        margin: 0 15px;
        padding: 20px 15px;
    }
    .form-group input {
        width: 100%; /* Mobil cihazlarda tam genişlik */
    }
}

/* Modal (Arka plan) */
.modal {
    display: none; /* Varsayılan olarak gizli */
    position: fixed; /* Ekranın üzerinde durur */
    z-index: 1000; /* Diğer her şeyin üstünde */
    left: 0;
    top: 0;
    width: 100%; /* Tam genişlik */
    height: 100%; /* Tam yükseklik */
    overflow: auto; /* Gerekirse kaydırma çubukları */
    background-color: rgba(0,0,0,0.7); /* Hafif karartılmış arka plan */
    justify-content: center;
    align-items: center;
}

/* Modal İçeriği */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%; /* Mobil uyumluluk için */
    max-width: 700px; /* Maksimum genişlik */
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
}

/* Kapatma Butonu */
.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: 10px;
}

.close-button:hover,
.close-button:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* YouTube Oynatıcı için Responsive düzenleme */
#youtubePlayer {
    aspect-ratio: 16 / 9; /* 16:9 en boy oranı */
    width: 100%;
    height: auto;
    margin-top: 15px;
}

/* Mesaj stilleri */
.message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}


/* Responsive medya sorguları */
@media (max-width: 600px) {
    .main-nav {
        flex-direction: column; /* Mobil cihazlarda dikey sırala */
        align-items: flex-start; /* Sola hizala */
    }
    .logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-top: 10px;
    }
    .nav-links li {
        margin-right: 0;
        margin-bottom: 5px;
    }
    .lang-switcher {
        margin-left: 0; /* Otomatik margin'i kaldır */
        margin-top: 10px;
        width: 100%;
        text-align: left;
    }
    .container {
        margin: 0 15px; /* Yanlardan boşluk bırak */
        padding: 0; /* Artık container'a padding vermiyoruz */
    }
    .auth-form, .dashboard {
        padding: 20px 15px;
    }
    .modal-content {
        width: 95%;
        padding: 15px;
    }
    .close-button {
        font-size: 24px;
        right: 10px;
        top: 5px;
    }
}

/* Withdraw Page Specific Styles */
.withdraw-page {
    display: flex;
    max-width: 1200px; /* Geniş sayfa için genişlet */
    margin: 20px auto;
    background-color: #2c3e50; /* Koyu arka plan */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: #ecf0f1; /* Açık yazı rengi */
}



.withdraw-page .content {
    flex-grow: 1;
    padding: 30px;
}

.withdraw-page h1 {
    color: #3498db; /* Mavi başlık */
    margin-bottom: 20px;
    text-align: center;
}

.withdraw-page .current-balance {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #bdc3c7;
}

.withdraw-page .current-balance span {
    font-weight: bold;
    color: #2ecc71; /* Yeşil vurgu */
}

.crypto-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Esnek ızgara düzeni */
    gap: 20px;
}

.crypto-card {
    background-color: #34495e;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative; /* Balonu konumlandırmak için */
    overflow: hidden; /* Balonun dışarı taşmasını önle */
}

/* FaucetPay Bakiye Balonu */
.faucetpay-balance-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #3498db; /* Mavi arka plan */
    color: white;
    padding: 5px 10px;
    border-radius: 15px; /* Oval balon şekli */
    font-size: 0.85rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px; /* İkon ve yazı arasına boşluk */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 10; /* Diğer öğelerin üzerinde görünmesi için */
    white-space: nowrap; /* Tek satırda kalmasını sağla */
    max-width: calc(100% - 20px); /* Kart genişliğini aşmasını önle */
    overflow: hidden; /* Metin taşarsa gizle */
    text-overflow: ellipsis; /* Metin taşarsa üç nokta göster */
}

.faucetpay-balance-badge img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    filter: brightness(0) invert(1); /* FaucetPay logosunu beyaz yap */
}

.faucetpay-balance-badge span {
    line-height: 1; /* Metnin dikey hizalanması için */
}

.crypto-card:hover:not(.disabled) {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.crypto-card.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.crypto-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.crypto-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.crypto-card h3 {
    color: white;
    font-size: 1.4rem;
    margin: 0;
    line-height: 1.2;
}

.crypto-price {
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    font-size: 0.9em;
    color: #bdc3c7;
}

.crypto-price span.price-change {
    font-weight: bold;
}

.crypto-price .positive {
    color: #2ecc71; /* Yeşil */
}

.crypto-price .negative {
    color: #e74c3c; /* Kırmızı */
}

.crypto-card p {
    margin: 5px 0;
    color: #bdc3c7;
}

.crypto-card p strong {
    color: #e74c3c; /* Minimum çekim miktarını kırmızı yap */
}

.crypto-card p span {
    color: #f1c40f; /* Karşılık gelen bakiyeyi sarı yap */
    font-weight: bold;
}

.withdraw-form {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.withdraw-form input[type="text"],
.withdraw-form input[type="email"] { /* FaucetPay Email olursa */
    width: calc(100% - 40px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #7f8c8d;
    border-radius: 4px;
    background-color: #ecf0f1;
    color: #333;
    font-size: 1rem;
}

.withdraw-form .btn {
    width: calc(100% - 40px);
    padding: 12px;
    font-size: 1.1rem;
}

.crypto-card .btn.secondary-btn {
    background-color: #95a5a6; /* Gri boş butonu */
    color: white;
}

/* Responsive Düzenleme */
@media (max-width: 768px) {
    .withdraw-page {
        flex-direction: column; /* Dikey olarak sırala */
        margin: 10px;
    }

    .withdraw-page .content {
        padding: 20px;
    }
    .crypto-cards {
        grid-template-columns: 1fr; /* Mobil cihazlarda tek sütun */
    }
    .faucetpay-balance-badge {
        font-size: 0.75rem; /* Mobil için biraz küçült */
        padding: 4px 8px;
        top: 8px;
        right: 8px;
    }
    .faucetpay-balance-badge img {
        width: 14px;
        height: 14px;
    }
}
.dashboard-container {
    padding: 20px;
    max-width: 1200px; /* Dashboard için daha geniş bir alan */
    margin: 20px auto; /* Ortala */
    background-color: #f4f7f6; /* Hafif arka plan */
    border-radius: 8px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Esnek kart ızgarası */
    gap: 25px; /* Kartlar arası boşluk */
}

.dashboard-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.dashboard-card .card-icon {
    font-size: 3rem;
    color: #007bff; /* İkon rengi */
    margin-bottom: 15px;
}

.dashboard-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
}

.dashboard-card p {
    margin: 5px 0;
    color: #555;
}

/* Bakiye Kartı */
.balance-card .balance-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #28a745; /* Yeşil bakiye */
    margin: 0;
}
.balance-card .small-text {
    font-size: 0.9rem;
    color: #888;
}

/* Bonus Kartı */
.bonus-card .bonus-value {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ffc107; /* Sarımsı bonus */
    margin: 0;
}
.bonus-card .bonus-details {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    font-size: 0.95rem;
    color: #6c757d;
}
.bonus-card .bonus-details span {
    margin-bottom: 3px;
}


/* Reklam Aktivasyon Kartı */
.ad-activation-card .btn {
    width: 80%; /* Buton genişliğini ayarla */
    margin-top: 15px;
    padding: 12px 20px;
    font-size: 1.1rem;
}

.ad-activation-card .ad-status-message {
    margin-top: 15px;
    font-weight: bold;
    color: #555;
    font-size: 0.95rem;
}
.ad-activation-card .ad-status-message.active-timer {
    color: #007bff; /* Aktif zamanlayıcı için mavi */
}


/* Sayfa İçi Rastgele Reklam Kartı */
.random-ad-slot-card {
    grid-column: span 1; /* Normal kart genişliği */
    /* Daha büyük bir reklam göstermek isterseniz: grid-column: 1 / -1; ile tüm satırı kaplar */
}

.random-ad-slot-card .card-content.random-ad-content {
    width: 100%;
    margin-top: 15px;
    /* İçeriğin tam genişlikte olmasını sağlar */
}

.responsive-ad-img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
}

.responsive-iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 en boy oranı */
    height: 0;
    overflow: hidden;
    background-color: #f0f0f0; /* Yükleme göstergesi */
    border-radius: 5px;
}
.responsive-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.responsive-ad-iframe {
    width: 100%;
    height: 100%; /* İçindeki div tarafından kontrol edilir */
    border: none;
}

.ad-disclaimer {
    font-size: 0.75rem;
    color: #999;
    margin-top: 5px;
}

.small-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
}


/* Hızlı Erişim Linkleri Kartı */
.quick-links-card .quick-links-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    width: 100%;
}
.quick-links-card .quick-links-list li {
    margin-bottom: 10px;
}
.quick-links-card .quick-links-list a {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Sola hizala */
    background-color: #e9ecef;
    color: #333;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.quick-links-card .quick-links-list a:hover {
    background-color: #007bff;
    color: white;
}
.quick-links-card .quick-links-list a i {
    margin-right: 10px;
    font-size: 1.1rem;
}


/* Modal Stilleri (Küçük iyileştirmeler) */
.modal-content {
    /* ... mevcut stiller ... */
}
.modal-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}
.modal-ad-content-wrapper {
    width: 100%;
    height: auto;
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eee;
    border-radius: 8px;
    overflow: hidden; /* İçeriğin taşmasını engelle */
}
.modal-ad-status {
    margin-top: 15px;
    font-weight: bold;
    color: #007bff; /* Mavi durum mesajı */
}


/* Responsive Ayarlamalar */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 10px;
        margin: 10px auto;
    }
    .dashboard-grid {
        grid-template-columns: 1fr; /* Mobil cihazlarda tek sütun */
        gap: 15px;
    }
    .dashboard-card {
        padding: 20px;
    }
    .dashboard-card .card-icon {
        font-size: 2.5rem;
    }
    .dashboard-card h3 {
        font-size: 1.2rem;
    }
    .balance-card .balance-value,
    .bonus-card .bonus-value {
        font-size: 2rem;
    }
    .ad-activation-card .btn {
        width: 90%;
        font-size: 1rem;
    }
    .quick-links-card .quick-links-list a {
        justify-content: center; /* Ortala */
        font-size: 0.95rem;
        padding: 8px 10px;
    }
    .quick-links-card .quick-links-list a i {
        margin-right: 8px;
    }

    .responsive-iframe-container {
        padding-bottom: 75%; /* Mobil için daha kareye yakın */
    }
    .responsive-iframe-container iframe {
        height: 100%;
    }
    .random-ad-slot-card .responsive-iframe-container[style*="height: 250px"] {
        height: 200px !important; /* Kod reklamı yüksekliğini mobilde ayarla */
        padding-bottom: 0;
    }
}
.landing-page-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    text-align: center;
    background-color: #f0f8ff; /* Açık mavi arka plan */
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.hero-content {
    flex: 1;
    padding: 0 40px;
    text-align: left; /* Metni sola hizala */
}

.hero-section h1 {
    font-size: 3.5rem;
    color: #007bff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start; /* Butonları sola hizala */
}

.hero-cta-buttons .large-btn {
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 8px;
    min-width: 180px;
}

.hero-image {
    flex: 1;
    padding: 0 40px;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Features Section */
.features-section {
    padding: 60px 0;
    text-align: center;
    background-color: #ffffff;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.features-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 40px;
}

.feature-card {
    background-color: #f8fafd; /* Çok açık mavi */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #007bff; /* Üstte vurgu çizgisi */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.feature-card .feature-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
}

.how-it-works-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 0 40px;
}

.step-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    position: relative;
    text-align: left;
    border-bottom: 4px solid #28a745; /* Yeşil vurgu */
}

.step-card .step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    background-color: #28a745;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-top: 20px; /* Numaranın altından başla */
    margin-bottom: 10px;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}


/* Call to Action Section */
.cta-section {
    background-color: #007bff; /* Mavi arka plan */
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 50px;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-section .large-btn {
    padding: 15px 35px;
    font-size: 1.3rem;
    border-radius: 8px;
    background-color: #28a745; /* Yeşil buton */
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.cta-section .large-btn:hover {
    background-color: #218838;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 40px 0;
    }
    .hero-content {
        padding: 0 20px;
        text-align: center;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-cta-buttons .large-btn {
        width: 80%;
        max-width: 250px;
    }
    .hero-image {
        padding: 40px 20px 0;
        text-align: center;
    }

    .features-section, .how-it-works-section, .cta-section {
        padding: 40px 0;
    }
    .features-section h2, .how-it-works-section h2, .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .features-grid, .steps-grid {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .step-card .step-number {
        top: -15px;
        left: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    .step-card h3 {
        font-size: 1.3rem;
    }
    .cta-section p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .cta-section .large-btn {
        width: 80%;
        max-width: 250px;
        font-size: 1.1rem;
    }
}
.secondary-ad-card .card-icon {
    color: #f39c12; /* Turuncu ikon */
}
.secondary-ad-card .btn.success-btn {
    background-color: #f39c12; /* Turuncu buton */
    color: white;
}
.secondary-ad-card .btn.success-btn:hover:not(:disabled) {
    background-color: #e67e22;
}
.secondary-ad-card .ad-status-message {
    margin-top: 10px;
    font-size: 0.9em;
    color: #7f8c8d;
}
.secondary-ad-card .ad-status-message.cooldown-active {
    color: #e67e22; /* Turuncu zamanlayıcı */
}
