:root {
    --bg-cream: #f4f4f0;
    --text-brown: #6d4c41;
    --btn-brown: #8d6e63;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-brown);
    overflow-x: hidden;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-cursive {
    font-family: 'Great Vibes', cursive;
}

.glass-card {
    background: white;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    padding: 40px 24px;
    margin: 20px auto;
    max-width: 92%;
}

/* LCV & Butonlar */
.counter-btn {
    background: #fdfdfd;
    border: 1px solid #eee;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choice-card {
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    position: relative;
}

.choice-card.active {
    border-color: var(--btn-brown);
    background: #fdfaf9;
}

.choice-card.active::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 15px;
    color: var(--btn-brown);
    font-weight: bold;
}

#submit-btn:disabled {
    background-color: #ededed;
    color: #bcbcbc;
}

#submit-btn:not(:disabled) {
    background-color: var(--btn-brown);
    color: white;
}

/* Anı Bırak Sekmeleri */
.tab-btn {
    padding: 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    transition: 0.3s;
    width: 100%;
}

.tab-btn.active {
    background: white;
    color: var(--text-brown);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Bildirim Kutusu */
#custom-alert {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.alert-card {
    background: white;
    width: 85%;
    max-width: 320px;
    padding: 40px 20px;
    border-radius: 30px;
    text-align: center;
}

/* Yükleme Önizleme Alanı */
.preview-box {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}