
  :root {
            --primary-blue: #0d6efd;
            --hospital-blue: #1a73e8;
            --medical-green: #28a745;
            --dark-blue: #0a2647;
            --light-bg: #f8fafc;
        }

        body {
            font-family: 'Vazirmatn', 'Segoe UI', sans-serif;
            background-color: var(--light-bg);
            color: #333;
            line-height: 1.8;
        }

        /* === HEADER PROFESSIONAL === */
        .hospital-navbar {
            background: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 1rem 0;
            border-bottom: 3px solid var(--hospital-blue);
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            background: var(--hospital-blue);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 800;
            color: var(--dark-blue);
        }

        .logo-text span {
            color: var(--hospital-blue);
        }

        .nav-item-custom {
            margin: 0 10px;
        }

        .nav-link-custom {
            color: #555 !important;
            font-weight: 600;
            padding: 10px 20px !important;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .nav-link-custom:hover {
            background-color: rgba(26, 115, 232, 0.1);
            color: var(--hospital-blue) !important;
        }

        .nav-link-custom.active {
            background-color: var(--hospital-blue);
            color: white !important;
        }

        .cta-button {
            background: linear-gradient(135deg, var(--medical-green), #20c997);
            color: white !important;
            padding: 12px 30px !important;
            border-radius: 8px;
            font-weight: 700;
            border: none;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
        }

        /* === CONTENT LAYOUT === */
        .content-wrapper {
            max-width: 1400px;
            margin: 30px auto;
            padding: 0 20px;
        }

        .main-content-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            border: 1px solid #e9ecef;
            padding: 40px;
            margin-bottom: 30px;
        }

        /* === ARTICLE HEADER === */
        .article-header {
            padding-bottom: 30px;
            margin-bottom: 40px;
            border-bottom: 2px solid #e9ecef;
            position: relative;
        }

        .category-badge {
            background: rgba(26, 115, 232, 0.1);
            color: var(--hospital-blue);
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 20px;
        }

        .article-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--dark-blue);
            line-height: 1.4;
            margin-bottom: 20px;
        }

        .article-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 30px;
            font-weight: 400;
        }

        .meta-info {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            background: #f8fafc;
            padding: 20px;
            border-radius: 12px;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #555;
        }

        .meta-icon {
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--hospital-blue);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        }

        .view-count-badge {
            background: linear-gradient(135deg, #ff6b6b, #ff8e53);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
        }

        /* === CONTENT BODY === */
        .article-content {
            font-size: 1.1rem;
            line-height: 1.9;
            color: #444;
        }

        .content-section {
            margin-bottom: 40px;
        }

        .section-title {
            color: var(--dark-blue);
            font-size: 1.5rem;
            font-weight: 700;
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e9ecef;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title i {
            color: var(--medical-green);
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 12px 15px;
            margin-bottom: 10px;
            background: #f8fafc;
            border-radius: 10px;
            border-right: 4px solid var(--medical-green);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .feature-list li i {
            color: var(--medical-green);
            font-size: 1.2rem;
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(26, 115, 232, 0.05), rgba(40, 167, 69, 0.05));
            border-right: 4px solid var(--hospital-blue);
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
        }

        .stat-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e9ecef;
            transition: transform 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--hospital-blue);
            margin-bottom: 10px;
        }

        /* === SIDEBAR === */
        .sidebar-card {
            background: white;
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 25px;
            border: 1px solid #e9ecef;
        }

        .sidebar-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e9ecef;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .module-card {
            background: #f8fafc;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 15px;
            border: 1px solid #e9ecef;
            transition: all 0.3s;
            cursor: pointer;
        }

        .module-card:hover {
            background: white;
            border-color: var(--hospital-blue);
            box-shadow: 0 8px 20px rgba(26, 115, 232, 0.1);
            transform: translateX(-5px);
        }

        .module-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--hospital-blue), #4dabf7);
            color: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 15px;
        }

        .module-title {
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 8px;
        }

        .module-desc {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* === CTA SECTION === */
        .cta-hospital {
            background: linear-gradient(135deg, var(--dark-blue), #1c3d5a);
            color: white;
            padding: 60px 40px;
            border-radius: 20px;
            margin: 50px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-hospital::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: cover;
        }

        .cta-title {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .behkavosh-emphasis {
            color: #4dabf7;
            font-weight: 800;
            text-shadow: 0 0 10px rgba(77, 171, 247, 0.3);
        }

        .btn-hospital {
            background: linear-gradient(135deg, var(--medical-green), #20c997);
            color: white;
            padding: 15px 40px;
            border-radius: 10px;
            border: none;
            font-weight: 700;
            font-size: 0.9rem;
            margin: 10px;
            transition: all 0.3s;
        }

        .btn-hospital:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(40, 167, 69, 0.4);
        }

        .btn-outline-hospital {
            background: transparent;
            color: white;
            padding: 15px 40px;
            border-radius: 10px;
            border: 2px solid white;
            font-weight: 700;
            font-size: 0.9rem;
            margin: 10px;
            transition: all 0.3s;
        }

        .btn-outline-hospital:hover {
            background: white;
            color: var(--dark-blue);
        }

        /* === FOOTER === */
        .hospital-footer {
            background: var(--dark-blue);
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }

        .footer-logo span {
            color: #4dabf7;
        }

        .contact-info {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 12px;
            margin-top: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        /* === RESPONSIVE === */
        @media (max-width: 992px) {
            .article-title {
                font-size: 1.8rem;
            }
            .main-content-card {
                padding: 25px;
            }
            .meta-info {
                flex-direction: column;
                gap: 15px;
            }
            .cta-title {
                font-size: 1.8rem;
            }
        }
        .btn-outline-hospital{
            color:linear-gradient(135deg, var(--hospital-blue), #4dabf7 )!important;
        }
    .elegant-btn-container {
        display: inline-block;
        perspective: 1000px;
    }
    
    .elegant-btn {
        background: white;
        border: 2px solid #e0e0e0;
        border-radius: 15px;
        padding: 25px 40px;
        cursor: pointer;
        position: relative;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        overflow: hidden;
        min-width: 450px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
    
    .elegant-btn:hover {
        transform: translateY(-8px) rotateX(5deg);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        border-color: #4CAF50;
    }
    
    .elegant-btn.clicked {
        animation: clickEffect 0.5s;
    }
    
    .btn-inner {
        display: flex;
        align-items: center;
        gap: 25px;
        position: relative;
        z-index: 2;
    }
    
    .icon-wrapper {
        position: relative;
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #4CAF50, #8BC34A);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2rem;
    }
    
    .ribbon {
        position: absolute;
        top: -5px;
        right: 10px;
        width: 20px;
        height: 40px;
        background: #FF9800;
        clip-path: polygon(100% 0, 100% 100%, 50% 70%, 0 100%, 0 0);
    }
    
    .text-wrapper {
        text-align: right;
        flex-grow: 1;
    }
    
    .title {
        font-size: 1.4rem;
        font-weight: 800;
        color: #333;
        margin-bottom: 5px;
    }
    
    .desc {
        font-size: 0.95rem;
        color: #666;
    }
    
    .action-indicator {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #4CAF50;
        font-weight: 600;
        font-size: 0.9rem;
    }
    
    .action-indicator i {
        animation: bounceRight 1s infinite alternate;
    }
    
    .hover-effect {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent 40%, rgba(76, 175, 80, 0.1) 50%, transparent 60%);
        transform: translateX(-100%);
        transition: transform 0.6s;
    }
    
    .elegant-btn:hover .hover-effect {
        transform: translateX(100%);
    }
    
    @keyframes bounceRight {
        from { transform: translateX(0); }
        to { transform: translateX(-10px); }
    }
    
    @keyframes clickEffect {
        0% { transform: scale(1); }
        50% { transform: scale(0.95); }
        100% { transform: scale(1); }
    }
        :root {
            --hospital-blue: #1a73e8;
            --medical-green: #28a745;
            --golden-yellow: #ffb347;
            --dark-blue: #0a2647;
            --light-bg: #f8fafc;
        }

        body {
            font-family: 'Vazirmatn', 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
            line-height: 1.8;
            color: #333;
            min-height: 100vh;
        }

        /* هدر جذاب */
        .mystery-header {
            background: linear-gradient(135deg, #0a2647, #1c3d5a);
            color: white;
            padding: 25px 0;
            position: relative;
            overflow: hidden;
        }

        .mystery-header::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(circle at 20% 30%, rgba(255, 179, 71, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(40, 167, 69, 0.2) 0%, transparent 50%);
        }

        .mystery-badge {
            background: linear-gradient(135deg, #ff6b6b, #ff8e53);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 800;
            font-size: 1.3rem;
            display: inline-block;
            box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        /* بخش رازآلود */
        .mystery-section {
            /*padding: 100px 0;*/
            background: white;
            position: relative;
            overflow: hidden;
        }

        .mystery-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path d="M20,20 Q50,5 80,20 T100,50 Q85,80 50,100 T0,50 Q15,20 50,0 T100,20" fill="none" stroke="%231a73e8" stroke-width="1"/></svg>');
            background-size: 300px;
        }

        .mystery-box {
            background: linear-gradient(135deg, #ffffff, #f8fafc);
            border-radius: 25px;
            padding: 50px;
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(26, 115, 232, 0.1);
            position: relative;
            border: 2px solid transparent;
            background-clip: padding-box;
            overflow: hidden;
        }

        .mystery-box::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 40%, rgba(26, 115, 232, 0.05) 50%, transparent 60%);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        .gift-icon-large {
            font-size: 5rem;
            color: #ffb347;
            text-shadow: 0 10px 20px rgba(255, 179, 71, 0.3);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .mystery-title {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--dark-blue);
            line-height: 1.3;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        .mystery-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #ffb347, #ff6b6b);
            border-radius: 3px;
        }

        /* بخش فرم */
        .form-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);
        }

        .form-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            border: 2px solid rgba(26, 115, 232, 0.1);
        }

        .form-step {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding: 15px 20px;
            background: #f8f9fa;
            border-radius: 15px;
            border-right: 4px solid var(--hospital-blue);
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--hospital-blue), #4dabf7);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            margin-left: 15px;
        }

        .form-input {
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 15px;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .form-input:focus {
            border-color: var(--hospital-blue);
            box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
        }

        .submit-btn {
            background:linear-gradient(
                236deg, #32d052, #4bc764);
            color: white;
            padding: 20px 40px;
            font-size: 1.3rem;
            font-weight: 800;
            border-radius: 15px;
            border: none;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
            transition: all 0.3s;
            width: 100%;
            margin-top: 30px;
        }

        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
        }

        /* بخش اطمینان */
        .trust-section {
            padding: 60px 0;
            background: white;
        }

        .trust-badge {
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            background: rgba(40, 167, 69, 0.1);
            border-radius: 10px;
            color: var(--medical-green);
            font-weight: 600;
            margin-bottom: 20px;
        }

        /* بخش هدیه‌های ممکن */
        .possible-gifts {
            padding: 60px 0;
            background: #f8fafc;
        }

        .gift-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .gift-card:hover {
            transform: translateY(-10px);
            border-color: var(--hospital-blue);
            box-shadow: 0 20px 40px rgba(26, 115, 232, 0.1);
        }

        .gift-card::before {
            content: '؟';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 2rem;
            color: rgba(26, 115, 232, 0.1);
            font-weight: 900;
        }

        .gift-icon {
            font-size: 3rem;
            color: var(--hospital-blue);
            margin-bottom: 20px;
        }

        /* فوتر */
        .footer-simple {
            background: var(--dark-blue);
            color: white;
            padding: 40px 0 20px;
            text-align: center;
        }

        /* انیمیشن‌ها */
        .fade-in {
            animation: fadeIn 1s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ریسپانسیو */
        @media (max-width: 768px) {
            .mystery-title {
                font-size: 2rem;
            }
            .mystery-section {
                padding: 0px 0;
            }
            .mystery-box {
                padding: 30px 20px;
            }
            .gift-icon-large {
                font-size: 3rem;
            }
            .form-card {
                padding: 25px 20px;
            }
        }
            /* نسخه با انیمیشن */
    @media (max-width: 768px) {
      .meta-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      }

      .meta-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px;
        background: white;
        border-radius: 12px;
        border: 1px solid #e9ecef;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
      }

      .meta-item::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, #4F46E5, #8B5CF6);
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .meta-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(79, 70, 229, 0.1);
      }

      .meta-item:hover::before {
        opacity: 1;
      }

      .meta-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #4F46E5 0%, #8B5CF6 100%);
        color: white;
        border-radius: 12px;
        font-size: 1.2rem;
        flex-shrink: 0;
        box-shadow: 0 5px 15px rgba(79, 70, 229, 0.2);
      }

      .meta-icon i {
        font-size: 1.2rem;
      }

      .text-muted.small {
        font-size: 0.8rem;
        color: #6c757d;
        margin-bottom: 4px;
        display: block;
      }

      .fw-bold {
        font-size: 1rem;
        color: #212529;
        font-weight: 700;
      }

      .view-count-badge {
        display: inline-block;
        background: linear-gradient(135deg, #28a745, #20c997);
        color: white;
        padding: 2px 10px;
        border-radius: 15px;
        font-size: 0.85rem;
        margin-left: 5px;
      }
    }

    /* حالت لنداسکیپ موبایل */
    @media (max-width: 768px) and (orientation: landscape) {
      .meta-info {
        grid-template-columns: repeat(4, 1fr);
      }
    }
 .elegant-btn-container {
        display: inline-block;
        perspective: 1000px;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .elegant-btn {
        background: white;
        border: 2px solid #e0e0e0;
        border-radius: 15px;
        padding: 20px;
        cursor: pointer;
        position: relative;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        overflow: hidden;
        width: 100%;
        max-width: 500px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        margin: 0 auto;
    }
    
    .elegant-btn:hover {
        transform: translateY(-8px) rotateX(5deg);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        border-color: #4CAF50;
    }
    
    .elegant-btn.clicked {
        animation: clickEffect 0.5s;
    }
    
    .btn-inner {
        display: flex;
        align-items: center;
        gap: 20px;
        position: relative;
        z-index: 2;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .icon-wrapper {
        position: relative;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #4CAF50, #8BC34A);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.8rem;
        flex-shrink: 0;
    }
    
    .ribbon {
        position: absolute;
        top: -4px;
        right: 8px;
        width: 16px;
        height: 32px;
        background: #FF9800;
        clip-path: polygon(100% 0, 100% 100%, 50% 70%, 0 100%, 0 0);
    }
    
    .text-wrapper {
        text-align: right;
        flex-grow: 1;
        min-width: 200px;
    }
    
    .title {
        font-size: 1.2rem;
        font-weight: 800;
        color: #333;
        margin-bottom: 5px;
        line-height: 1.4;
    }
    
    .desc {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.5;
    }
    
    .action-indicator {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #4CAF50;
        font-weight: 600;
        font-size: 0.85rem;
        flex-shrink: 0;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
        order: 3; /* در موبایل به پایین منتقل می‌شود */
    }
    
    .action-indicator i {
        animation: bounceRight 1s infinite alternate;
    }
    
    .hover-effect {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent 40%, rgba(76, 175, 80, 0.1) 50%, transparent 60%);
        transform: translateX(-100%);
        transition: transform 0.6s;
    }
    
    .elegant-btn:hover .hover-effect {
        transform: translateX(100%);
    }
    
    @keyframes bounceRight {
        from { transform: translateX(0); }
        to { transform: translateX(-8px); }
    }
    
    @keyframes clickEffect {
        0% { transform: scale(1); }
        50% { transform: scale(0.97); }
        100% { transform: scale(1); }
    }
    
    /* رسپانسیو برای تبلت */
    @media (max-width: 768px) {
        .elegant-btn {
            padding: 18px 15px;
            max-width: 400px;
        }
        
        .btn-inner {
            gap: 15px;
        }
        
        .icon-wrapper {
            width: 55px;
            height: 55px;
            font-size: 1.6rem;
        }
        
        .ribbon {
            width: 14px;
            height: 28px;
            right: 6px;
        }
        
        .text-wrapper {
            min-width: 180px;
        }
        
        .title {
            font-size: 1.1rem;
        }
        
        .desc {
            font-size: 0.85rem;
        }
        
        .action-indicator {
            font-size: 0.8rem;
        }
    }
    
    /* رسپانسیو برای موبایل */
    @media (max-width: 576px) {
        .elegant-btn-container {
            padding: 0 10px;
        }
        
        .elegant-btn {
            padding: 15px 12px;
            border-radius: 12px;
            max-width: 100%;
            min-width: 200px;
        }
        
        .btn-inner {
            flex-direction: column;
            gap: 12px;
            text-align: center;
        }
        
        .icon-wrapper {
            width: 70px;
            height: 70px;
            font-size: 2rem;
            margin-bottom: 5px;
        }
        
        .ribbon {
            width: 18px;
            height: 36px;
            right: 10px;
            top: -5px;
        }
        
        .text-wrapper {
            text-align: center;
            min-width: 100%;
        }
        
        .title {
            font-size: 1.3rem;
            margin-bottom: 8px;
        }
        
        .desc {
            font-size: 0.95rem;
            padding: 0 10px;
        }
        
        .action-indicator {
            order: 3;
            margin-top: 15px;
            font-size: 0.9rem;
            justify-content: center;
            width: 100%;
        }
        
        .elegant-btn:hover {
            transform: translateY(-5px) rotateX(3deg);
        }
    }
    
    /* رسپانسیو برای موبایل‌های خیلی کوچک */
    @media (max-width: 375px) {
        .title {
            font-size: 1.1rem;
        }
        
        .desc {
            font-size: 0.85rem;
        }
        
        .icon-wrapper {
            width: 60px;
            height: 60px;
            font-size: 1.8rem;
        }
        
        .action-indicator {
            font-size: 0.8rem;
        }
    }
    
    /* پشتیبانی از تاچ برای موبایل */
    @media (hover: none) and (pointer: coarse) {
        .elegant-btn:hover {
            transform: none;
        }
        
        .elegant-btn:active {
            transform: scale(0.98);
            background-color: #f8f9fa;
        }
        
        .hover-effect {
            display: none;
        }
    }
    
    /* حالت تاریک (اختیاری) */
    @media (prefers-color-scheme: dark) {
        .elegant-btn {
            background: #2d3748;
            border-color: #4a5568;
            color: #e2e8f0;
        }
        
        .title {
            color: #e2e8f0;
        }
        
        .desc {
            color: #a0aec0;
        }
        
        .icon-wrapper {
            background: linear-gradient(135deg, #2F855A, #38A169);
        }
    }
    /* استایل اصلی دسکتاپ - 4 آیتم در یک ردیف */
.meta-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 12px;
    background: white;
    border-radius: 14px;
    border: 1px solid rgba(233, 236, 239, 0.8);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* خط آبی در سمت راست */
.meta-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: linear-gradient(to bottom, #4F46E5, #8B5CF6);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* انیمیشن هورور */
.meta-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.2);
}

.meta-item:hover::after {
    opacity: 1;
}

/* آیکون جمع‌وجور */
.meta-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4F46E5 0%, #8B5CF6 100%);
    color: white;
    border-radius: 12px;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

.meta-icon i {
    font-size: 1.1rem;
}

/* متن فارسی */
.text-muted.small {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 4px;
    display: block;
    line-height: 1.3;
    font-weight: 500;
}

.fw-bold {
    font-size: 1rem;
    color: #1f2937;
    font-weight: 700;
    line-height: 1.4;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

/* بج ویو کانت */
.view-count-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 3px 10px;
    border-radius: 18px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
}

/* تبلت */
@media (max-width: 1024px) {
    .meta-info {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        padding: 18px;
    }
    
    .meta-item {
        padding: 14px 10px;
        gap: 10px;
    }
    
    .meta-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 11px;
    }
    
    .text-muted.small {
        font-size: 0.75rem;
    }
    
    .fw-bold {
        font-size: 0.95rem;
    }
}

/* موبایل - تغییر به ۲ آیتم در هر ردیف */
@media (max-width: 768px) {
    .meta-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 16px;
        border-radius: 16px;
    }
    
    .meta-item {
        padding: 14px 12px;
        gap: 12px;
        border-radius: 12px;
        min-height: 90px;
    }
    
    .meta-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 10px;
        font-size: 1.1rem;
    }
    
    .meta-icon i {
        font-size: 1rem;
    }
    
    .text-muted.small {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .fw-bold {
        font-size: 0.9rem;
        line-height: 1.3;
        gap: 4px;
    }
    
    .view-count-badge {
        padding: 2px 8px;
        font-size: 0.75rem;
        border-radius: 16px;
    }
}

/* موبایل کوچک */
@media (max-width: 480px) {
    .meta-info {
        padding: 14px;
        gap: 10px;
        border-radius: 14px;
    }
    
    .meta-item {
        padding: 12px 10px;
        gap: 10px;
        border-radius: 11px;
        min-height: 85px;
    }
    
    .meta-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 9px;
        font-size: 1rem;
    }
    
    .meta-icon i {
        font-size: 0.95rem;
    }
    
    .text-muted.small {
        font-size: 0.72rem;
    }
    
    .fw-bold {
        font-size: 0.85rem;
    }
    
    .view-count-badge {
        padding: 2px 7px;
        font-size: 0.72rem;
    }
}

/* موبایل خیلی کوچک */
@media (max-width: 360px) {
    .meta-info {
        padding: 12px;
        gap: 8px;
        border-radius: 12px;
    }
    
    .meta-item {
        padding: 10px 8px;
        gap: 8px;
        min-height: 80px;
    }
    
    .meta-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 8px;
        font-size: 0.95rem;
    }
    
    .meta-icon i {
        font-size: 0.9rem;
    }
    
    .text-muted.small {
        font-size: 0.7rem;
    }
    
    .fw-bold {
        font-size: 0.82rem;
    }
    
    .view-count-badge {
        padding: 1px 6px;
        font-size: 0.7rem;
    }
}

/* حالت لنداسکیپ موبایل */
@media (max-width: 768px) and (orientation: landscape) {
    .meta-info {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

/* حالت تاریک */
@media (prefers-color-scheme: dark) {
    .meta-info {
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .meta-item {
        background: #334155;
        border-color: rgba(71, 85, 105, 0.6);
    }
    
    .text-muted.small {
        color: #94a3b8;
    }
    
    .fw-bold {
        color: #f1f5f9;
    }
    
    .meta-icon {
        box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
    }
    
    .meta-item:hover {
        border-color: rgba(79, 70, 229, 0.4);
    }
}

/* پشتیبانی از RTL */
html[dir="rtl"] .meta-item::after {
    right: auto;
    left: 0;
    border-radius: 0 4px 4px 0;
}

html[dir="rtl"] .view-count-badge {
    margin-right: 0;
    margin-left: 4px;
}