/* أنماط عامة */
body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 76px; /* تعويض الشريط الثابت */
}

/* أنماط السلايدر */
.main-slider {
    height: 70vh;
    min-height: 500px;
}

.slide-content {
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
}

.swiper-button-next, .swiper-button-prev {
    color: white;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
}

/* أنماط البطاقات */
.tutorial-card, .app-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tutorial-card:hover, .app-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

/* أنماط الأزرار */
.btn {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* أنماط العناوين */
.section-title {
    position: relative;
    padding-right: 20px;
    margin-bottom: 30px;
}

.section-title:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(to bottom, #3498db, #2c3e50);
    border-radius: 3px;
}

/* أنماط الفوتر */
footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #3498db !important;
}

.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* أنماط متجاوبة */
@media (max-width: 768px) {
    .main-slider {
        height: 50vh;
        min-height: 400px;
    }
    
    body {
        padding-top: 66px;
    }
}

/* أنماط التعليقات */
.comment-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.comment {
    border-right: 3px solid #3498db;
    padding-right: 15px;
    margin-bottom: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
}

.comment-author {
    color: #3498db;
    font-weight: bold;
}

.comment-date {
    font-size: 0.9em;
    color: #6c757d;
}