* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

/* التمرير السلس */
html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 10px;
}

/* النصوص الذهبية */
.gold-text {
    color: #D4AF37;
    background: linear-gradient(45deg, #D4AF37, #FFD700, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: -200% 0; }
    50% { background-position: 200% 0; }
}

/* شريط التنقل */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #D4AF37;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    font-weight: 500;
}

.nav-link:hover {
    color: #D4AF37;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* القسم الرئيسي */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, #000000 70%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.cta-button {
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* الأقسام العامة */
section {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #D4AF37;
}

/* قسم من أنا */
.about {
    background: #0a0a0a;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.skills {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.skill-tag {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid #D4AF37;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

/* الأخبار */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #D4AF37;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-date {
    color: #D4AF37;
    font-size: 0.9rem;
}

.news-excerpt {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-full {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    animation: fadeIn 0.5s ease;
}

.news-full ul {
    margin: 1rem 0;
    padding-right: 1.5rem;
}

.news-full li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.read-more-btn {
    background: transparent;
    color: #D4AF37;
    border: 1px solid #D4AF37;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.read-more-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.download-link {
    color: #D4AF37;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid #D4AF37;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.download-link:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* فلتر الأخبار */
.news-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid #333;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #D4AF37;
    color: #000;
    border-color: #D4AF37;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* قسم الإنجازات والجوائز */
.achievements {
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
}

/* الخط الزمني */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.timeline::before {
    content: '';
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #D4AF37, transparent);
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-date {
    position: absolute;
    right: calc(50% + 2rem);
    background: #D4AF37;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 2;
}

.timeline-item:nth-child(even) .timeline-date {
    right: auto;
    left: calc(50% + 2rem);
}

.timeline-content {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    width: 45%;
    margin-right: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 2rem;
}

.timeline-content:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.achievement-badge {
    position: absolute;
    top: -20px;
    right: 2rem;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
    border: 3px solid #1a1a1a;
}

.timeline-item:nth-child(even) .achievement-badge {
    right: auto;
    left: 2rem;
}

.achievement-category {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #D4AF37;
}

.achievement-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.achievement-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #cccccc;
}

/* إحصائيات الإنجازات */
.achievements-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #d4af3700;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cccccc;
    font-size: 0.9rem;
}

/* قسم التحميلات */
.downloads {
    background: #0a0a0a;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.download-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
}

.download-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
}

.download-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #D4AF37;
}

.file-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.file-info span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #cccccc;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #000;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* التواصل */
.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 1px solid #333;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link:hover {
    border-color: #D4AF37;
    color: #D4AF37;
    transform: translateY(-3px);
}

/* الفوتر */
.footer {
    background: #000;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #333;
    color: #666;
}

/* التجاوب مع الشاشات الصغيرة */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline::before {
        right: 30px;
    }
    
    .timeline-date {
        position: relative;
        right: auto !important;
        left: auto !important;
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        width: 100%;
        margin: 0 !important;
    }
    
    .achievement-badge {
        position: relative;
        top: auto;
        right: auto !important;
        left: auto !important;
        margin: 0 auto 1rem;
    }
    
    .news-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .downloads-grid {
        grid-template-columns: 1fr;
    }
    
    .download-card {
        padding: 1.5rem;
    }
    
    .achievements-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}




.language-switcher {
    position: fixed;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #D4AF37;
    border-radius: 25px;
    padding: 0.5rem;
    z-index: 1001;
    backdrop-filter: blur(10px);
}

.lang-btn {
    background: transparent;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    font-weight: 500;
}

.lang-btn.active {
    background: #D4AF37;
    color: #000000;
}


.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.achievement-card.premium {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}



.achievement-card.premium:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.achievement-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
}

.achievement-date {
    text-align: left;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.8rem;
    border-radius: 10px;
    border: 1px solid #D4AF37;
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #D4AF37;
}

.date-month {
    display: block;
    font-size: 0.8rem;
    color: #cccccc;
}

.date-year {
    display: block;
    font-size: 0.8rem;
    color: #cccccc;
}

.achievement-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.achievement-category {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #D4AF37;
}

.achievement-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.achievement-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #cccccc;
}

/* تحسينات قسم التحميلات */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.download-card.premium {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-card.premium:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.download-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.download-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
}

.download-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.badge-text {
    background: #D4AF37;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
}

.file-details {
    margin: 1.5rem 0;
}

.file-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.file-info span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #cccccc;
}

.download-progress {
    margin-top: 1rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.8rem;
    color: #cccccc;
    text-align: center;
    display: block;
}

.download-btn.premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #000;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
    border: none;
    cursor: pointer;
}

.download-btn.premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* تحسينات التجاوب */
@media (max-width: 768px) {
    .language-switcher {
        top: 0.5rem;
        left: 0.5rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .downloads-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .download-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .file-info {
        grid-template-columns: 1fr;
    }
}

/* تأثيرات إضافية */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.achievement-card.premium:hover .achievement-icon {
    animation: pulse 1s ease-in-out;
}

.download-card.premium:hover .download-icon {
    animation: pulse 1s ease-in-out;
}








/* تحسينات قسم الأخبار */
.news-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #d4af3700;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-card.expanded {
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.news-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.news-category {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #D4AF37;
}

.news-date {
    color: #D4AF37;
    font-size: 0.85rem;
    font-weight: 500;
}

.news-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.news-excerpt {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.news-full {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    animation: fadeIn 0.5s ease;
}

.news-full ul {
    margin: 1rem 0;
    padding-right: 1.5rem;
}

.news-full li {
    margin-bottom: 0.5rem;
    color: #cccccc;
    line-height: 1.6;
}

.news-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

.read-more-btn {
    background: transparent;
    color: #D4AF37;
    border: 1px solid #D4AF37;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.read-more-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* فلتر الأخبار */
.news-filter {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid #333;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 100px;
}

.filter-btn.active,
.filter-btn:hover {
    background: #D4AF37;
    color: #000;
    border-color: #D4AF37;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* تحسينات التجاوب */
@media (max-width: 768px) {
    .news-card-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .news-card {
        padding: 1.5rem;
    }
    
    .read-more-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}



 
.buttonmore {
  cursor: pointer;
  font-size: 1.4rem;
  border-radius: 16px;
  transition: .28s all;
  font-family: 'Tajawal', sans-serif;
  border: none;
  padding: 2px;
  background: radial-gradient(circle 80px at 80% -10%, #D4AF37, #81660ca2);
  position: relative;
}

.buttonmore::after {
  content: "";
  position: absolute;
  width: 65%;
  height: 60%;
  border-radius: 120px;
  top: 0;
  right: 0;
  box-shadow: 0 0 20px #ffffff38;
  z-index: -1;
}

.blob1 {
  position: absolute;
  width: 70px;
  height: 100%;
  border-radius: 16px;
  bottom: 0;
  left: 0;
  background: radial-gradient(
    circle 60px at 0% 100%,
    #D4AF37,
    #d4af3762,
    transparent
  );
  box-shadow: -10px 10px 30px #ffe6002d;
}

.inner {
  padding: 14px 25px;
  border-radius: 14px;
  color: #fff;
  z-index: 3;
  position: relative;
  background: radial-gradient(circle 80px at 80% -50%, #777777, #0f1111);
}
.inner::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 14px;
  background: radial-gradient(
    circle 60px at 0% 100%,
    #ffe6001a,
    #ffd90011,
    transparent
  );
  position: absolute;
}

.buttonmore:hover{
    transform: translateY(-2px);
    transition: .28s all;
    box-shadow: 0 2px 6px 2px #d4af377c;
}