@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

/* 🔹 تنسيقات عامة */
body {
    font-family: 'Cairo', sans-serif;
    background-color: #f0f0f0;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    transition: background 0.3s, color 0.3s;
    direction: rtl; /* النصوص من اليمين إلى اليسار */
}

/* 🔹 الحاوية الرئيسية */
.container {
    width: 90%;
    max-width: 400px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* مسافة بين الكروت */
}

/* 🔹 تنسيق الكروت */
.profile-card, .price-card, .demo-card, .vodafone-card {
    background: white;
    width: 100%;
    max-width: 350px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    direction: rtl;
}

/* 🔹 زر التبديل بين الوضع الليلي والفاتح */
.dark-mode-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #0033cc;
    color: white;
    border: none;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s, transform 0.2s;
}

.dark-mode-btn:hover {
    background: #001a66;
    transform: scale(1.1);
}

/* 🔹 صورة البروفايل */
.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: -20px;
}

/* 🔹 العناوين */
h2 {
    color: #0033cc;
    font-size: 30px;
    margin-bottom: -20px;
}

h3 {
    font-size: 28px;
    color: #0033cc;
    margin-bottom: -5px;
}

/* 🔹 أيقونة Instagram */
.icon svg {
    width: 28px;
    height: 28px;
    fill: #0033cc;
    transition: transform 0.3s ease-in-out;
}

.icon:hover svg {
    transform: scale(1.1);
}

/* 🔹 حقول الإدخال في كارت الأسعار */
.price-card input {
    width: 90%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 25px;
    text-align: center;
    font-size: 16px;
    direction: rtl;
    background-color: #f5f5f5;
    outline: none;
    transition: background-color 0.3s, border-color 0.3s;
}

.price-card input:focus {
    border-color: #0033cc;
    background-color: #e0e0e0;
}

/* 🔹 تحسين عرض السعر */
.price-card p {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}

/* 🔹 مشغل الصوت */
audio {
    width: 100%;
    margin-top: 5px;
    border-radius: 5px;
}

/* 🔹 الوضع الليلي */
.dark-mode {
    background-color: #222;
    color: white;
}

.dark-mode .profile-card, 
.dark-mode .price-card, 
.dark-mode .demo-card, 
.dark-mode .vodafone-card {
    background: #333;
    border-color: #444;
}

.dark-mode h2, .dark-mode h3 {
    color: #66aaff;
}

.dark-mode .dark-mode-btn {
    background: yellow;
    color: black;
}

.dark-mode .price-card input {
    background-color: #444;
    color: white;
    border-color: #666;
}

.dark-mode .price-card input:focus {
    background-color: #555;
    border-color: #66aaff;
}


/* تصميم كارت Vodafone Cash */
.vodafone-card {
    background: white; /* الخلفية بيضاء للوضع الفاتح */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* ظل أخف للوضع الفاتح */
    max-width: 355px;
    width: 100%;
    border: 2px solid #e60000; /* الحدود حمراء */
    flex-direction: row; /* جعل العناصر في صف */
}

/* تحسين ترتيب المحتوى داخل البطاقة */
.vodafone-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: -31px;
    margin-left: -10px;
}

/* تنسيق العنوان */
.vodafone-title {
    font-size: 28px;
    font-weight: bold;
    color: #e60000; /* اللون الأحمر */
    text-align: right;
    margin: 10px 70px 0px -20px;
}

/* زر النسخ */
.copy-btn {
    background: #e60000; /* الخلفية حمراء */
    color: white; /* النص أبيض */
    border: none;
    padding: 10px;
    font-size: 19px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.copy-btn:hover {
    background: #cc0000; /* لون أحمر داكن عند التمرير */
}

/* صورة Vodafone Cash */
.vodafone-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-left: 10px; /* مسافة بين الصورة والمحتوى */
}