:root {
    --primary-gold: #c5a059;
    --dark-bg: #0a0a0a;
    --text-light: #e0e0e0;
    --glass-bg: rgba(255, 255, 255, 0.02);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#canvas { position: absolute; top: 0; left: 0; z-index: 1; }
.overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.85) 100%);
    z-index: 2;
}

.container {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 500px; /* تصغير حجم الحاوية */
    text-align: center;
}

.content-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2rem;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    animation: fadeIn 1.2s ease-out;
}

.logo h1 {
    font-size: 1.8rem; /* تصغير حجم الخط */
    font-weight: 900;
}

.logo h1 span { color: var(--primary-gold); }

.subtitle {
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
}

.main-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 400;
}

.description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #888;
    margin-bottom: 2rem;
}

.description span {
    color: var(--primary-gold);
    direction: ltr;
    display: inline-block;
    margin-top: 5px;
}

/* تصميم الايميل الاحترافي */
.contact-area {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: all 0.4s ease;
}

.email-icon {
    width: 35px;
    height: 35px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.email-text {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.email-link:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}