:root {
    --emerald-500: #10b981;
    --slate-950: #020617;
}

body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: var(--slate-950); }

/* Cam Kart Efekti */
.glass-card {
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* Arka Plan Efektleri */
.bg-blob { position: absolute; width: 400px; height: 400px; filter: blur(120px); z-index: 1; opacity: 0.2; }
.blob-emerald { top: -10%; left: -10%; background: var(--emerald-500); }
.blob-blue { bottom: -10%; right: -10%; background: #2563eb; }

/* İnput Tasarımı */
.custom-input {
    background-color: rgba(2, 6, 23, 0.8) !important;
    border: 1px solid rgba(71, 85, 105, 0.3) !important;
    color: white !important;
    padding: 12px 15px;
    border-radius: 12px;
}
.custom-input:focus {
    border-color: var(--emerald-500) !important;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2) !important;
}

.icon-wrapper { width: 60px; height: 60px; background: var(--slate-950); }
.text-emerald { color: var(--emerald-500); }
.btn-emerald { background: var(--emerald-500); color: white; border: none; transition: 0.3s; }
.btn-emerald:hover { background: #059669; transform: translateY(-2px); color: white; }
.shadow-emerald { box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2); }
.hover-emerald:hover { color: var(--emerald-500) !important; }
.cursor-pointer { cursor: pointer; }