/* =============================================
   Grafana Guide — Page-Specific Styles
   Inherits design system from style.css
   ============================================= */

/* =============================================
   Table of Contents
   ============================================= */
.guide-toc {
    max-width: 480px;
    margin: 0 auto 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    overflow: hidden;
}

.toc-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
}

.toc-header svg {
    color: var(--accent-orange);
    flex-shrink: 0;
}

.toc-list {
    list-style: none;
    counter-reset: toc;
    padding: 0.75rem 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.toc-list li {
    counter-increment: toc;
}

.toc-list li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}

.toc-list li a::before {
    content: counter(toc, decimal-leading-zero);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-orange);
    opacity: 0.6;
    min-width: 1.5rem;
}

.toc-list li a:hover {
    background: rgba(245, 158, 11, 0.06);
    color: var(--text-primary);
}

.toc-list li a:hover::before {
    opacity: 1;
}

/* =============================================
   Guide Sections
   ============================================= */
.guide-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

.guide-section:first-of-type {
    border-top: none;
}

.guide-section-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.guide-step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    opacity: 0.35;
    flex-shrink: 0;
    line-height: 1;
    padding-top: 0.25rem;
}

.guide-section-header .section-title {
    margin-bottom: 0.25rem;
}

.guide-section-header .section-desc {
    margin-bottom: 0;
}

/* =============================================
   Guide Cards
   ============================================= */
.guide-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.guide-card {
    display: flex;
    gap: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 1.5rem;
    transition: border-color 0.3s;
}

.guide-card:hover {
    border-color: var(--border-hover);
}

.guide-card.compact {
    padding: 1.25rem;
}

.guide-card-step {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-orange);
    border: 1px solid rgba(245, 158, 11, 0.2);
    font-family: 'JetBrains Mono', monospace;
}

.guide-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-orange);
}

.guide-card-body {
    flex: 1;
    min-width: 0;
}

.guide-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.guide-card-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.guide-card-body code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    background: rgba(245, 158, 11, 0.08);
    color: var(--accent-orange);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    border: 1px solid rgba(245, 158, 11, 0.12);
}

.guide-card-body kbd {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1px solid var(--border-hover);
    box-shadow: 0 1px 0 var(--surface);
}

/* =============================================
   Info & Warning Boxes
   ============================================= */
.guide-info-box,
.guide-warning-box {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    margin-top: 0.75rem;
    font-size: 0.82rem;
    line-height: 1.6;
}

.guide-info-box {
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
    color: var(--text-secondary);
}

.guide-info-box svg {
    color: var(--accent-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.guide-warning-box {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
    color: var(--text-secondary);
}

.guide-warning-box svg {
    color: var(--accent-red);
    flex-shrink: 0;
    margin-top: 2px;
}

/* =============================================
   Code Block
   ============================================= */
.guide-code-block {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 0.75rem;
}

.code-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.code-header svg {
    color: var(--accent-orange);
}

.guide-code-block code {
    display: block;
    padding: 0.85rem 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.88rem;
    color: var(--accent-orange);
    background: none;
    border: none;
}

/* =============================================
   Credential Table
   ============================================= */
.guide-credential-table {
    margin-top: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.cred-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    font-size: 0.82rem;
}

.cred-row + .cred-row {
    border-top: 1px solid var(--border);
}

.cred-header-row {
    background: rgba(255, 255, 255, 0.02);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.cred-row span {
    padding: 0.65rem 0.85rem;
    color: var(--text-secondary);
}

.cred-row span:first-child {
    border-right: 1px solid var(--border);
    font-weight: 600;
    color: var(--text-primary);
}

.cred-header-row span {
    color: var(--text-muted);
}

/* =============================================
   Layout Diagram (Grafana UI mockup)
   ============================================= */
.guide-layout-diagram {
    margin-top: 0.5rem;
}

.layout-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.layout-top-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border);
}

.layout-dots {
    display: flex;
    gap: 5px;
}

.layout-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    opacity: 0.6;
}

.layout-dots span:nth-child(1) { background: var(--accent-red); }
.layout-dots span:nth-child(2) { background: var(--accent-orange); }
.layout-dots span:nth-child(3) { background: var(--accent-green); }

.layout-title-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.layout-body {
    display: flex;
    min-height: 280px;
}

.layout-sidebar {
    width: 180px;
    border-right: 1px solid var(--border);
    padding: 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex-shrink: 0;
}

.layout-sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.75rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s;
    cursor: default;
}

.layout-sidebar-item svg {
    flex-shrink: 0;
}

.layout-sidebar-item.active {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-orange);
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.layout-sidebar-item:not(.active):hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
}

.layout-main {
    flex: 1;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.layout-panel-row {
    display: flex;
    gap: 0.75rem;
    flex: 1;
}

.layout-panel {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s;
}

.layout-panel:hover {
    border-color: var(--border-hover);
}

.panel-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.panel-chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.panel-chart svg {
    width: 100%;
    height: 100%;
    min-height: 40px;
}

.panel-gauges {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.mini-gauge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--gauge-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--gauge-color);
}

/* =============================================
   Sensor Guide Cards
   ============================================= */
.sensor-guide-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sensor-guide-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: border-color 0.3s;
}

.sensor-guide-card:hover {
    border-color: var(--border-hover);
}

.sensor-guide-card[data-sensor="temp"] { border-left: 3px solid var(--accent-red); }
.sensor-guide-card[data-sensor="pressure"] { border-left: 3px solid var(--accent-blue); }
.sensor-guide-card[data-sensor="ampere"] { border-left: 3px solid var(--accent-orange); }

.sgc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.sgc-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.sgc-icon.temp-icon { color: var(--accent-red); }
.sgc-icon.pressure-icon { color: var(--accent-blue); }
.sgc-icon.ampere-icon { color: var(--accent-orange); }

.sgc-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.sgc-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.sgc-badge.temp-badge {
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent-red);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.sgc-badge.pressure-badge {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.sgc-badge.ampere-badge {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-orange);
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.sgc-body {
    padding: 1.25rem 1.5rem;
}

.sgc-body > p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Thresholds */
.sgc-thresholds {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.threshold-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.threshold-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 0;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.threshold-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.threshold-item.normal .threshold-dot { background: var(--accent-green); }
.threshold-item.warning .threshold-dot { background: var(--accent-orange); }
.threshold-item.critical .threshold-dot { background: var(--accent-red); }

/* Interpretation */
.sgc-interpret {
    padding: 1rem;
    background: rgba(99, 102, 241, 0.04);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 8px;
}

.sgc-interpret strong {
    font-size: 0.82rem;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.sgc-interpret ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.sgc-interpret ul li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 1rem;
    position: relative;
}

.sgc-interpret ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-purple);
    font-weight: 600;
}

/* =============================================
   Time Range Grid
   ============================================= */
.time-range-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-top: 0.75rem;
}

.time-range-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.65rem 0.85rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: border-color 0.3s;
}

.time-range-item:hover {
    border-color: var(--border-hover);
}

.time-range-item code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-orange);
}

.time-range-item span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Refresh Options */
.refresh-options {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.refresh-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all 0.2s;
}

.refresh-tag.recommended {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.25);
    color: var(--accent-orange);
}

/* =============================================
   Guide List
   ============================================= */
.guide-list {
    margin-top: 0.5rem;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.guide-list li {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 1.25rem;
    position: relative;
}

.guide-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 700;
}

.guide-list.numbered {
    counter-reset: guide-step;
}

.guide-list.numbered li {
    counter-increment: guide-step;
}

.guide-list.numbered li::before {
    content: counter(guide-step) ".";
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
}

/* =============================================
   Alert Flow Diagram
   ============================================= */
.alert-flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 2rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    overflow-x: auto;
}

.alert-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    min-width: 100px;
}

.afs-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.08);
    color: var(--accent-blue);
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.afs-icon.alert-icon {
    background: rgba(239, 68, 68, 0.08);
    color: var(--accent-red);
    border-color: rgba(239, 68, 68, 0.15);
}

.afs-icon.notif-icon {
    background: rgba(16, 185, 129, 0.08);
    color: var(--accent-green);
    border-color: rgba(16, 185, 129, 0.15);
}

.afs-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.5;
}

.alert-flow-arrow {
    width: 60px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-bottom: 2rem;
}

.afl {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-orange));
    border-radius: 2px;
    position: relative;
}

.afl::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid var(--accent-orange);
}

/* =============================================
   Notification Channels
   ============================================= */
.notif-channels {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.notif-channel {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.notif-icon-sm {
    font-size: 1rem;
}

/* =============================================
   Alert Status List
   ============================================= */
.alert-status-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.alert-status-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.85rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.alert-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.alert-dot.ok { background: var(--accent-green); }
.alert-dot.pending { background: var(--accent-orange); }
.alert-dot.alerting { background: var(--accent-red); }
.alert-dot.nodata { background: var(--text-muted); }

/* =============================================
   Tips Grid
   ============================================= */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.tip-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    transition: border-color 0.3s;
}

.tip-card:hover {
    border-color: var(--border-hover);
}

.tip-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tip-icon.problem {
    background: rgba(239, 68, 68, 0.08);
    color: var(--accent-red);
    border: 1px solid rgba(239, 68, 68, 0.12);
}

.tip-icon.tip {
    background: rgba(16, 185, 129, 0.08);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.12);
}

.tip-body h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tip-body ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.tip-body ul li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 1rem;
    position: relative;
}

.tip-body ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-muted);
    font-weight: 700;
}

.tip-body ul li code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    background: rgba(245, 158, 11, 0.08);
    color: var(--accent-orange);
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    border: 1px solid rgba(245, 158, 11, 0.12);
}

.tip-body ul li kbd {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    border: 1px solid var(--border-hover);
    box-shadow: 0 1px 0 var(--surface);
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1024px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .time-range-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .guide-section-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .guide-card {
        flex-direction: column;
        gap: 0.75rem;
    }

    .guide-card.compact {
        flex-direction: row;
    }

    .layout-body {
        flex-direction: column;
    }

    .layout-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border);
        flex-direction: row;
        overflow-x: auto;
        padding: 0.5rem;
    }

    .layout-sidebar-item span {
        display: none;
    }

    .layout-panel-row {
        flex-direction: column;
    }

    .sgc-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .time-range-grid {
        grid-template-columns: 1fr;
    }

    .alert-flow-diagram {
        flex-direction: column;
        gap: 0.5rem;
    }

    .alert-flow-arrow {
        width: 2px;
        height: 30px;
        flex-direction: column;
        padding-bottom: 0;
    }

    .afl {
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, var(--accent-blue), var(--accent-orange));
    }

    .afl::after {
        right: auto;
        bottom: -3px;
        top: auto;
        transform: translateX(-50%);
        left: 50%;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 6px solid var(--accent-orange);
        border-bottom: none;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .guide-card.compact {
        flex-direction: column;
    }

    .notif-channels {
        flex-direction: column;
    }
}

/* =============================================
   Scroll Animations (applied by JS)
   ============================================= */
.guide-scroll-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.guide-scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}
