:root {

    --gold: #d4af37;

    --gold-hover: #f1d592;

    --deep-dark: #0f0f0f;

    --soft-dark: #1a1a1a;

}



body { 

    font-family: 'Poppins', sans-serif; 

    /* Tam siyah yerine derinliği olan bir gradyan */

    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);

    color: #f8f9fa; 

    margin: 0; 

    height: 100vh;

}



/* Landing Page */

.hero-section { 

    
    display: flex; 

    flex-direction: column; 

    align-items: center; 

    justify-content: center; 

}



.logo-main { 

    font-size: 4rem; 

    font-weight: 800; 

    letter-spacing: 10px; 

    background: linear-gradient(to bottom, #d4af37 20%, #f1d592 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    margin-bottom: 0;

}



.social-links a { 

    color: #fff; 

    font-size: 1.8rem; 

    margin: 0 15px; 

    transition: all 0.3s ease;

    opacity: 0.7;

}



.social-links a:hover { 

    color: var(--gold); 

    opacity: 1;

    transform: translateY(-3px);

}



/* Buton Düzenlemesi: Siyah değil, parlayan Altın */

.btn-login {

    background: linear-gradient(45deg, #d4af37, #b8952e);

    color: #000 !important;

    font-weight: 700;

    padding: 16px 50px;

    border-radius: 50px;

    text-decoration: none;

    letter-spacing: 2px;

    border: none;

    transition: all 0.4s ease;

    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);

    margin-top: 20px;

}



.btn-login:hover { 

    transform: scale(1.05); 

    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);

    background: linear-gradient(45deg, #f1d592, #d4af37);

}



/* Modal ve Formlar */

.modal-content {

    background: #111 !important;

    border: 1px solid rgba(212, 175, 55, 0.3) !important;

    border-radius: 20px !important;

    box-shadow: 0 0 40px rgba(0,0,0,0.8);

}



.form-label {

    color: var(--gold); /* Etiketler altın sarısı olsun, daha okunur */

    font-weight: 500;

    letter-spacing: 1px;

    margin-bottom: 10px;

}



.form-control {

    background: #000 !important;

    border: 1px solid #333 !important;

    color: #fff !important;

    padding: 14px !important;

    border-radius: 10px !important;

}



.form-control:focus {

    border-color: var(--gold) !important;

    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2) !important;

}



/* Giriş Yap Butonu (Modal İçi) */

.btn-gold {

    background: var(--gold);

    color: #000 !important;

    border: none;

    transition: 0.3s;

}



.btn-gold:hover {

    background: var(--gold-hover);

    transform: translateY(-2px);

}



/* Dijital Kart Detayları */

.digital-card {

    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);

    border: 1px solid rgba(212, 175, 55, 0.5);

    border-radius: 20px;

    padding: 30px;

    position: relative;

    box-shadow: 0 20px 50px rgba(0,0,0,0.6);

    background-image: url('https://www.transparenttextures.com/patterns/fountain-pen.png'); /* Hafif doku efekti */

}



.chip-icon {

    width: 45px;

    height: 35px;

    background: linear-gradient(45deg, #d4af37, #f1d592);

    border-radius: 5px;

    margin-bottom: 20px;

    position: relative;

}



.card-number {

    font-family: 'Courier New', Courier, monospace;

    font-size: 22px;

    letter-spacing: 3px;

    color: var(--gold);

    text-shadow: 0 2px 4px rgba(0,0,0,0.5);

}



/* Stat Kutuları - Glassmorphism */

.stat-box {

    background: rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(5px);

    border-radius: 18px;

    padding: 20px;

    transition: 0.3s;

}



.stat-box:hover {

    border-color: var(--gold);

    background: rgba(212, 175, 55, 0.05);

}



/* İşlem Listesi */

.transaction-item {

    background: rgba(255, 255, 255, 0.02);

    margin-bottom: 12px;

    padding: 15px;

    border-radius: 12px;

    border-left: 3px solid var(--gold);

    transition: 0.3s;

}



.transaction-item:hover {

    background: rgba(255, 255, 255, 0.05);

}

/* Müşteri Paneli Yeni Tasarım */
.loyalty-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
}

.loyalty-title {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

/* Sadakat Kutucukları */
.check-container { display: flex; gap: 8px; align-items: center; margin-bottom: 10px; }
.check-box {
    width: 22px; height: 22px;
    border: 1px solid var(--gold);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: var(--gold);
}
.check-box.active { background: var(--gold); color: #000; }

/* Özel Butonlar */
.btn-whatsapp {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    transition: 0.3s;
}
.btn-whatsapp:hover { background: var(--gold); color: #000; }

.btn-invite {
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
}