:root {
    --primary-color: #3B82F6;
    --secondary-color: #8B5CF6;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --danger-color: #EF4444;
    --dark-color: #1F2937;
    --light-color: #F9FAFB;
    --text-color: #374151;
    --border-color: #E5E7EB;
    --max-width: 1200px;
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    padding: 1rem 20px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--dark-color);
    gap: 0.5rem;
    background: transparent;
}

.logo-image {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgba(59, 130, 246, 0.3));
    transition: filter 0.3s ease;
    background: transparent;
}

.logo:hover .logo-image {
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

.logo-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.logo-text {
    font-weight: 700;
    color: var(--dark-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.search-trigger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    padding: 0.5rem;
}

.search-trigger.search-simple {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    padding: 0.6rem;
    color: var(--primary-color);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-trigger.search-simple:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Visual Elements */
.hero-visual {
    margin-top: 3rem;
}

.floating-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.card-float {
    background: rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    min-width: 120px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.hero-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--success-color);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

/* Override for modern hero */
.hero-modern .hero-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-secondary.glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
}

.btn-secondary.glass:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Learning Paths */
.learning-paths {
    padding: 4rem 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: #6B7280;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Featured Content Section */
.featured-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.path-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.path-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.path-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.path-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.path-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Tutorials Grid */
.featured-tutorials {
    padding: 4rem 0;
}

.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tutorial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s;
}

.tutorial-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tutorial-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.difficulty {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 600;
    text-transform: capitalize;
}

.difficulty-beginner {
    background: #D1FAE5;
    color: #065F46;
}

.difficulty-intermediate {
    background: #DBEAFE;
    color: #1E40AF;
}

.difficulty-advanced {
    background: #FEE2E2;
    color: #991B1B;
}

.tutorial-card h3 {
    margin-bottom: 0.75rem;
}

.tutorial-card h3 a {
    color: var(--dark-color);
    text-decoration: none;
}

.tutorial-card h3 a:hover {
    color: var(--primary-color);
}

.tutorial-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tag {
    font-size: 0.875rem;
    color: var(--primary-color);
}

/* Practice Projects */
.practice-projects {
    padding: 4rem 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 3rem;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.project-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 0.5rem;
    align-items: center;
}

.project-icon {
    font-size: 2.5rem;
}

.project-content h3 {
    margin-bottom: 0.5rem;
}

.project-content h3 a {
    color: var(--dark-color);
    text-decoration: none;
}

.project-content h3 a:hover {
    color: var(--primary-color);
}

.project-meta {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6B7280;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Footer */
.site-footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #D1D5DB;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    color: #9CA3AF;
}

.disclaimer {
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

/* Ad Containers */
.ad-container {
    margin: 2rem auto;
    text-align: center;
}

/* Tutorial Single Page */
.tutorial-single {
    padding: 3rem 0;
}

.tutorial-header {
    margin-bottom: 3rem;
}

.breadcrumb {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #6B7280;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.tutorial-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.tutorial-metadata {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1rem;
    color: #6B7280;
}

.tutorial-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
}

.tutorial-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.toc-container {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.toc-container h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.toc-container nav ul {
    list-style: none;
    padding-left: 0;
}

.toc-container nav ul ul {
    padding-left: 1.5rem;
}

.toc-container a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    font-size: 0.875rem;
}

.toc-container a:hover {
    color: var(--primary-color);
}

.tutorial-content {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.tutorial-content h2 {
    margin: 2rem 0 1rem;
    color: var(--dark-color);
}

.tutorial-content h3 {
    margin: 1.5rem 0 0.75rem;
    color: var(--dark-color);
}

.tutorial-content p {
    margin-bottom: 1rem;
}

.tutorial-content ul,
.tutorial-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.tutorial-content pre {
    background: #1F2937;
    color: #F9FAFB;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin-bottom: 1rem;
}

.tutorial-content code {
    background: #F3F4F6;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

.tutorial-content pre code {
    background: none;
    padding: 0;
}

.prerequisites {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.prerequisites h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.tutorial-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.nav-prev,
.nav-next {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.related-tutorials {
    padding: 4rem 0;
    background: var(--light-color);
}

.related-tutorials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tutorials-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-cards {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-visual {
        margin-top: 2rem;
    }
    
    .logo-image {
        width: 24px;
        height: 24px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .tutorial-layout {
        grid-template-columns: 1fr;
    }
    
    .tutorial-sidebar {
        position: static;
        order: 2;
    }
    
    .tutorial-content {
        order: 1;
    }
}

/* Copy Button for Code Blocks */
.copy-button {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

pre:hover .copy-button {
    opacity: 1;
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary-color);
    z-index: 1000;
    transition: width 0.3s;
}

/* TOC Active Link */
.toc-container a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-modal[x-show="true"] {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-top: 5vh;
}

.search-input-section {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 16px;
    color: #6b7280;
}

.search-input {
    width: 100%;
    padding: 12px 48px 12px 48px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
}

.search-input:focus {
    border-color: var(--primary-color);
}

.close-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #6b7280;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.close-btn:hover {
    background-color: #f3f4f6;
}

.search-results-section {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.search-loading {
    text-align: center;
    padding: 40px;
}

.spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    border: 3px solid #f3f4f6;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.no-results {
    text-align: center;
    padding: 40px;
    color: #6b7280;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.result-item {
    display: block;
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s;
}

.result-item:hover,
.result-item.selected {
    background-color: #f3f4f6;
}

.result-content h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
}

.result-content p {
    margin: 0 0 8px 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

.result-meta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.difficulty-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.difficulty-beginner {
    background-color: #d1fae5;
    color: #065f46;
}

.difficulty-intermediate {
    background-color: #fef3c7;
    color: #92400e;
}

.difficulty-advanced {
    background-color: #fee2e2;
    color: #991b1b;
}

.result-tags {
    display: flex;
    gap: 8px;
}

.tag {
    color: #6b7280;
    font-size: 12px;
}

.quick-access {
    padding: 20px;
}

.quick-access h3 {
    margin: 0 0 16px 0;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.quick-link:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.quick-link-icon {
    font-size: 24px;
}

.modal-footer {
    padding: 16px 20px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

.keyboard-shortcuts {
    display: flex;
    gap: 16px;
    justify-content: center;
    font-size: 13px;
    color: #6b7280;
}

.shortcut {
    display: flex;
    align-items: center;
    gap: 4px;
}

kbd {
    padding: 2px 6px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-family: monospace;
    font-size: 12px;
}

/* Alpine.js cloak directive */
[x-cloak] {
    display: none !important;
}

/* Ensure no unwanted floating elements */
.notification:not([style*="translateX(0)"]) {
    display: none;
}


.search-container {
    background: white;
    width: 90%;
    max-width: 600px;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.search-input {
    width: 100%;
    padding: 0.75rem;
    font-size: 1.125rem;
    border: 2px solid var(--border-color);
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
}

.search-result {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background 0.2s;
}

.search-result:hover {
    background: var(--light-color);
}

.search-result h4 {
    margin: 0;
    color: var(--dark-color);
}

.search-result p {
    margin: 0.25rem 0 0;
    font-size: 0.875rem;
    color: #6B7280;
}

/* Section Header */
.section-header {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.section-description {
    font-size: 1.125rem;
    color: #6B7280;
    text-align: center;
    max-width: 600px;
    margin: 1rem auto 2rem;
}

/* Difficulty Filter */
.difficulty-filter {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

/* Content Section */
.content-section {
    padding: 3rem 0;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.project-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.project-icon {
    font-size: 2rem;
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-end;
    font-size: 0.875rem;
}

.duration {
    color: #6B7280;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.project-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.project-link:hover {
    text-decoration: underline;
}

/* Tutorial Footer */
.tutorial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.tutorial-date {
    color: #6B7280;
    font-size: 0.875rem;
}

/* Content List */
.content-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-item {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.content-item h3 {
    margin-bottom: 1rem;
}

.content-item h3 a {
    color: var(--dark-color);
    text-decoration: none;
}

.content-item h3 a:hover {
    color: var(--primary-color);
}

.content-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.content-date {
    color: #6B7280;
    font-size: 0.875rem;
}

.content-tags {
    display: flex;
    gap: 0.5rem;
}

/* Learning Paths CTA */
.learning-paths-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.learning-paths-cta h2 {
    margin-bottom: 1rem;
}

.learning-paths-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}