/* IndoCourse Theme CSS */
/* Using IndoKoding color scheme */

:root {
    /* IndoKoding Color Palette - Updated */
    --indo-primary: #0baaca;
    --indo-primary-dark: #0891b2;
    --indo-primary-light: #22d3ee;
    --indo-secondary: #64748b;
    --indo-success: #22c55e;
    --indo-warning: #f59e0b;
    --indo-danger: #ef4444;
    --indo-info: #06b6d4;
    --indo-light: #f8fafc;
    --indo-dark: #0f172a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0baaca 0%, #22d3ee 100%);
    --gradient-success: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
    --gradient-warning: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-info: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    --gradient-danger: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    --gradient-secondary: linear-gradient(135deg, #64748b 0%, #94a3b8 100%);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Base Styles */
body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--indo-dark);
    background-color: #ffffff;
}

/* Override Bootstrap colors */
.text-primary { color: var(--indo-primary) !important; }
.bg-primary { background-color: var(--indo-primary) !important; }
.btn-primary {
    background-color: var(--indo-primary);
    border-color: var(--indo-primary);
}
.btn-primary:hover {
    background-color: var(--indo-primary-dark);
    border-color: var(--indo-primary-dark);
}
.btn-outline-primary {
    color: var(--indo-primary);
    border-color: var(--indo-primary);
}
.btn-outline-primary:hover {
    background-color: var(--indo-primary);
    border-color: var(--indo-primary);
}

/* Text Gradient */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500 !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--indo-primary) !important;
    font-weight: 500 !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    margin-top: 76px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-placeholder {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Course Cards */
.course-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.course-image {
    height: 200px;
    overflow: hidden;
}

.placeholder-img {
    height: 100%;
    border-radius: 0;
}

.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-success { background: var(--gradient-success); }
.bg-gradient-warning { background: var(--gradient-warning); }
.bg-gradient-info { background: var(--gradient-info); }
.bg-gradient-danger { background: var(--gradient-danger); }
.bg-gradient-secondary { background: var(--gradient-secondary); }

/* Pricing Cards */
.pricing-card {
    border-radius: 16px;
    transition: all 0.3s ease;
}

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

.pricing-card .card-header {
    border-radius: 16px 16px 0 0;
    padding: 2rem 1.5rem;
}

.price {
    margin-top: 1rem;
}

/* Buttons */
.btn {
    border-radius: 12px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Category Buttons */
.btn-outline-primary.active {
    background-color: var(--indo-primary);
    border-color: var(--indo-primary);
    color: white;
}

/* Instructor Cards */
.instructor-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--indo-light);
    transition: all 0.3s ease;
}

.instructor-image:hover img {
    transform: scale(1.05);
    border-color: var(--indo-primary);
}

/* Features Section */
.feature-icon {
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
}

/* Badges */
.badge {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
}

/* Cards */
.card {
    border: none;
    box-shadow: var(--shadow);
    border-radius: 16px;
}

/* Shadows */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-placeholder {
        padding: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

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

.slide-up {
    animation: slideUp 0.6s ease-in-out;
}

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

/* Utilities */
.border-radius-16 { border-radius: 16px; }
.border-radius-12 { border-radius: 12px; }
.border-radius-8 { border-radius: 8px; }

/* Text Colors */
.text-muted { color: var(--indo-secondary) !important; }

/* Background Colors */
.bg-light { background-color: var(--indo-light) !important; }

/* Course Detail Styles */
.course-preview-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.preview-video {
    position: relative;
}

.preview-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.lesson-item {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
}

.lesson-item:hover {
    background-color: #f8fafc;
}

.lesson-item:last-child {
    border-bottom: none;
}

.nav-pills .nav-link {
    border-radius: 12px;
    font-weight: 500;
    color: var(--indo-secondary);
    margin-right: 0.5rem;
}

.nav-pills .nav-link.active {
    background-color: var(--indo-primary);
    color: white;
}

.accordion-button:not(.collapsed) {
    background-color: var(--indo-light);
    color: var(--indo-primary);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--indo-primary);
}

.rating-breakdown .progress {
    background-color: #e2e8f0;
}

.review-item:last-child {
    border-bottom: none !important;
}

.instructor-stats .d-flex {
    color: var(--indo-secondary);
}

/* Course Badge */
.course-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
}

/* Responsive Course Detail */
@media (max-width: 768px) {
    .course-preview-card {
        position: static;
        margin-bottom: 2rem;
    }
    
    .nav-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-pills .nav-link {
        white-space: nowrap;
        margin-right: 0.25rem;
    }
}

/* Authentication Pages */
.auth-page {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.auth-card {
    border-radius: 20px;
    overflow: hidden;
}

.auth-card .card-body {
    background: white;
}

.divider {
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e2e8f0;
    z-index: 1;
}

.divider span {
    position: relative;
    z-index: 2;
}

.social-login .btn {
    border-radius: 12px;
    font-weight: 500 !important;
}

/* Navbar Buttons Consistency */
.navbar .btn {
    font-weight: 500 !important;
}

.benefit-item {
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.help-item {
    transition: all 0.3s ease;
}

.help-item:hover {
    transform: translateY(-3px);
}

.forgot-icon {
    opacity: 0.8;
}

/* Checkout Styles */
.checkout-steps .step-item {
    position: relative;
}

.checkout-steps .step-item.active .step-number {
    background-color: var(--indo-primary) !important;
    color: white !important;
}

.checkout-steps .step-item.active .step-label {
    color: var(--indo-primary) !important;
    font-weight: 600;
}

.payment-option {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: var(--indo-primary);
    background-color: #f8fafc;
}

.payment-option input[type="radio"]:checked + label {
    border-color: var(--indo-primary);
    background-color: #f0f9ff;
}

.payment-icons .badge {
    font-size: 0.7rem;
}

.order-summary {
    border-radius: 16px;
}

.guarantee-info {
    border: 1px solid #e2e8f0;
}

/* Responsive Auth */
@media (max-width: 768px) {
    .auth-card .card-body {
        padding: 2rem !important;
    }
    
    .checkout-steps .col-4 {
        margin-bottom: 1rem;
    }
}

/* Learning Interface */
.learning-interface {
    background-color: #f8fafc;
}

.learning-header {
    z-index: 1030;
    border-bottom: 1px solid #e5e7eb;
    min-height: 76px;
    padding: 1rem 0;
}

.learning-container {
    height: calc(100vh - 76px);
    overflow: hidden;
}

.video-section {
    background-color: #000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.video-container {
    background-color: #000;
}

.video-player {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #000;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-controls {
    background-color: #1f2937 !important;
    border-top: 1px solid #374151;
}

.lesson-content {
    background-color: white;
    max-height: 40vh;
    overflow-y: auto;
}

.course-sidebar {
    height: calc(100vh - 60px);
    overflow-y: auto;
    border-left: 1px solid #e5e7eb;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
}

.course-content-list {
    overflow-y: auto;
}

.module-header {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.module-header:hover {
    background-color: #f9fafb !important;
}

.lesson-item {
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.lesson-item:hover {
    background-color: #f9fafb;
}

.lesson-item.completed {
    background-color: #f0f9ff;
    border-left-color: #10b981;
}

.lesson-item.upcoming {
    opacity: 0.7;
}

.lesson-item.active {
    background-color: var(--indo-primary);
    color: white;
    border-left-color: white;
}

.note-item {
    transition: all 0.2s ease;
}

.note-item:hover {
    box-shadow: var(--shadow-sm);
}

.resource-item {
    transition: all 0.2s ease;
}

.resource-item:hover {
    background-color: #f9fafb;
    box-shadow: var(--shadow-sm);
}

.qa-item {
    transition: all 0.2s ease;
}

.qa-item:hover {
    box-shadow: var(--shadow-sm);
}

.lesson-navigation {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

/* Responsive Learning */
@media (max-width: 992px) {
    .learning-container {
        height: auto;
    }
    
    .video-section {
        height: auto;
    }
    
    .course-sidebar {
        height: auto;
        max-height: 500px;
    }
    
    .lesson-content {
        max-height: none;
    }
}

@media (max-width: 768px) {
    .learning-header {
        padding: 0.75rem 0;
        min-height: 70px;
    }

    .learning-header .col-md-4:nth-child(2) {
        order: 3;
        margin-top: 0.5rem;
    }

    .learning-header h6 {
        font-size: 0.9rem;
    }

    .learning-container {
        height: auto;
        margin-top: 70px !important;
    }

    .video-player {
        padding-top: 56.25%; /* Maintain 16:9 aspect ratio on mobile */
    }

    .lesson-content {
        padding: 1rem !important;
    }
}

/* My Courses Dashboard */
.stat-card {
    transition: all 0.3s ease;
}

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

.my-course-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.my-course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.course-thumbnail {
    height: 120px;
    border-radius: 12px 0 0 12px;
}

.course-status {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

.activity-item {
    transition: all 0.2s ease;
}

.activity-item:hover {
    background-color: #f9fafb;
    margin: 0 -1rem;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    border-radius: 8px;
}

.activity-icon {
    font-size: 1.2rem;
}

.achievement-item {
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.achievement-item:hover {
    background-color: #f9fafb;
}

.achievement-badge {
    font-size: 2rem;
}

/* Dashboard Responsive */
@media (max-width: 768px) {
    .my-course-card .row {
        flex-direction: column;
    }
    
    .course-thumbnail {
        height: 150px;
        border-radius: 12px 12px 0 0;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
}

/* Blog Styles */
.blog-post-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-post-card img {
    transition: all 0.3s ease;
}

.blog-post-card:hover img {
    transform: scale(1.05);
}

.post-image {
    height: 200px;
    border-radius: 12px 0 0 12px;
    object-fit: cover;
    width: 100%;
}

.post-stats {
    font-size: 0.85rem;
}

.featured-post .card {
    border-radius: 20px;
    min-height: 400px;
}

.featured-post .row {
    min-height: 400px;
}

.featured-post .col-md-6:first-child {
    display: flex;
    align-items: stretch;
}

.featured-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 20px 0 0 20px;
}

.popular-post {
    transition: all 0.2s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.popular-post:hover {
    background-color: #f9fafb;
}

.tags-cloud .badge {
    transition: all 0.2s ease;
}

.tags-cloud .badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Blog Detail Styles */
.article-content .prose {
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.highlight-box {
    border-left: 4px solid var(--indo-primary);
}

.code-block {
    border-radius: 12px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.info-card, .warning-card, .success-card {
    border-radius: 12px;
}

.author-bio {
    border-radius: 16px;
}

.comment-item {
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.2s ease;
}

.comment-item:hover {
    background-color: #f9fafb;
}

.comment-reply {
    border-left: 3px solid #e2e8f0;
    border-radius: 0 8px 8px 0;
}

.toc-nav a {
    color: var(--indo-secondary);
    border-left: 3px solid transparent;
    padding-left: 1rem;
    transition: all 0.2s ease;
}

.toc-nav a:hover,
.toc-nav a.active {
    color: var(--indo-primary);
    border-left-color: var(--indo-primary);
    background-color: #f0f9ff;
}

/* Blog Series Styles */
.series-progress-card {
    box-shadow: var(--shadow-lg);
}

.series-article-card {
    border-radius: 16px;
    transition: all 0.3s ease;
}

.series-article-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.series-article-card.upcoming-article {
    opacity: 0.7;
}

.series-article-card.upcoming-article:hover {
    opacity: 1;
}

.number-badge {
    font-size: 1rem;
    font-weight: 700;
}

.other-series-item {
    transition: all 0.2s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.other-series-item:hover {
    background-color: #f9fafb;
}

.related-course {
    transition: all 0.2s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.related-course:hover {
    background-color: #f9fafb;
}

.progress-stats .stat-item {
    padding: 0.5rem;
}

/* Blog Responsive */
@media (max-width: 768px) {
    .blog-post-card .row {
        flex-direction: column;
    }
    
    .post-image {
        height: 150px;
        border-radius: 12px 12px 0 0;
        object-fit: cover;
        width: 100%;
    }
    
    .featured-post .row {
        flex-direction: column;
        min-height: auto;
    }
    
    .featured-post .card {
        min-height: auto;
    }
    
    .featured-post .col-md-6:first-child {
        display: block;
    }
    
    .featured-image {
        height: 250px;
        object-fit: cover;
        width: 100%;
        border-radius: 20px 20px 0 0;
    }
    
    .article-content .prose {
        font-size: 1rem;
    }
    
    .series-article-card .row {
        flex-direction: column;
    }
    
    .article-actions {
        margin-top: 1rem;
        text-align: center;
    }
    
    .series-progress-card {
        margin-bottom: 2rem;
    }
}

/* About Page Styles */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--indo-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--indo-primary);
}

.timeline-content {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.team-card {
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 16px;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-card {
    transition: all 0.3s ease;
    border-radius: 16px;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: #f8fafc;
}

.stat-item {
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

/* Payment Styles */
.payment-steps {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: #6b7280;
}

.payment-steps .step.active {
    color: var(--indo-primary);
    font-weight: 600;
}

.payment-steps .step.completed {
    color: #22c55e;
}

.step-divider {
    width: 30px;
    height: 2px;
    background-color: #e5e7eb;
    margin: 0 0.5rem;
}

.payment-method {
    border-radius: 12px;
    overflow: hidden;
}

.payment-method input[type="radio"]:checked + label {
    background-color: #eff6ff;
    border-color: var(--indo-primary);
}

.ewallet-option {
    height: 100px;
}

/* Success Page */
.success-icon {
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.step-item {
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* Simplified Learning Interface */
.learning-interface {
    background-color: white;
}

/* Learning header style is already defined above */

.video-section {
    background-color: #f8fafc;
}

.lesson-content {
    background-color: white;
    border-radius: 12px;
    margin: 1rem;
}

/* Article Content & Prose Styles */
.article-content {
    line-height: 1.8;
}

.article-content .prose {
    max-width: 100%;
    color: #374151;
}

.article-content .prose h1,
.article-content .prose h2,
.article-content .prose h3,
.article-content .prose h4,
.article-content .prose h5,
.article-content .prose h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #111827;
}

.article-content .prose h1 { font-size: 2rem; }
.article-content .prose h2 {
    font-size: 1.75rem;
    color: var(--indo-primary);
}
.article-content .prose h3 { font-size: 1.5rem; }
.article-content .prose h4 { font-size: 1.25rem; }
.article-content .prose h5 { font-size: 1.125rem; }
.article-content .prose h6 { font-size: 1rem; }

.article-content .prose p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

.article-content .prose a {
    color: var(--indo-primary);
    text-decoration: underline;
}

.article-content .prose a:hover {
    color: var(--indo-primary-dark);
}

.article-content .prose ul,
.article-content .prose ol {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.article-content .prose li {
    margin-bottom: 0.5rem;
}

.article-content .prose blockquote {
    border-left: 4px solid var(--indo-primary);
    padding-left: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin: 1.5rem 0;
    color: #6b7280;
    font-style: italic;
    background-color: #f9fafb;
}

.article-content .prose code {
    background-color: #f3f4f6;
    color: #e11d48;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.article-content .prose pre {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.article-content .prose pre code {
    background-color: transparent;
    color: inherit;
    padding: 0;
    font-size: 0.875rem;
}

.article-content .prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.article-content .prose table th,
.article-content .prose table td {
    border: 1px solid #e5e7eb;
    padding: 0.75rem;
    text-align: left;
}

.article-content .prose table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #111827;
}

.article-content .prose img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.article-content .prose hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 2rem 0;
}

/* Pagination Styles */
.pagination {
    gap: 0.25rem;
}

.pagination .page-link {
    color: var(--indo-primary);
    border-color: #e5e7eb;
    border-radius: 8px;
    margin: 0 0.125rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination .page-link:hover {
    background-color: #f0f9ff;
    border-color: var(--indo-primary);
    color: var(--indo-primary-dark);
}

.pagination .page-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(11, 170, 202, 0.25);
}

.pagination .page-item.active .page-link {
    background-color: var(--indo-primary);
    border-color: var(--indo-primary);
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: #9ca3af;
    background-color: #f9fafb;
    border-color: #e5e7eb;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .timeline {
        padding-left: 1.5rem;
    }

    .timeline::before {
        left: 0.75rem;
    }

    .timeline-marker {
        left: -1.5rem;
    }

    .payment-steps {
        flex-direction: column;
        gap: 1rem;
    }

    .step-divider {
        width: 2px;
        height: 20px;
        margin: 0;
    }
}
