/* SEO Guide Styles */
/* Main Title in Introduction */
.guide-main-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 2rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.guide-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guide-main-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.guide-main-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.guide-stat {
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
    color: white;
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite;
    min-width: 140px;
    text-align: center;
}

.guide-stat:nth-child(1) {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
}

.guide-stat:nth-child(2) {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
}

.guide-stat:nth-child(3) {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
}

.guide-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.2) 0%, transparent 60%);
    pointer-events: none;
}

.guide-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -5px rgba(79, 70, 229, 0.4);
}

.guide-stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    position: relative;
}

.guide-stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    margin: 0 auto 0.5rem;
}

.guide-stat:hover .guide-stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.25);
}

.guide-stat-icon .guide-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.guide-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0.5rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.guide-stat-number::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.guide-stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-top: 0.5rem;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Vume AI Badge */
.vume-ai-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background-color: #10b981;
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transform: rotate(3deg);
    z-index: 10;
}

/* Fixed Bottom Navigation */
.guide-bottom-navigation {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.guide-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.guide-progress-center {
    flex: 1;
    max-width: 400px;
    margin: 0 auto;
}

.guide-progress-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.guide-progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.guide-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.guide-progress-text {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    text-align: center;
}

/* Guide Layout */
.guide-content {
    padding: 2rem 0 8rem 0; /* Add bottom padding for fixed navigation */
}

/* Styled Question List */
.guide-question-list {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
}

.guide-question-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guide-question-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    transition: width 0.3s ease;
}

.guide-question-item:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #ddd6fe 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.15);
}

.guide-question-item:hover:before {
    width: 8px;
}

.guide-question-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.guide-question-text {
    color: #374151;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
}

/* Analysis Cards */
.guide-analysis-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.guide-analysis-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guide-analysis-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
}

.guide-analysis-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(79, 70, 229, 0.15);
}

.guide-analysis-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 12px;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.guide-analysis-card h4 {
    color: #1f2937;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.guide-analysis-card p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Enhanced Styled Lists */
.guide-styled-list {
    display: grid;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
}

.guide-styled-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.guide-styled-item:hover {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-color: #a5b4fc;
}

.guide-styled-item:before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.guide-styled-item-text {
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Code Block Enhancements */
.guide-code-block {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid #334155;
    position: relative;
}

.guide-copy-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border: none;
    border-radius: 0.5rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.guide-copy-btn:hover {
    background: linear-gradient(135deg, #3730a3, #6d28d9);
    transform: translateY(-1px);
}

.guide-copy-btn:active {
    transform: translateY(0);
}

.guide-copy-btn.copied {
    background: linear-gradient(135deg, #10b981, #059669);
}

.guide-code-content {
    padding: 0;
}

.guide-code-content pre {
    margin: 0;
    font-family: 'Fira Code', 'Monaco', 'Consolas', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #e2e8f0;
    overflow-x: auto;
    padding-right: 5rem; /* Add padding to avoid copy button overlap */
}

.guide-code-content code {
    background: none;
    padding: 0;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
}

.guide-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sidebar Navigation */
.guide-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.guide-nav {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.guide-nav-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

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

.guide-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    margin-bottom: 0.5rem;
}

.guide-nav-item:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.guide-nav-item.active {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border-color: #4f46e5;
}

.guide-nav-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #e5e7eb;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    flex-shrink: 0;
}

.guide-nav-item.active .guide-nav-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.guide-nav-label {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Main Content */
.guide-main {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.guide-step {
    display: none;
    padding: 2rem;
}

.guide-step.active {
    display: block;
    animation: slideIn 0.3s ease;
}

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

.guide-step-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.guide-step-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.guide-step-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.guide-step-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}

.guide-step-body {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
}

.guide-step-body p {
    margin-bottom: 1.5rem;
}

/* Introduction Content */
.guide-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.guide-intro-text p {
    margin-bottom: 1.5rem;
}

.guide-intro-highlights h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

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

.guide-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #374151;
}

/* Info Cards */
.guide-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.guide-info-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guide-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
}

.guide-info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.guide-info-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.guide-info-card p {
    color: #6b7280;
    margin: 0;
}

/* Process Steps */
.guide-process-steps {
    margin: 2rem 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

.process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.process-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.process-content p {
    color: #6b7280;
    margin: 0;
}

/* Code Blocks */
.guide-code-block {
    background: #1f2937;
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.guide-code-block h4 {
    color: #f9fafb;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.guide-code-block pre {
    margin: 0;
    overflow-x: auto;
}

.guide-code-block code {
    color: #e5e7eb;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    white-space: pre-wrap;
}

/* Highlight Boxes */
.guide-highlight-box {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #f59e0b;
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.guide-highlight-box h4 {
    color: #92400e;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.guide-highlight-box p {
    color: #78350f;
    margin: 0;
}

/* Intent Types */
.intent-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.intent-type {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.intent-type h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.intent-type p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.intent-examples {
    background: #f3f4f6;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #4b5563;
    font-style: italic;
}

/* Quiz Styles */
.guide-quiz {
    display: none;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
}

.guide-quiz.active {
    display: block;
}

.guide-quiz h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

.quiz-question p {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1rem;
}

.quiz-options {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quiz-option:hover {
    border-color: #4f46e5;
    background: #f8fafc;
}

.quiz-option input {
    margin: 0;
}

.quiz-feedback {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

.quiz-correct-feedback {
    background: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
}

.quiz-incorrect-feedback {
    background: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

/* Navigation Buttons */
.guide-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    background: white;
    color: #374151;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    min-width: 120px;
    justify-content: center;
}

.guide-nav-btn:hover:not(:disabled) {
    background: #f3f4f6;
    border-color: #9ca3af;
    transform: translateY(-1px);
}

.guide-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.guide-nav-next {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border-color: #4f46e5;
}

.guide-nav-next:hover:not(:disabled) {
    background: linear-gradient(135deg, #3730a3, #6b21a8);
    transform: translateY(-1px);
}

.guide-nav-text {
    font-weight: 600;
}

/* Mobile step indicator - hidden by default */
.guide-step-indicator-mobile {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .guide-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guide-sidebar {
        position: static;
        order: 2;
    }
    
    .guide-main-stats {
        gap: 1rem;
        flex-direction: row;
    }
    
    .guide-stat {
        padding: 1.25rem;
        min-width: 120px;
    }
    
    .guide-stat-number {
        font-size: 1.75rem;
    }
    
    .guide-stat-icon {
        width: 2rem;
        height: 2rem;
    }
    
    .guide-stat-icon .guide-icon {
        width: 1rem;
        height: 1rem;
    }
    
    .guide-intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guide-info-grid {
        grid-template-columns: 1fr;
    }
    
    .intent-types {
        grid-template-columns: 1fr;
    }
    
    .guide-step {
        padding: 1.5rem;
    }
    
    .guide-bottom-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        position: relative;
    }
    
    .guide-progress-center {
        order: 1;
        max-width: none;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .guide-progress-wrapper {
        gap: 0.5rem;
    }
    
    .guide-progress-text {
        font-size: 0.8rem;
    }
    
    /* Create navigation row */
    .guide-nav-btn {
        order: 2;
        min-width: 44px;
        max-width: 44px;
        height: 44px;
        border-radius: 50%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: absolute;
        bottom: 1rem;
    }
    
    .guide-nav-prev {
        left: 1rem;
    }
    
    .guide-nav-next {
        right: 1rem;
    }
    
    .guide-nav-btn:hover:not(:disabled) {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
    
    .guide-nav-btn:active {
        transform: scale(0.95);
    }
    
    .guide-nav-btn svg {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    /* Hide text labels on mobile */
    .guide-nav-text {
        display: none;
    }
    
    /* Add space for navigation buttons */
    .guide-bottom-navigation {
        padding-bottom: 3rem;
    }
    
    /* Create step indicator in the middle of navigation row */
    .guide-step-indicator-mobile {
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.875rem;
        color: #6b7280;
        font-weight: 500;
        white-space: nowrap;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 44px;
        z-index: 1;
    }
    
    /* Hide original progress text on mobile */
    .guide-progress-text {
        display: none;
    }
    
    /* Mobile styles for new components */
    .guide-question-item {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .guide-question-icon {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }
    
    .guide-question-text {
        font-size: 0.9rem;
    }
    
    .guide-analysis-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .guide-analysis-card {
        padding: 1rem;
    }
    
    .guide-analysis-card-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .guide-styled-item {
        padding: 0.75rem;
    }
    
    .guide-code-block {
        padding: 1rem;
    }
    
    .guide-copy-btn {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.375rem 0.75rem;
        font-size: 0.7rem;
    }
    
    .guide-code-content pre {
        font-size: 0.8rem;
        padding-right: 4rem;
    }
}

@media (max-width: 480px) {
    .guide-main-title {
        font-size: 2rem;
    }
    
    .guide-main-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .guide-stat {
        padding: 1rem;
        min-width: 130px;
        max-width: 150px;
    }
    
    .guide-stat-number {
        font-size: 1.5rem;
    }
    
    .guide-stat-icon {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .guide-stat-icon .guide-icon {
        width: 0.875rem;
        height: 0.875rem;
    }
    
    .guide-step-title {
        font-size: 1.5rem;
    }
    
    .guide-nav {
        padding: 1rem;
    }
    
    .guide-nav-btn {
        min-width: 40px;
        max-width: 40px;
        height: 40px;
        padding: 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .guide-nav-btn:hover:not(:disabled) {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
    
    .guide-nav-btn:active {
        transform: scale(0.95);
    }
    
    .guide-nav-btn svg {
        width: 1rem;
        height: 1rem;
    }
    
    .guide-nav-text {
        display: none;
    }
    
    .guide-step-indicator-mobile {
        font-size: 0.8rem;
        height: 40px;
    }
    
    .guide-bottom-wrapper {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .guide-progress-wrapper {
        gap: 0.5rem;
    }
    
    .guide-progress-text {
        font-size: 0.75rem;
    }
} 