.arabic-text {
            font-family: 'Amiri', 'Traditional Arabic', serif;
            font-size: 1.8rem;
            line-height: 2.2;
            direction: rtl;
            text-align: right;
            color: #1a202c;
        }

        .ayat-container {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--primary-color);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .ayat-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            font-size: 0.9rem;
            font-weight: 600;
            margin-left: 0.5rem;
        }

        .surah-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            height: 100%;
        }

        .surah-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .surah-title {
            font-family: 'Amiri', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            text-decoration: none;
        }

        .surah-title:hover {
            color: #1d4ed8;
            text-decoration: none;
        }

        .breadcrumb {
            background: transparent;
            padding: 0;
            margin-bottom: 2rem;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            content: "›";
            color: var(--text-secondary);
        }

        .btn-primary {
            background: var(--primary-color);
            border-color: var(--primary-color);
            padding: 0.6rem 1.5rem;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: #1d4ed8;
            border-color: #1d4ed8;
            transform: translateY(-1px);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--text-secondary);
            text-align: center;
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        .navigation-card {
            background: var(--bg-light);
            border-radius: 8px;
            padding: 1rem;
            text-align: center;
            height: 100%;
        }

        .navigation-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
        }

        .navigation-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }

        .navigation-link:hover {
            color: #1d4ed8;
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .arabic-text {
                font-size: 1.4rem;
                line-height: 2;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .ayat-container {
                padding: 1.5rem;
            }
        }