/* /assets/css/style.css - Dark Crypto Theme (محسّن) */
body {
    background-color: #0f172a; /* تم التصحيح من #ffffff إلى اللون الداكن */
    color: #e2e8f0;
    font-family: 'Poppins', sans-serif;
}

.navbar {
    border-bottom: 2px solid #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
    background-color: #111827 !important;
}
.navbar-brand img {
    max-height: 40px;
    margin-right: 10px;
    filter: drop-shadow(0 0 5px #22c55e);
}

.card {
    border: 1px solid #22c55e;
    box-shadow: 0 0 5px rgba(34, 197, 94, 0.3);
    background-color: #111827;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.btn-primary {
    background-color: #22c55e;
    border-color: #16a34a;
    color: #0f172a;
    font-weight: bold;
    transition: all 0.3s;
}
.btn-primary:hover {
    background-color: #16a34a;
    border-color: #15803d;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

.btn-outline-primary {
    border-color: #22c55e;
    color: #22c55e;
}
.btn-outline-primary:hover {
    background-color: #22c55e;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
    padding: 80px 0;
}

/* ===== الكلاسات الموحدة ===== */
.stat-card {
    background: linear-gradient(145deg, #111827, #1a2332);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}
.stat-card:hover {
    border-color: #22c55e;
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.3);
    transform: translateY(-5px);
}
.stat-icon {
    font-size: 3rem;
    color: #22c55e;
    margin-bottom: 1rem;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #22c55e;
}
.stat-label {
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.feature-card {
    background: #111827;
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s;
}
.feature-card:hover {
    border-color: #22c55e;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

/* ===== كلاسات خاصة بـ home.php ===== */
.home-hero {
    background: linear-gradient(145deg, #0e1525, #1a2332);
    border-bottom: 2px solid rgba(34, 197, 94, 0.3);
    padding: 4rem 0;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}
.hero-title span {
    color: #22c55e;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}
.withdrawal-table {
    background: #111827;
    border-radius: 1rem;
    overflow: hidden;
}
.cta-section-home {
    background: linear-gradient(145deg, #111827, #1a2332);
    border: 2px solid #22c55e;
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
}

/* Auth forms */
.auth-card {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
}
.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}
.auth-header img {
    height: 60px;
    margin-bottom: 1rem;
}

/* جداول */
.table-dark {
    background-color: #111827;
    border-radius: 1rem;
    overflow: hidden;
}
.table-dark th {
    border-bottom: 2px solid #22c55e;
    color: #22c55e;
}
.table-dark td {
    border-color: #1e293b;
    color: #e2e8f0;
}
.table-hover tbody tr:hover {
    background-color: #1e293b;
}

/* Responsive */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .cta-section-home {
        padding: 2rem;
    }
}