/* إعدادات عامة */
:root {
    --primary-color: #00a8cc; /* أزرق سماوي */
    --dark-blue: #0c4b6e;
    --whatsapp-color: #25D366;
    --text-color: #333;
    --bg-light: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-light);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth; /* تمرير سلس عند الانتقال بين الأقسام */
    overflow-x: hidden; /* منع ظهور شريط تمرير أفقي */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a { text-decoration: none; }

img { max-width: 100%; height: auto; } /* جعل الصور متجاوبة */

/* نافذة منبثقة (Pop-up) */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* خلفية سوداء معتمة */
    z-index: 9999;
    display: none; /* مخفي افتراضياً ويتم تفعيله بالجافاسكريبت */
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    border: 5px solid var(--primary-color);
    max-height: 90vh; /* ضمان عدم خروج النافذة عن الشاشة */
    overflow-y: auto; /* إضافة سكرول إذا كان النص طويلاً */
    animation: popIn 0.5s ease;
}

@keyframes popIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.popup-content h2 { font-size: 2.5rem; color: #e67e22; margin-bottom: 20px; }
.popup-content p { font-size: 1.4rem; margin-bottom: 15px; color: #333; font-weight: bold; }

.popup-btn {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 15px 40px;
    font-size: 1.8rem;
    border-radius: 50px;
    margin-top: 20px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.popup-btn:hover { background-color: #1ebe57; transform: scale(1.05); }

.close-btn {
    position: absolute;
    top: 15px; left: 25px; /* زر الإغلاق في الزاوية */
    font-size: 4rem; color: #ff0000;
    cursor: pointer; line-height: 0.6;
}
.close-btn:hover { transform: scale(1.2); }

/* الهيدر */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.logo span { color: var(--primary-color); }

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: var(--text-color);
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover { color: var(--primary-color); }

/* زر القائمة للجوال (مخفي في الشاشات الكبيرة) */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark-blue);
}

/* Hero Section */
.hero {
    background-image: url('naqaa.png');
    background-size: cover;
    background-position: center;
    min-height: 80vh; /* استخدام min-height بدلاً من height لمنع قص النص */
    height: auto;
    padding: 100px 0; /* مسافة علوية وسفلية لراحة النص */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)); /* تدرج لوني أكثر احترافية */
}

.hero-text {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 900px; /* تحديد العرض لتركيز القراءة */
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 3rem; /* تكبير العنوان */
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5); /* ظل للنص لزيادة الوضوح */
    line-height: 1.3;
}

.hero-text p {
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    line-height: 1.8;
}

/* قسم العرض والعداد التنازلي */
.offer-section {
    background: linear-gradient(to right, #ff416c, #ff4b2b); /* لون أحمر/برتقالي ملفت */
    color: #fff;
    padding: 30px 0;
    text-align: center;
    margin-top: -5px; /* لإلغاء أي مسافة بيضاء بعد الهيرو */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.offer-section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.time-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 10px;
    min-width: 80px;
    font-weight: bold;
    backdrop-filter: blur(5px);
}
.time-box span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

/* الأزرار */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    color: #fff;
    transition: transform 0.2s;
}

.btn:hover { transform: scale(1.05); }

.btn-whatsapp { background-color: var(--whatsapp-color); }
.btn-call { background-color: var(--primary-color); }

/* قسم من نحن */
.about-section {
    padding: 60px 0;
    background-color: #fff;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.about-text { flex: 2; }

.about-image {
    flex: 1;
    text-align: center;
}

/* حاوية الفيديو المتجاوب */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* نسبة 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.about-text .lead {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-blue);
    margin-bottom: 15px;
    line-height: 1.8; /* تحسين تباعد الأسطر للقراءة */
}
.about-features {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.about-features span { font-weight: bold; color: var(--primary-color); }
.about-features i { margin-left: 5px; }

/* الخدمات */
.services { padding: 60px 0; }

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-blue);
    position: relative;
    line-height: 1.5;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); /* ظل أنعم وأكبر */
    transition: 0.3s;
    height: 100%; /* جعل البطاقات بنفس الطول */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid #eee;
}

.card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); border-color: var(--primary-color); }

.card p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

.card h3 {
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* بنر ترويجي */
.promo-banner {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 50px;
}

/* المميزات */
.features {
    background-color: var(--dark-blue);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.features .section-title { color: #fff; }

.features-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-item {
    padding: 10px;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-top: 10px;
    line-height: 1.6;
}

/* تنسيق الإحصائيات */
.stats {
    background-color: var(--dark-blue); /* لون احتياطي */
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-color));
    color: #fff;
    padding: 40px 0;
    margin: 40px 0;
}
.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}
.stat-item {
    padding: 10px;
}
.stat-item i { font-size: 2.5rem; margin-bottom: 10px; opacity: 0.8; }
.stat-item h3, .stat-item p { color: #fff; }
.stat-item h3 { font-size: 2.5rem; font-weight: bold; line-height: 1.4; margin-bottom: 5px; }
.stat-item p { font-size: 1.2rem; line-height: 1.6; }

/* تنسيق آراء العملاء */
.testimonials { padding-bottom: 60px; }
.testimonial-card {
    background: #fff;
    border-top: 4px solid var(--primary-color);
    position: relative;
    padding-top: 40px; /* مسافة إضافية للنجوم */
}
.testimonial-card .stars { margin-bottom: 15px; font-size: 1.2rem; }
.testimonial-card h4 { margin-top: 15px; color: var(--dark-blue); font-size: 0.9rem; opacity: 0.8; }

/* شريط الاتصال الثابت للجوال */
.mobile-sticky-bar {
    display: none; /* مخفي في الشاشات الكبيرة */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 10px;
    justify-content: space-between;
    gap: 10px;
}
.sticky-btn {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.call-btn { background-color: var(--primary-color); animation: pulse 2s infinite; }
.whatsapp-btn { background-color: #25D366; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 168, 204, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 168, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 168, 204, 0); }
}

/* تنسيق الأسئلة الشائعة (Accordion) */
.faq { margin-bottom: 60px; }
.accordion {
    background-color: #fff;
    color: var(--dark-blue);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: right;
    outline: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: 0.4s;
    border-bottom: 1px solid #eee;
    border-radius: 5px;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.active-acc, .accordion:hover {
    background-color: #f1f1f1;
    color: var(--primary-color);
}

.accordion:after {
    content: '\002B'; /* علامة الزائد */
    color: var(--primary-color);
    font-weight: bold;
    float: left;
    margin-left: 5px;
    font-size: 1.5rem;
}

.active-acc:after {
    content: "\2212"; /* علامة الناقص */
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-radius: 0 0 5px 5px;
}

/* تنسيق نموذج الحجز */
.booking-section { margin-bottom: 60px; }
.booking-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    border-top: 5px solid var(--primary-color);
}
.booking-form input, .booking-form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 50px; /* حواف دائرية للحقول */
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    background-color: #f8f9fa;
    outline: none;
    transition: 0.3s;
}
.booking-form input:focus, .booking-form select:focus {
    border-color: var(--primary-color);
    background-color: #fff;
}

/* الفوتر */
footer {
    background-color: #222;
    color: #ddd;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: right;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #ddd; transition: 0.3s; display: inline-block; }
.footer-links a:hover { color: var(--primary-color); transform: translateX(-5px); }

.footer-section p { margin-bottom: 10px; line-height: 1.8; }
.footer-section i { margin-left: 10px; color: var(--primary-color); }

.copyright {
    margin-top: 30px;
    font-size: 0.9rem;
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
}

/* تنسيق الخريطة */
.map-container {
    margin: 30px auto;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
}

/* رقم الهاتف البارز */
.highlight-phone {
    text-align: center;
    margin: 20px auto 40px;
}
.highlight-phone h2 {
    color: var(--dark-blue);
    font-size: 2rem;
}
.highlight-phone a {
    color: var(--primary-color);
    direction: ltr;
    display: inline-block;
}

/* زر الواتساب العائم */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px; /* يسار الشاشة لأن الموقع عربي */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-float { margin-top: 2px; }

/* زر الصعود للأعلى */
#scrollTopBtn {
    display: none; /* مخفي افتراضياً */
    position: fixed;
    bottom: 90px; /* فوق شريط الجوال */
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--dark-blue);
    color: white;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: 0.3s;
}
#scrollTopBtn:hover { background-color: var(--primary-color); transform: translateY(-3px); }
#scrollTopBtn.show { display: block; animation: fadeIn 0.5s; }

/* تأثير الظهور عند التمرير (Fade In Animation) */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

/* التجاوب مع الجوال */
@media (max-width: 768px) {
    .container { width: 95%; } /* استغلال مساحة أكبر في الجوال */
    .hero { padding: 60px 0; min-height: 60vh; }
    .hero-text h1 { font-size: 1.8rem; }
    .hero-text p { font-size: 1.1rem; }
    
    /* إظهار الشريط السفلي وإخفاء الزر العائم القديم لتحسين التجربة */
    .mobile-sticky-bar { display: flex; }
    .float-whatsapp { display: none; }
    
    /* تعديل مكان زر الصعود في الجوال */
    #scrollTopBtn { bottom: 80px; right: 15px; padding: 10px; font-size: 16px; }
    
    body { padding-bottom: 60px; } /* مسافة عشان الشريط ما يغطي المحتوى */
    
    .menu-toggle {
        display: block; /* إظهار زر القائمة */
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none; /* مخفي افتراضياً */
        flex-direction: column;
        text-align: center;
    }

    nav.active {
        display: flex; /* يظهر عند الضغط */
    }

    nav ul {
        flex-direction: column;
        padding: 20px 0;
        gap: 15px;
    }
    
    .about-content { flex-direction: column-reverse; text-align: center; }
    .about-text .section-title { text-align: center !important; }
    .about-features { justify-content: center; }
    .footer-content { text-align: center; }
}

/* تنسيقات المدونة */
.blog-header {
    background-color: var(--dark-blue);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.blog-card:hover { transform: translateY(-5px); }
.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-info { padding: 20px; }
.blog-date { color: #888; font-size: 0.9rem; margin-bottom: 10px; display: block; }
.blog-title { font-size: 1.2rem; margin-bottom: 10px; color: var(--dark-blue); }
.blog-excerpt { color: #666; margin-bottom: 15px; font-size: 0.95rem; }
.read-more { color: var(--primary-color); font-weight: bold; }

/* تنسيقات صفحة المقال */
.article-container {
    max-width: 800px;
    margin: 40px auto 60px;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.article-img { width: 100%; height: auto; border-radius: 10px; margin-bottom: 20px; }
.article-meta { color: #777; margin-bottom: 20px; font-size: 0.9rem; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.article-body h2 { color: var(--dark-blue); margin-top: 30px; margin-bottom: 15px; }
.article-body p { margin-bottom: 15px; line-height: 1.8; color: #444; }

/* أزرار المشاركة */
.share-buttons {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.share-buttons h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
}
.share-links {
    display: flex;
    gap: 10px;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.3s;
    cursor: pointer;
}
.share-btn:hover { transform: translateY(-3px); }
.share-facebook { background-color: #3b5998; }
.share-twitter { background-color: #1da1f2; } /* أو الأسود لـ X */
.share-whatsapp { background-color: #25d366; }

/* تنسيق جدول المقارنة */
.comparison-section {
    padding: 60px 0;
    background-color: #fff9f0; /* خلفية مميزة */
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* ظل أقوى */
    border: 2px solid var(--primary-color); /* إطار بارز */
    position: relative;
    overflow: hidden;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    min-width: 600px;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background-color: var(--dark-blue);
    color: #fff;
    font-size: 1.1rem;
}

.comparison-table th.negative { background-color: #e74c3c; }
.comparison-table th.positive { background-color: #27ae60; }

.comparison-table tr:hover { background-color: #f9f9f9; }
.comparison-table td strong { color: var(--dark-blue); }

/* تنسيق وسائط المقارنة (فيديو وصورة) */
.comparison-media {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}
.cmp-video {
    width: 100%;
    max-width: 800px;
}
.cmp-images-row {
    display: flex;
    gap: 20px;
    width: 100%;
}
.cmp-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 2px solid #fff;
}
.cmp-image img {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 768px) {
    .cmp-images-row {
        flex-direction: column;
    }

    /* تحويل جدول المقارنة إلى بطاقات في الجوال */
    .comparison-table-wrapper { overflow-x: visible; }
    .comparison-table { min-width: auto; display: block; }
    .comparison-table thead { display: none; }
    .comparison-table tbody { display: block; }
    .comparison-table tr {
        display: block;
        margin-bottom: 20px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border: 1px solid #eee;
        overflow: hidden;
    }
    .comparison-table td {
        display: block;
        text-align: right;
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
    }
    .comparison-table td:first-child {
        background-color: var(--dark-blue);
        color: #fff;
        text-align: center;
        font-size: 1.1rem;
    }
    .comparison-table td:first-child strong { color: #fff; }
    
    .comparison-table td:nth-child(2)::before { content: '❌ خرائط جوجل:'; display: block; font-weight: bold; color: #e74c3c; margin-bottom: 5px; }
    .comparison-table td:nth-child(3)::before { content: '✅ صفحة الهبوط:'; display: block; font-weight: bold; color: #27ae60; margin-bottom: 5px; }
    .comparison-table td:last-child { border-bottom: none; background-color: #f0fff4; }
}

/* شاشات الجوال الصغيرة جداً */
@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.5rem; }
    .cta-buttons { flex-direction: column; gap: 10px; }
    .btn { width: 100%; text-align: center; }
    .highlight-phone h2 { font-size: 1.4rem; }
    .section-title { font-size: 1.4rem; }
}

/* تأثير اللمعان (Shine Effect) */
.shine-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes shine {
    100% { left: 200%; }
}
