/* Base guide styles and smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Add scroll offset for headings to account for sticky elements */
.content-section-header h2[id] {
    scroll-margin-top: 2rem;
}

/* Section anchor for TOC navigation */
.section-anchor {
    scroll-margin-top: 2rem;
}

.section-anchor h2 {
    margin: 0;
    padding: 0;
}

/* General guide container */

/* ===== GUIDES LISTING PAGE ===== */

.guides-container {
    padding: 2rem;
    padding-bottom: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
}

/* Guides Header */
.guides-header {
    margin-bottom: 3rem;
}

.header-content {
    text-align: center;
    margin-bottom: 2rem;
}

.guides-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.guides-title i {
    color: #10a37f;
    font-size: 2.2rem;
}

.guides-description {
    font-size: 1.1rem;
    color: #b3b3b3;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Guides Filters - REMOVED */
/*
.guides-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #444654;
    border: 2px solid #444654;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    background: #565869;
    border-color: #565869;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #10a37f;
    border-color: #10a37f;
    color: #ffffff;
}

.filter-btn i {
    font-size: 0.9rem;
}
*/

/* Guides Grid */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
}

.guide-card {
    background: #444654;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 1;
    transform: scale(1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.guide-card:hover {
    transform: translateY(-8px);
    border-color: #10a37f;
    box-shadow: 0 20px 40px rgba(16, 163, 127, 0.2);
}

.guide-card.hidden {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

/* Guide Card Header - REMOVED */
/*
.guide-card-header {
    position: relative;
    padding: 1.5rem;
    border-bottom: 1px solid #565869;
}
*/

/* Guide Image - REMOVED */
/*
.guide-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #565869;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.guide-card:hover .guide-image img {
    transform: scale(1.05);
}
*/

.guide-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.guide-category {
    background: rgba(16, 163, 127, 0.2);
    color: #10a37f;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(16, 163, 127, 0.3);
}

.guide-difficulty {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.guide-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.guide-card-title {
    margin-bottom: 1rem;
}

.guide-card-title a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.guide-card-title a:hover {
    color: #10a37f;
}

.guide-card-description {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.guide-card-info {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.reading-time,
.guide-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #888888;
    font-size: 0.85rem;
}

.guide-card-footer {
    padding: 1.5rem;
    border-top: 1px solid #565869;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    margin-top: auto;
}

.read-guide-btn {
    background: #10a37f;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-guide-btn:hover {
    background: #0d8a6b;
    transform: translateX(3px);
}

.guide-date {
    color: #888888;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* No Guides Placeholder */
.no-guides-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
}

.placeholder-content {
    max-width: 500px;
    margin: 0 auto;
}

.placeholder-content i {
    font-size: 4rem;
    color: #10a37f;
    margin-bottom: 1.5rem;
}

.placeholder-content h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.placeholder-content p {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.back-home-btn {
    background: #10a37f;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-home-btn:hover {
    background: #0d8a6b;
    transform: translateY(-2px);
}

/* Quick Start Section */
.quick-start-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title i {
    color: #10a37f;
}

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

.quick-start-card {
    background: #444654;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-start-card:hover {
    transform: translateY(-5px);
    border-color: #10a37f;
    box-shadow: 0 15px 30px rgba(16, 163, 127, 0.15);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 3rem;
    color: #10a37f;
}

.quick-start-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.quick-start-card p {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quick-start-link {
    color: #10a37f;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-start-link:hover {
    color: #0d8a6b;
    transform: translateX(3px);
}

/* Help Section */
.guides-help-section {
    background: linear-gradient(135deg, rgba(16, 163, 127, 0.1), rgba(16, 163, 127, 0.05));
    border: 1px solid rgba(16, 163, 127, 0.2);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
}

.help-content h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.help-content h3 i {
    color: #10a37f;
}

.help-content p {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.help-btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.help-btn.primary {
    background: #10a37f;
    color: #ffffff;
}

.help-btn.primary:hover {
    background: #0d8a6b;
    transform: translateY(-2px);
}

.help-btn.secondary {
    background: transparent;
    color: #10a37f;
    border: 2px solid #10a37f;
}

.help-btn.secondary:hover {
    background: #10a37f;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ===== GUIDE DETAIL PAGE ===== */

.guide-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
}

/* Guide Header */
.guide-header {
    margin-bottom: 3rem;
    border-bottom: 2px solid #444654;
    padding-bottom: 2rem;
}

.guide-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: #10a37f;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #0d8a6b;
}

.breadcrumb-separator {
    color: #888888;
    font-size: 0.7rem;
}

.breadcrumb-current {
    color: #b3b3b3;
}

.guide-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.guide-reading-time {
    background: rgba(68, 70, 84, 0.8);
    color: #b3b3b3;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guide-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.guide-description {
    font-size: 1.1rem;
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Author and date info styles - REMOVED
.guide-info {
    display: flex;
    gap: 2rem;
    color: #888888;
    font-size: 0.9rem;
}

.guide-author,
.guide-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
*/

/* Guide Content Styles */
.guide-content {
    margin-bottom: 3rem;
    line-height: 1.7;
}

.content-header h1 {
    font-size: 2.2rem;
    color: #ffffff;
    margin: 2rem 0 1.5rem 0;
    border-bottom: 3px solid #10a37f;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

.content-section-header h2 {
    font-size: 1.6rem;
    color: #ffffff;
    margin: 3rem 0 1.5rem 0;
    font-weight: 600;
}

/* Removed left border
.content-section-header h2:before {
    content: '';
    width: 4px;
    height: 24px;
    background: #10a37f;
    border-radius: 2px;
}
*/

.content-intro,
.content-paragraph,
.content-conclusion {
    margin: 2rem 0;
}

.content-intro p,
.content-paragraph p,
.content-conclusion p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e8e8e8;
    margin-bottom: 1rem;
}

.content-intro {
    background: rgba(16, 163, 127, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.content-conclusion {
    background: rgba(16, 163, 127, 0.1);
    border: 1px solid rgba(16, 163, 127, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.content-conclusion p {
    margin: 0;
    font-weight: 500;
}

/* Alert Styles */
.content-warning,
.content-tip,
.content-info {
    margin: 2rem 0;
    border-radius: 16px;
    /* Removed left border - border-left: 4px solid; */
    overflow: hidden;
    border: 2px solid transparent;
}

.content-warning {
    background: rgba(234, 67, 53, 0.12);
    border-color: rgba(234, 67, 53, 0.3);
    /* Removed border-left-color: #ea4335; */
}

.content-tip {
    background: rgba(16, 163, 127, 0.12);
    border-color: rgba(16, 163, 127, 0.3);
    /* Changed from yellow to theme teal color */
}

.content-info {
    background: rgba(66, 133, 244, 0.12);
    border-color: rgba(66, 133, 244, 0.3);
    /* Removed border-left-color: #4285f4; */
}

.alert-content {
    padding: 1.5rem 2rem;
}

.alert-content p {
    margin: 0;
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.6;
}

.content-warning .alert-content p {
    color: #ff6b6b;
}

.content-tip .alert-content p {
    color: #10a37f;
}

.content-info .alert-content p {
    color: #74b9ff;
}

/* List Styles */
.content-list {
    margin: 2rem 0;
}

.content-list ul {
    list-style: none;
    padding: 0;
    background: rgba(68, 70, 84, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.content-list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2.5rem;
    color: #f0f0f0;
    line-height: 1.7;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-list li:last-child {
    border-bottom: none;
}

.content-list li:before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #10a37f;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Numbered Steps */
.content-numbered-step {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(68, 70, 84, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(16, 163, 127, 0.3);
    transition: all 0.3s ease;
}

.content-numbered-step:hover {
    background: rgba(68, 70, 84, 0.8);
    border-color: rgba(16, 163, 127, 0.5);
}

.step-number {
    background: linear-gradient(135deg, #10a37f, #0d8a6b);
    color: #ffffff;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(16, 163, 127, 0.3);
}

.step-content p {
    margin: 0;
    color: #f0f0f0;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Troubleshooting */
.content-troubleshooting {
    background: rgba(234, 67, 53, 0.05);
    border: 2px solid rgba(234, 67, 53, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.troubleshoot-problem h4 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.troubleshoot-solutions h5 {
    color: #10a37f;
    margin: 1rem 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.troubleshoot-solutions ul {
    list-style: none;
    padding: 0;
}

.troubleshoot-solutions li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.troubleshoot-solutions li:before {
    content: '🔧';
    position: absolute;
    left: 0;
}

/* FAQ Styles */
.content-faq {
    background: rgba(16, 163, 127, 0.05);
    border: 2px solid rgba(16, 163, 127, 0.2);
    border-radius: 16px;
    padding: 0;
    margin: 2rem 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.content-faq:hover {
    border-color: rgba(16, 163, 127, 0.4);
    background: rgba(16, 163, 127, 0.08);
}

.faq-question {
    background: rgba(16, 163, 127, 0.15);
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(16, 163, 127, 0.2);
}

.faq-question h4 {
    color: #10a37f;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.4;
}

.faq-question h4 i {
    color: #10a37f;
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.faq-answer {
    padding: 1.5rem;
}

.faq-answer p {
    color: #e8e8e8;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

/* Table of Contents Styles */
.guide-toc {
    background: rgba(68, 70, 84, 0.4);
    border: 2px solid rgba(16, 163, 127, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: sticky;
    top: 2rem;
    z-index: 10;
}

.toc-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.toc-header i {
    color: #10a37f;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-item {
    margin-bottom: 0.5rem;
}

.toc-link {
    color: #b3b3b3;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.4;
}

.toc-link:hover {
    color: #10a37f;
    background: rgba(16, 163, 127, 0.1);
    transform: translateX(5px);
}

.toc-link:before {
    content: '▶';
    color: #10a37f;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.toc-link:hover:before {
    transform: translateX(3px);
}

.reading-time-badge {
    background: rgba(16, 163, 127, 0.2);
    color: #10a37f;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.reading-time-badge i {
    font-size: 0.7rem;
}

/* Guide Navigation */
.guide-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
    padding: 1.5rem;
    background: rgba(68, 70, 84, 0.3);
    border-radius: 12px;
    border: 1px solid #565869;
}

.nav-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.back-btn {
    background: #444654;
    color: #ffffff;
}

.back-btn:hover {
    background: #565869;
    transform: translateX(-3px);
}

.guide-actions {
    display: flex;
    gap: 1rem;
}

.share-btn,
.print-btn {
    background: transparent;
    color: #10a37f;
    border: 2px solid #10a37f;
}

.share-btn:hover,
.print-btn:hover {
    background: #10a37f;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Related Guides - REMOVED
.related-guides {
    border-top: 2px solid #444654;
    padding-top: 2rem;
    margin-top: 3rem;
}

.related-guides h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.related-guides h3 i {
    color: #10a37f;
}

.related-guide-placeholder {
    text-align: center;
    padding: 2rem;
    background: rgba(68, 70, 84, 0.3);
    border-radius: 12px;
    border: 2px dashed #565869;
}

.related-guide-placeholder p {
    color: #b3b3b3;
    margin-bottom: 1.5rem;
}

.view-all-guides-btn {
    background: #10a37f;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.view-all-guides-btn:hover {
    background: #0d8a6b;
    transform: translateY(-2px);
}
*/

/* Share Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #444654;
    margin: 15% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #565869;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.close {
    color: #b3b3b3;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffffff;
}

.modal-body {
    padding: 1.5rem;
}

.share-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.share-option {
    background: transparent;
    border: 2px solid #565869;
    color: #ffffff;
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.share-option:hover {
    border-color: #10a37f;
    background: rgba(16, 163, 127, 0.1);
}

/* Social media specific colors */
.share-option[onclick*="Twitter"]:hover {
    border-color: #1DA1F2;
    background: rgba(29, 161, 242, 0.1);
    color: #1DA1F2;
}

.share-option[onclick*="Facebook"]:hover {
    border-color: #4267B2;
    background: rgba(66, 103, 178, 0.1);
    color: #4267B2;
}

.share-option[onclick*="Instagram"]:hover {
    border-color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
    color: #E4405F;
}

.share-option[onclick*="copyLink"]:hover {
    border-color: #10a37f;
    background: rgba(16, 163, 127, 0.1);
    color: #10a37f;
}

.share-option i {
    font-size: 1.5rem;
}

.share-link {
    display: flex;
    gap: 0.5rem;
}

.share-link input {
    flex: 1;
    background: #565869;
    border: 1px solid #6b7280;
    color: #ffffff;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.share-link button {
    background: #10a37f;
    border: none;
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.share-link button:hover {
    background: #0d8a6b;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    .guides-container,
    .guide-container {
        padding: 1rem;
        padding-bottom: 3rem;
    }
    
    .guides-title {
        font-size: 2rem;
    }
    
    .guide-title {
        font-size: 2rem;
    }
    
    .guides-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
        padding-bottom: 1.5rem;
    }
    
    .guides-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .quick-start-grid {
        grid-template-columns: 1fr;
    }
    
    .help-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .guide-navigation {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .guide-toc {
        position: static;
        margin: 1rem 0;
        max-height: none;
    }
    
    .guide-actions {
        justify-content: center;
    }
    
    .guide-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .content-numbered-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .share-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .guides-container,
    .guide-container {
        padding: 0.5rem;
        padding-bottom: 2rem;
    }
    
    .guides-title {
        font-size: 1.8rem;
    }
    
    .guide-title {
        font-size: 1.8rem;
    }
    
    .guide-card-header,
    .guide-card-content,
    .guide-card-footer {
        padding: 1rem;
    }
    
    .content-header h1 {
        font-size: 1.6rem;
    }
    
    .content-section-header h2 {
        font-size: 1.3rem;
    }
}
