

:root {
    --primary: #e1ad01;
    --secondary: #ff8c00;
    --accent: #4b5320;
    --bg-dark: #0F0F0F;
}

body {
    background-color: var(--bg-dark);
    color: #fff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Glassmorphism Kart Yapısı */
.main-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

/* Arka plan için neon parlama efekti */
.main-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

/* Başlık */
.neon-text {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(225, 173, 1, 0.4);
    font-weight: 800;
    letter-spacing: 1px;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Input Alanı */
.url-input {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #333;
    color: #fff;
    border-radius: 12px;
    padding: 18px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.url-input:focus {
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(225, 173, 1, 0.2);
    outline: none;
    color: #fff;
}

/* Buton Tasarımı */
.btn-download {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: #000;
    font-weight: 700;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
    color: #000;
}

.btn-download:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Durum Pill (Hap) */
.status-pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    animation: fadeIn 0.5s ease;
}

/* Reklam Alanları */
.ad-slot {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin: 20px auto;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sonuç Alanı */
.result-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--accent);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    animation: slideUp 0.4s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* Glassmorphism Modal Tasarımı */
.glass-modal {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

.glass-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-modal .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

/* Modalı hafif yukarıdan aşağıya kayarak getir */
.modal.fade .modal-dialog {
    transform: translate(0, -50px);
    transition: transform 0.3s ease-out;
}
.modal.show .modal-dialog {
    transform: none;
}