/* تصميم إبداعي لـ VoiceCare AI - أبشر طويق */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --accent-color: #ff9f43; /* لون برتقالي دافئ للزر */
    --text-color: #2d3436;
    --bg-color: #f0f3f7;
}

body {
    background: var(--bg-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    direction: rtl;
    overflow: hidden; /* لمنع التمرير */
}

/* حاوية التأثيرات الخلفية (الدوائر العائمة) */
.background-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.circle {
    position: absolute;
    background: var(--primary-gradient);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 15s infinite ease-in-out;
}

.circle:nth-child(1) { width: 300px; height: 300px; top: -100px; left: -100px; animation-delay: 0s; }
.circle:nth-child(2) { width: 200px; height: 200px; bottom: -50px; right: -50px; animation-delay: 5s; }
.circle:nth-child(3) { width: 100px; height: 100px; top: 50%; left: 50%; animation-delay: 10s; }

/* الحاوية الرئيسية */
.container {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    text-align: center;
    width: 90%;
    max-width: 450px;
    position: relative;
    z-index: 1;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.container:hover {
    transform: translateY(-5px);
}

/* الهيدر والعنوان */
h1 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 800;
}

p.subtitle {
    color: #636e72;
    font-size: 1rem;
    margin-bottom: 30px;
}

/* زر التحدث الإبداعي */
#start-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 159, 67, 0.3);
    position: relative;
    overflow: hidden;
}

#start-btn:hover {
    background-color: #ff8c2c;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 159, 67, 0.4);
}

/* تأثير "النبض" للزر عندما يكون جاهزاً */
#start-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    opacity: 0;
    animation: pulse 2s infinite;
}

/* صندوق المحادثة */
#chat-box {
    margin-top: 40px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 15px;
    min-height: 80px;
    color: var(--text-color);
    font-size: 1.1rem;
    border: 2px solid #eee;
    position: relative;
}

#chat-box::before {
    content: '💬';
    position: absolute;
    top: -15px;
    right: 20px;
    background: white;
    padding: 0 5px;
    font-size: 1.2rem;
}

/* الأنيميشن */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}body {
    font-size: 24px;
    background-color: #f0f8ff;
    color: #000080;
    text-align: center;
    padding-top: 50px;
}
button {
    font-size: 28px;
    padding: 15px 30px;
    cursor: pointer;
}
