/* l5.css - The Vault: Supreme Financial Security */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;700;900&display=swap');

:root {
    --gold: #d4af37;
    --gold-bright: #f9d976;
    --bg-black: #05070a;
    --safe-green: #10b981;
    --glass-bg: rgba(255, 255, 255, 0.03);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-black);
    color: white;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    overflow-x: hidden;
}

/* Background Luxury Effect */
.luxury-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a1c23 0%, #05070a 100%);
    z-index: -1;
}

.container { max-width: 900px; margin: 0 auto; padding: 60px 20px; }

/* Security Header */
.security-badge {
    text-align: center;
    margin-bottom: 40px;
}

.security-badge i {
    font-size: 4rem;
    color: var(--gold);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

h1.secure-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: 20px;
    background: linear-gradient(to bottom, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Payment Methods Grid */
.payment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
}

.payment-card {
    background: var(--glass-bg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.payment-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold);
    transform: scale(1.02);
}

.payment-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(20%);
}

.payment-info h3 {
    color: var(--gold-bright);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.payment-info p {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* RedoutPay Special Glow */
.card-rid:hover { box-shadow: 0 0 30px rgba(239, 68, 68, 0.2); }
/* Binance Special Glow */
.card-bin:hover { box-shadow: 0 0 30px rgba(243, 186, 47, 0.2); }
/* Barid Special Glow */
.card-barid:hover { box-shadow: 0 0 30px rgba(16, 185, 129, 0.2); }

/* The "Why Trust Us" Section */
.trust-manifesto {
    background: linear-gradient(145deg, #0a0c12, #111827);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--gold);
    margin: 60px 0;
    position: relative;
}

.trust-manifesto::after {
    content: "CONFIDENTIAL";
    position: absolute;
    top: 20px; left: 20px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.1);
    letter-spacing: 5px;
}

/* Floating WhatsApp Button */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(90deg, #25d366, #128c7e);
    color: white;
    padding: 22px;
    border-radius: 18px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 900;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
    transition: 0.3s;
    margin-top: 40px;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(37, 211, 102, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-up { animation: fadeInUp 0.8s ease forwards; }