/* General Styles */
:root {
    --primary: #9333EA;
    --primary-dark: #6D28D9;
    --secondary: #4C1D95;
    --dark-bg: #0F172A;
    --dark-surface: #1E293B;
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --accent: #7C3AED;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-primary);
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    direction: rtl;
}

/* Header */
.header {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* About Hero Section */
.about-hero {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

/* About Content Section */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-section p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Rating Section */
.rating {
    text-align: center;
    padding: 2rem;
    background: var(--dark-surface);
}

.rating h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stars {
    font-size: 2rem;
    color: var(--accent);
    cursor: pointer;
}

.star {
    transition: color 0.3s ease;
}

.star:hover {
    color: var(--primary);
}

.rating p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* Developer Profile Section */
.developer-profile {
    text-align: center;
    padding: 2rem;
    background: var(--dark-surface);
}

.developer-profile h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.profile-info h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
}

.profile-info p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* Contact Us Section */
.contact-us {
    text-align: center;
    padding: 2rem;
    background: var(--dark-surface);
}

.contact-us h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-us p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 0.5rem 0;
}

.contact-us i {
    margin: 0 0.5rem;
    color: var(--accent);
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background: var(--dark-surface);
    color: var(--text-secondary);
}
