/* Guide Page Specific Styles */

/* Active nav link */
.nav-links a.active {
    color: var(--bitcoin-orange);
}

/* Guide Hero */
.guide-hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--near-black) 0%, var(--black) 100%);
    text-align: center;
}

.guide-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--silver);
    margin-bottom: 60px;
}

/* Quick Summary Box */
.quick-summary {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--bitcoin-orange);
    padding: 40px;
    border-radius: 4px;
}

.quick-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--white);
}

.quick-summary ol {
    margin-left: 20px;
    margin-bottom: 30px;
}

.quick-summary li {
    margin-bottom: 15px;
    color: var(--silver);
    line-height: 1.7;
}

.quick-summary strong {
    color: var(--bitcoin-orange);
    font-weight: 600;
}

/* Warning Box */
.warning-box {
    display: flex;
    gap: 15px;
    background: rgba(247, 147, 26, 0.1);
    border: 1px solid rgba(247, 147, 26, 0.3);
    border-left: 4px solid var(--bitcoin-orange);
    padding: 20px;
    border-radius: 4px;
    margin-top: 20px;
}

.warning-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-box p {
    margin: 0;
    color: var(--off-white);
    line-height: 1.6;
}

/* Info Box */
.info-box {
    background: rgba(196, 196, 196, 0.05);
    border: 1px solid rgba(196, 196, 196, 0.2);
    border-left: 4px solid var(--silver);
    padding: 20px;
    border-radius: 4px;
    margin: 25px 0;
}

.info-box p {
    margin: 0;
    color: var(--silver);
    line-height: 1.7;
}

/* Recommendation Box */
.recommendation-box {
    display: flex;
    gap: 15px;
    background: rgba(196, 196, 196, 0.05);
    border: 1px solid rgba(196, 196, 196, 0.2);
    border-left: 4px solid var(--silver);
    padding: 20px;
    border-radius: 4px;
    margin: 25px 0;
}

.rec-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.recommendation-box strong {
    color: var(--white);
    display: block;
    margin-bottom: 8px;
}

.recommendation-box p {
    margin: 0;
    color: var(--silver);
    line-height: 1.6;
}

/* Progress Container */
.progress-container {
    position: sticky;
    top: 80px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.progress-bar {
    max-width: 1000px;
    margin: 0 auto 20px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bitcoin-orange) 0%, rgba(247, 147, 26, 0.6) 100%);
    width: 0%;
    transition: width 0.3s ease;
}

.progress-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.progress-step.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--silver);
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--bitcoin-orange);
    border-color: var(--bitcoin-orange);
    color: var(--black);
}

.step-label {
    font-size: 0.85rem;
    color: var(--silver);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.progress-step.active .step-label {
    color: var(--bitcoin-orange);
}

/* Step Sections */
.step-section {
    padding: 100px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.step-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-section:nth-child(even) {
    background: var(--near-black);
}

.step-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.step-grid.reverse {
    direction: rtl;
}

.step-grid.reverse > * {
    direction: ltr;
}

/* Step Header */
.step-header {
    margin-bottom: 30px;
}

.step-badge {
    display: inline-block;
    background: var(--bitcoin-orange);
    color: var(--black);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.step-header h2 {
    font-size: 3rem;
    color: var(--white);
    margin: 0;
}

/* Step Body */
.step-body {
    color: var(--silver);
    line-height: 1.8;
}

.step-body .lead {
    font-size: 1.2rem;
    color: var(--off-white);
    margin-bottom: 30px;
    line-height: 1.7;
}

.step-body h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin: 30px 0 15px;
}

.step-body ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.step-body li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.step-body strong {
    color: var(--white);
    font-weight: 600;
}

/* Process Steps */
.process-steps {
    margin: 30px 0;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: start;
    margin-bottom: 25px;
}

.process-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(247, 147, 26, 0.2);
    border: 2px solid var(--bitcoin-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bitcoin-orange);
    flex-shrink: 0;
}

.process-step p {
    margin: 0;
    padding-top: 6px;
    line-height: 1.7;
}

/* Resource Links */
.resource-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    text-decoration: none;
    color: var(--silver);
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: rgba(247, 147, 26, 0.1);
    border-color: var(--bitcoin-orange);
    transform: translateX(5px);
}

.link-icon {
    font-size: 1.5rem;
}

.resource-link span:last-child {
    color: var(--off-white);
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-left: 0;
}

.feature-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--bitcoin-orange);
    font-weight: 700;
}

/* Usage Button */
.usage-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    background: transparent;
    border: 2px solid var(--bitcoin-orange);
    color: var(--bitcoin-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 30px;
    transition: all 0.4s ease;
}

.usage-button:hover {
    background: var(--bitcoin-orange);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247, 147, 26, 0.3);
}

.usage-button .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.usage-button:hover .arrow {
    transform: translateX(5px);
}

/* Step Images */
.step-image {
    position: sticky;
    top: 200px;
}

.step-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s ease;
}

.step-section.visible .step-image img {
    animation: fadeInScale 0.8s ease-out 0.3s both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Next Steps Section */
.next-steps {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--near-black) 0%, var(--black) 100%);
    text-align: center;
}

.next-steps h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.next-steps p {
    font-size: 1.2rem;
    color: var(--silver);
    margin-bottom: 40px;
}

.cta-button.large {
    padding: 18px 50px;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .step-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .step-grid.reverse {
        direction: ltr;
    }
    
    .step-image {
        position: relative;
        top: 0;
    }
    
    .step-header h2 {
        font-size: 2.5rem;
    }
    
    .guide-hero h1 {
        font-size: 3rem;
    }
    
    .progress-steps {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .guide-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .quick-summary {
        padding: 30px 20px;
    }
    
    .step-section {
        padding: 60px 0;
    }
    
    .step-header h2 {
        font-size: 2rem;
    }
    
    .progress-steps {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .progress-step {
        flex: 1 1 30%;
        min-width: 80px;
    }
    
    .step-label {
        font-size: 0.7rem;
    }
    
    .next-steps h2 {
        font-size: 2rem;
    }
}
