/* ======================================================
   KAHVE FALI — CSS
   faldunyam.com teması (mor + pembe + monospace)
====================================================== */

.kf-wrap {
    max-width: 800px;
    margin: 40px auto 70px;
    padding: 0 18px;
    font-family: monospace;
}

/* ---- Hero ---- */
.kf-hero {
    text-align: center;
    background-color: rgb(75, 64, 95);
    color: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    margin-bottom: 26px;
    box-shadow: 0 6px 20px rgba(75, 64, 95, 0.3);
}

.kf-baslik {
    font-family: monospace;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 0 0 10px;
    font-size: 32px;
}

.kf-aciklama {
    color: #ded6e8;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---- Seçim alanı ---- */
.kf-adim {
    background-color: rgb(233, 217, 236);
    border: 2px solid rgb(75, 64, 95);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 14px rgba(75, 64, 95, 0.18);
}

.kf-adim-baslik {
    text-align: center;
    color: rgb(75, 64, 95);
    font-family: monospace;
    font-weight: bold;
    font-size: 21px;
    margin: 0 0 4px;
}

.kf-adim-not {
    text-align: center;
    color: #6a5d80;
    font-size: 13px;
    margin-bottom: 22px;
}

/* ---- Sembol ızgarası ---- */
.kf-semboller {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.kf-sembol {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background-color: #fff;
    border: 2px solid rgb(75, 64, 95);
    border-radius: 12px;
    padding: 14px 8px;
    cursor: pointer;
    transition: all 0.18s ease;
    font-family: monospace;
}

.kf-sembol:hover {
    background-color: #f3e6f5;
    transform: translateY(-2px);
}

.kf-sembol.secili {
    background-color: #cc88b8;
    border-color: rgb(75, 64, 95);
    box-shadow: 0 0 0 3px rgba(204, 136, 184, 0.4);
}

.kf-sembol-emoji {
    font-size: 30px;
    line-height: 1;
}

.kf-sembol-ad {
    font-size: 12px;
    font-weight: bold;
    color: rgb(75, 64, 95);
    text-align: center;
}

.kf-sembol.secili .kf-sembol-ad {
    color: #fff;
}

/* ---- Seçim bilgisi + buton ---- */
.kf-secim-bilgi {
    text-align: center;
    color: rgb(75, 64, 95);
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 18px;
}

.kf-secim-bilgi #kf-sayac {
    color: #d6336c;
    font-size: 18px;
}

.kf-bak-btn {
    display: block;
    margin: 0 auto;
    background-color: rgb(75, 64, 95);
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    font-size: 17px;
    border: none;
    padding: 13px 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: 0 4px 10px rgba(75, 64, 95, 0.3);
}

.kf-bak-btn:hover:not(:disabled) {
    background-color: rgb(216, 129, 238);
}

.kf-bak-btn:disabled {
    background-color: #b3a9c2;
    cursor: not-allowed;
    box-shadow: none;
}

/* ---- Yükleniyor animasyonu ---- */
.kf-yukleniyor {
    text-align: center;
    padding: 40px 0;
    color: rgb(75, 64, 95);
    font-weight: bold;
}

.kf-fincan {
    font-size: 60px;
    animation: kfsalla 1s ease-in-out infinite;
}

@keyframes kfsalla {
    0%, 100% { transform: rotate(-8deg); }
    50%      { transform: rotate(8deg); }
}

/* ---- Sonuç ---- */
.kf-sonuc {
    margin-top: 24px;
    scroll-margin-top: 90px;
}

.kf-sonuc-kart {
    background-color: rgb(233, 217, 236);
    border: 2px solid rgb(75, 64, 95);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 14px rgba(75, 64, 95, 0.18);
}

.kf-sonuc-kart h2 {
    text-align: center;
    color: rgb(75, 64, 95);
    font-family: monospace;
    font-weight: bold;
    font-size: 23px;
    margin: 0 0 20px;
}

.kf-yorum-satir {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background-color: #fff;
    border: 1px solid rgb(75, 64, 95);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 14px;
}

.kf-yorum-emoji {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
}

.kf-yorum-satir strong {
    color: rgb(75, 64, 95);
    font-size: 16px;
}

.kf-yorum-satir p {
    margin: 4px 0 0;
    color: #2b2540;
    font-size: 14px;
    line-height: 1.6;
}

.kf-kapanis {
    background-color: #cc88b8;
    color: #fff;
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
    text-align: center;
}

.kf-tekrar {
    display: block;
    margin: 20px auto 0;
    background-color: #fff;
    color: rgb(75, 64, 95);
    border: 2px solid rgb(75, 64, 95);
    font-family: monospace;
    font-weight: bold;
    font-size: 15px;
    padding: 10px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.kf-tekrar:hover {
    background-color: rgb(75, 64, 95);
    color: #fff;
}

.kf-not {
    text-align: center;
    color: #6a5d80;
    font-size: 13px;
    margin-top: 26px;
}

/* ---- Mobil ---- */
@media screen and (max-width: 576px) {
    .kf-baslik { font-size: 26px; }
    .kf-adim, .kf-sonuc-kart { padding: 18px; }
    .kf-semboller { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; }
    .kf-sembol-emoji { font-size: 26px; }
}
