/* الأنماط الأساسية */
:root {
    --primary-color: #070a12;
    --secondary-color: #dc2626;
    --accent-color: #f87171;
    --text-color: #ffffff;
    --text-secondary: #94a3b8;
    --nav-bg: rgba(15, 23, 41, 0.95);
    --card-bg: rgba(15, 23, 42, 0.6);
    --border-color: rgba(239, 68, 68, 0.2);
}

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

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.7;
    padding-top: 0;
    margin-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* القائمة العلوية */
nav {
    background: rgba(15, 23, 41, 0.8); /* إعادة الخلفية إلى اللون الأصلي */
    padding: 1rem 2rem;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    border-radius: 15px;
    z-index: 1000;
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    margin-top: 20px;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 3rem;
    list-style: none;
    flex-wrap: wrap; /* إضافة هذه السطر لضمان التفاف العناصر */
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap; /* إضافة هذه السطر لضمان عدم التفاف النص */
}

nav ul li a i {
    font-size: 1.2rem;
}

/* إضافة خلفية حمراء لمربع "انضم الآن" */
nav ul li a[href="https://discord.gg/nexa"] {
    background-color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav ul li a[href="https://discord.gg/nexa"]:hover {
    background-color: var(--accent-color);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* القسم الرئيسي */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    padding: 120px 5% 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0f1f 0%, #380c0c 100%);
    margin: 0;
    padding: 150px 5% 100px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
}

.title-text {
    display: block;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.title-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-right: 1rem;
    animation: float 3s ease-in-out infinite;
}

.hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.hero-description ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.hero-description li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.hero-description li:hover {
    transform: translateY(-5px);
}

.hero-description i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-icon {
    font-size: 15rem;
    color: var(--accent-color);
    opacity: 0.8;
    animation: floatIcon 6s ease-in-out infinite;
}

/* الماسات المتحركة */
.diamonds {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.diamond {
    position: absolute;
    background: linear-gradient(45deg, rgba(220, 38, 38, 0.1), rgba(248, 113, 113, 0.1));
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.1);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(248, 113, 113, 0.2);
    transform: rotate(45deg);
    animation: floatDiamond 15s infinite linear;
}

.diamond:nth-child(1) {
    width: 200px;
    height: 200px;
    top: -100px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.diamond:nth-child(2) {
    width: 300px;
    height: 300px;
    top: 40%;
    right: -150px;
    animation-delay: -5s;
    animation-duration: 25s;
}

.diamond:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 18s;
}

@keyframes floatDiamond {
    0% {
        transform: rotate(45deg) translate(0, 0);
        opacity: 0.1;
    }
    25% {
        transform: rotate(135deg) translate(100px, 100px);
        opacity: 0.3;
    }
    50% {
        transform: rotate(225deg) translate(0, 200px);
        opacity: 0.2;
    }
    75% {
        transform: rotate(315deg) translate(-100px, 100px);
        opacity: 0.3;
    }
    100% {
        transform: rotate(405deg) translate(0, 0);
        opacity: 0.1;
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0);
        filter: drop-shadow(0 5px 15px rgba(220, 38, 38, 0.3));
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
        filter: drop-shadow(0 15px 15px rgba(220, 38, 38, 0.2));
    }
}

/* الأزرار */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-btn {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.primary-btn {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: white;
}

.outline-btn {
    border: 2px solid var(--secondary-color);
    color: var(--text-color);
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
}

.hero-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.hero-btn:hover::after {
    left: 100%;
}

/* تحسينات إضافية للأقسام الأخرى */
section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    margin: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--text-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto;
}

/* تجاوب مع الشاشات الصغيرة */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 150px;
    }

    .hero-title h1 {
        font-size: 3rem;
        align-items: center;
    }

    .hero-description ul {
        grid-template-columns: 1fr;
    }

    .main-icon {
        font-size: 8rem;
        margin-top: 2rem;
    }

    nav {
        width: 95%;
    }

    nav ul {
        gap: 1rem; /* تقليل الفجوة بين العناصر */
    }

    .hero-buttons {
        justify-content: center;
    }

    section {
        padding: 80px 0;
        margin: 20px 0;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .services-grid, 
    .testimonials-grid, 
    .contact-info {
        gap: 2rem;
        padding: 1rem;
    }
}

/* تجاوب مع الشاشات المتوسطة */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }

    .hero-title h1 {
        font-size: 4rem;
        align-items: center;
    }

    .hero-description ul {
        grid-template-columns: 1fr;
    }

    .main-icon {
        font-size: 10rem;
        margin-top: 2rem;
    }

    nav {
        width: 95%;
    }

    .hero-buttons {
        justify-content: center;
    }

    section {
        padding: 100px 0;
        margin: 30px 0;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .services-grid, 
    .testimonials-grid, 
    .contact-info {
        gap: 2rem;
        padding: 1rem;
    }
}

/* تجاوب مع الشاشات الكبيرة */
@media (min-width: 1025px) {
    .hero {
        grid-template-columns: 1.2fr 0.8fr;
        text-align: left;
        padding-top: 120px;
    }

    .hero-title h1 {
        font-size: 5rem;
        align-items: flex-start;
    }

    .hero-description ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-icon {
        font-size: 15rem;
        margin-top: 0;
    }

    nav {
        width: 90%;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    section {
        padding: 120px 0;
        margin: 40px 0;
    }

    .section-header h2 {
        font-size: 3.5rem;
    }

    .services-grid, 
    .testimonials-grid, 
    .contact-info {
        gap: 3rem;
        padding: 2rem;
    }
}

/* قسم من نحن */
.about-content {
    position: relative;
    z-index: 2;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, rgba(220, 38, 38, 0.1), rgba(248, 113, 113, 0.1));
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* الإنجازات */
.about-achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.achievement-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, rgba(220, 38, 38, 0.1), rgba(248, 113, 113, 0.1));
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* قسم الخدمات */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
    border-color: var(--accent-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, rgba(220, 38, 38, 0.1), rgba(248, 113, 113, 0.1));
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* قسم التقييمات */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
    border-color: var (--accent-color);
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.testimonial-icon i {
    font-size: 3rem;
    color: var(--accent-color);
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.testimonial-author h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* قسم التواصل */
.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-item {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
    border-color: var(--accent-color);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.contact-item p a.discord-link {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-item p a.discord-link:hover {
    background-color: var(--accent-color);
}

/* تحديث التجاوب مع الشاشات الصغيرة */
@media (max-width: 768px) {
    .about-features,
    .about-achievements,
    .services-grid,
    .testimonials-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }

    .feature,
    .achievement-card,
    .service-card,
    .testimonial-card,
    .contact-item {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* تنسيق الفوتر */
footer {
    background: linear-gradient(180deg, var(--nav-bg) 0%, var(--primary-color) 100%);
    margin-top: -50px;
    padding-top: 100px;
    border-top: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 6rem;
    margin-bottom: 2rem;
}

.footer-info {
    padding-left: 2rem;
}

.footer-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.footer-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 500px;
}

/* تنسيق روابط السوشيال ميديا */
.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, rgba(220, 38, 38, 0.1), rgba(248, 113, 113, 0.1));
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    color: white;
}

/* تنسيق طرق الدفع */
.footer-payments {
    padding-right: 2rem;
}

.footer-payments h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
    justify-items: center;
}

.payment-icons i {
    width: 70px;
    height: 70px;
    background: rgba(15, 23, 41, 0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    margin-bottom: 30px;
    cursor: pointer;
}

.payment-icons i::after {
    content: attr(title);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    white-space: nowrap;
    font-family: 'Cairo', sans-serif;
    color: var(--text-secondary);
    width: max-content;
}

/* تأثير الحركة عند وضع المؤشر */
.payment-icons i:hover {
    transform: translateY(-10px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: var(--secondary-color);
    color: white;
}

/* حقوق النشر */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* تحسين تجاوب طرق الدفع للشاشات الصغيرة */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-info {
        padding: 0;
    }

    .footer-info p {
        margin: 1rem auto 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-payments {
        padding: 0;
    }

    .payment-icons {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 1rem;
    }

    .payment-icons i {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 35px;
    }

    .payment-icons i::after {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .payment-icons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* تنسيق عنوان خدماتنا الإبداعية مثل باقي العناوين */
.services h2,
.about h2,
.testimonials h2,
.contact h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--text-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

/* قسم الأعمال */
.portfolio {
    padding: 120px 0;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(248, 113, 113, 0.1));
    animation: moveBackground 30s linear infinite;
    z-index: -1;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-50%, -50%);
    }
    100% {
        transform: translate(0, 0);
    }
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* تكبير الصور عند الضغط عليها */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: white;
}

.modal-image-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
}

.watermark {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    pointer-events: none;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

#caption {
    margin-bottom: 20px;
}

#caption p {
    margin: 5px 0;
}

#reviews {
    margin-top: 10px;
}

#reviews p {
    margin: 5px 0;
}