/* --- CASHANEM PREMIUM LIVE THEME --- */

/* 1. Hareketli Arka Plan (Living Background) */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #fff;
    min-height: 100vh;
    display: flex; /* İçeriği ortalamak için */
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    
    /* Hareketli Gradyan */
    background: linear-gradient(-45deg, #0f0000, #3a0000, #1a0000, #000000);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite; /* 15 saniyede bir renkler akar */
}

/* Arka Plan Animasyonu */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Arkada uçuşan partikül efekti (Opsiyonel ama hava katar) */
body::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255, 0, 0, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

/* 2. Ana Kapsayıcı (Ortalama) */
.main-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 950px; /* Genişlik ideal */
    padding: 20px;
}

/* 3. Glassmorphism Kart (Daha Şık) */
.glass-card {
    background: rgba(18, 18, 18, 0.75); /* Daha koyu transparan */
    backdrop-filter: blur(20px); /* Bulanıklık arttı */
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 50, 50, 0.2); /* Kırmızı ince çizgi */
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(200, 0, 0, 0.2); /* Arkadan hafif kırmızı ışık */
    overflow: hidden;
}

/* Sol Taraf (Görsel Alanı) */
.promo-section {
    padding: 40px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-img {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease;
}

.promo-img:hover {
    transform: scale(1.03) rotate(1deg); /* Üzerine gelince hafif oynar */
}

/* Sağ Taraf (Form Alanı) */
.form-section {
    padding: 40px;
}

/* Başlıklar */
h1, h2, h3, h4 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-gradient-red {
    background: linear-gradient(90deg, #ff4d4d, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

/* Form Elemanları */
.form-label {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 5px;
    display: block;
}

.form-control, .form-select {
    background: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid #444 !important;
    color: #fff !important;
    border-radius: 12px;
    padding: 12px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: #ff0000 !important;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.8) !important;
}

/* Butonlar */
.btn-cashanem {
    background: linear-gradient(135deg, #d90000 0%, #990000 100%);
    border: none;
    color: white;
    font-weight: 700;
    padding: 14px;
    border-radius: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(150, 0, 0, 0.4);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-cashanem:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6);
    background: linear-gradient(135deg, #ff1a1a 0%, #b30000 100%);
}

.btn-outline-custom {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ddd;
    border-radius: 10px;
    padding: 10px;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .glass-card .row {
        flex-direction: column;
    }
    .promo-section {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px 20px;
    }
    .form-section {
        padding: 30px 20px;
    }
}
/* --- ÖZEL DOSYA YÜKLEME BUTONU --- */
input[type="file"] {
    display: none; /* Çirkin standart butonu gizle */
}

.custom-file-upload {
    border: 2px dashed #ff1a1a; /* Kırmızı kesik çizgi */
    background: rgba(255, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    cursor: pointer;
    border-radius: 12px;
    color: #ff4d4d;
    font-weight: 600;
    transition: all 0.3s ease;
}

.custom-file-upload:hover {
    background: rgba(255, 0, 0, 0.15);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
    transform: translateY(-2px);
}

.custom-file-upload i {
    font-size: 1.5rem;
    margin-right: 10px;
}

#fileName {
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 8px;
    text-align: center;
    font-style: italic;
}
/* --- SİTEYE GİT BUTONU --- */
.btn-site-go {
    display: inline-flex; /* İçerikleri hizalamak için */
    align-items: center;
    justify-content: center;
    padding: 12px 28px; /* Dolgun bir görünüm için iç boşluk */
    background: linear-gradient(135deg, #d32f2f, #ff1a1a); /* Kırmızı gradyan arka plan */
    color: #ffffff !important; /* Beyaz metin rengi */
    text-decoration: none; /* Alt çizgiyi kaldır */
    font-weight: 700; /* Kalın yazı tipi */
    font-size: 1rem;
    border-radius: 50px; /* Yuvarlak (hap şeklinde) köşeler */
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4); /* Kırmızımsı bir gölge/parlama */
    transition: all 0.3s ease; /* Yumuşak geçiş efektleri */
    border: 2px solid rgba(255, 255, 255, 0.1); /* İnce, şeffaf bir kenarlık */
}

/* Hover (Üzerine Gelince) Durumu */
.btn-site-go:hover {
    background: linear-gradient(135deg, #ff1a1a, #d32f2f); /* Gradyan yönünü tersine çevir */
    box-shadow: 0 6px 25px rgba(255, 26, 26, 0.6); /* Parlamayı artır ve genişlet */
    transform: translateY(-3px); /* Butonu hafifçe yukarı kaldır */
    border-color: rgba(255, 255, 255, 0.3); /* Kenarlığı biraz daha belirginleştir */
}

/* İkon ile metin arasındaki boşluk */
.btn-site-go i {
    margin-right: 10px;
    font-size: 1.1rem;
}