.elementor-2916 .elementor-element.elementor-element-ac01221{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-ee38392 *//* Base Container */
.bitcoin-guide-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

.bitcoin-guide-container {
    font-family: 'Times New Roman', Times, serif;
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: visible;
}

/* Header Section */
.guide-header {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.guide-header h1 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.guide-header p {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

/* Progress Bar */
.progress-container {
    background: white;
    padding: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.progress-label h3 {
    color: #333;
    font-size: 20px;
    letter-spacing: 0.3px;
}

.progress-percentage {
    color: #FF8C00;
    font-size: 22px;
    font-weight: 700;
}

.progress-bar-bg {
    background: #e0e0e0;
    height: 30px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    background: linear-gradient(90deg, #FF8C00 0%, #FFA500 100%);
    height: 100%;
    width: 0%;
    transition: width 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

/* Reset Progress Button - Top */
.reset-progress-container {
    text-align: center;
    margin: 0;
    padding: 20px 30px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffe8a1 100%);
    border-bottom: 2px solid #ffc107;
}

.reset-progress-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 90, 111, 0.3);
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 0.5px;
}

.reset-progress-btn:hover {
    background: linear-gradient(135deg, #ee5a6f 0%, #ff6b6b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 90, 111, 0.4);
}

.reset-progress-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(238, 90, 111, 0.3);
}

.reset-help-text {
    margin-top: 10px;
    font-size: 15px;
    color: #856404;
    font-style: italic;
    letter-spacing: 0.3px;
}

/* Reset Progress Button - Bottom */
.reset-progress-container-bottom {
    text-align: center;
    margin: 30px 0 0 0;
    padding: 25px 30px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffe8a1 100%);
    border-top: 2px dashed #ffc107;
    border-radius: 0 0 20px 20px;
}

.reset-notice {
    margin-bottom: 15px;
    font-size: 17px;
    color: #856404;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

/* Steps Container */
.steps-container {
    padding: 30px;
}

/* Individual Step Card */
.step-card {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: visible;
    transition: all 0.3s ease;
}

.step-card.active {
    border-color: #FF8C00;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.2);
}

.step-card.completed {
    border-color: #4CAF50;
    background: #f9fff9;
}

.step-card.locked {
    opacity: 0.6;
    pointer-events: none;
}

/* Step Header */
.step-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s ease;
}

.step-card.active .step-header {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
}

.step-card.completed .step-header {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
}

.step-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #FF8C00;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.step-card.completed .step-number {
    background: #4CAF50;
    color: white;
}

.step-card.locked .step-number {
    background: #ccc;
    color: #666;
}

.step-title h3 {
    font-size: 22px;
    margin-bottom: 5px;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.step-title p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

.step-icon {
    font-size: 28px;
    transition: transform 0.3s ease;
}

.step-card.expanded .step-icon {
    transform: rotate(180deg);
}

/* Step Content - FIXED FOR SCROLLING */
.step-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.step-card.expanded .step-content {
    max-height: none;
    overflow: visible;
}

.step-content-inner {
    padding: 30px 25px;
    overflow: visible;
}

/* Platform Switcher */
.platform-switcher {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.platform-btn {
    background: #f0f0f0;
    border: 2px solid #e0e0e0;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    letter-spacing: 0.3px;
}

.platform-btn.active {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
    border-color: #FF8C00;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Platform Content */
.platform-content {
    transition: opacity 0.3s ease;
}

/* Checklist */
.checklist {
    background: #fff8e1;
    border-left: 4px solid #FF8C00;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.checklist h4 {
    color: #FF8C00;
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.checkbox-item:hover {
    background: rgba(255, 140, 0, 0.1);
}

.checkbox-item input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-top: 2px;
    accent-color: #FF8C00;
    flex-shrink: 0;
}

.checkbox-item label {
    cursor: pointer;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    letter-spacing: 0.3px;
}

.checkbox-item.checked label {
    text-decoration: line-through;
    color: #999;
}

/* Inline Links - FIXED FOR VISIBILITY */
.bitcoin-guide-container .inline-link,
.bitcoin-guide-container a.inline-link {
    color: #FF8C00 !important;
    text-decoration: underline !important;
    font-weight: 700 !important;
    transition: all 0.3s ease;
}

.bitcoin-guide-container .inline-link:hover,
.bitcoin-guide-container a.inline-link:hover {
    color: #FFA500 !important;
    text-decoration: underline !important;
}

.checkbox-item label a,
.checkbox-item label .inline-link {
    color: #FF8C00 !important;
    text-decoration: underline !important;
    font-weight: 700 !important;
}

.checkbox-item label a:hover,
.checkbox-item label .inline-link:hover {
    color: #FFA500 !important;
}

.instruction-step a,
.instruction-step .inline-link {
    color: #FF8C00 !important;
    text-decoration: underline !important;
    font-weight: 700 !important;
}

.instruction-step a:hover,
.instruction-step .inline-link:hover {
    color: #FFA500 !important;
}

/* Instructions */
.instructions {
    background: #e3f2fd;
    border-left: 4px solid #2196F3;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.instructions h4 {
    color: #2196F3;
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.instruction-step {
    margin-bottom: 15px;
    padding-left: 10px;
}

.instruction-step strong {
    color: #1976D2;
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

.instruction-step p {
    color: #555;
    line-height: 1.8;
    font-size: 17px;
    letter-spacing: 0.3px;
}

.instruction-step ul {
    margin-left: 20px;
    margin-top: 8px;
}

.instruction-step li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 5px;
    font-size: 17px;
    letter-spacing: 0.3px;
}

/* Merchant Notice */
.merchant-notice {
    background: #fff3cd;
    border-left: 4px solid #FFA500;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.merchant-notice h4 {
    color: #FFA500;
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.merchant-notice p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
    font-size: 17px;
    letter-spacing: 0.3px;
}

.merchant-notice strong {
    color: #333;
}

/* Merchant QR Code Section - Blue/Orange Theme */
.merchant-qr-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 3px solid #2196F3;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

.merchant-qr-section h4 {
    color: #1565C0;
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.qr-instruction-block {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.qr-step {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px dashed #e0e0e0;
}

.qr-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.qr-step strong {
    color: #1565C0;
    font-size: 19px;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

.qr-step p {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.qr-step ul {
    margin-left: 25px;
    margin-top: 10px;
    padding-left: 0;
}

.qr-step li {
    color: #666;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    list-style-type: disc;
}

.qr-step li strong {
    display: inline;
    font-size: 17px;
    color: #FF8C00;
    line-height: inherit;
    margin-bottom: 0;
}

.qr-step li em {
    font-style: italic;
    color: #555;
}

.qr-download-link {
    display: inline-block;
    background: linear-gradient(135deg, #2196F3 0%, #42A5F5 100%);
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 3px 10px rgba(33, 150, 243, 0.3);
    white-space: nowrap;
}

.qr-download-link:hover {
    background: linear-gradient(135deg, #42A5F5 0%, #2196F3 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

.qr-callout {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left: 4px solid #FF8C00;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.qr-callout p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.qr-callout p:last-child {
    margin-bottom: 0;
}

.qr-callout strong {
    color: #FF8C00;
    font-weight: 700;
    display: inline;
}

.qr-checklist {
    background: #e3f2fd;
    border-left: 4px solid #2196F3;
    padding: 15px 20px;
    border-radius: 8px;
}

.qr-checklist h5 {
    color: #1565C0;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.qr-checklist .checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.qr-checklist .checkbox-item:hover {
    background: rgba(33, 150, 243, 0.1);
}

.qr-checklist .checkbox-item label {
    color: #333;
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: 0.3px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Tips */
.tip {
    background: #f3e5f5;
    border-left: 4px solid #9C27B0;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.tip h4 {
    color: #9C27B0;
    font-size: 18px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.tip p {
    color: #555;
    line-height: 1.8;
    font-size: 17px;
    letter-spacing: 0.3px;
}

/* Complete Button */
.complete-step-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    letter-spacing: 0.5px;
}

.complete-step-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.complete-step-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    margin-top: 30px;
    display: none;
}

.final-cta.show {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.final-cta h2 {
    font-size: 30px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

.final-cta-btn {
    background: white;
    color: #FF8C00;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}

.final-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Lock Icon */
.lock-icon {
    font-size: 24px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .guide-header {
        padding: 30px 20px;
    }

    .guide-header h1 {
        font-size: 26px;
        line-height: 1.4;
    }

    .guide-header p {
        font-size: 16px;
        line-height: 1.7;
    }

    .progress-container {
        padding: 20px;
    }

    .progress-label h3 {
        font-size: 18px;
    }

    .progress-percentage {
        font-size: 20px;
    }

    .reset-progress-container,
    .reset-progress-container-bottom {
        padding: 15px 20px;
    }

    .reset-progress-btn {
        padding: 12px 25px;
        font-size: 16px;
        width: 100%;
    }

    .reset-help-text,
    .reset-notice {
        font-size: 14px;
    }

    .steps-container {
        padding: 15px;
    }

    .step-header {
        padding: 15px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .step-title h3 {
        font-size: 18px;
        line-height: 1.4;
    }

    .step-title p {
        font-size: 14px;
        line-height: 1.6;
    }

    .step-content-inner {
        padding: 20px 15px;
    }

    .checklist, .instructions, .tip, .merchant-notice {
        padding: 15px;
    }

    .checklist h4, .instructions h4 {
        font-size: 18px;
    }

    .checkbox-item label {
        font-size: 16px;
        line-height: 1.7;
    }

    .instruction-step strong {
        font-size: 16px;
    }

    .instruction-step p,
    .instruction-step li,
    .tip p,
    .merchant-notice p {
        font-size: 15px;
        line-height: 1.7;
    }

    .complete-step-btn {
        padding: 12px 20px;
        font-size: 18px;
    }

    .platform-btn {
        font-size: 16px;
        padding: 12px 30px;
    }

    .merchant-qr-section {
        padding: 20px 15px;
    }

    .merchant-qr-section h4 {
        font-size: 20px;
        line-height: 1.5;
    }

    .qr-instruction-block {
        padding: 15px;
    }

    .qr-step strong {
        font-size: 17px;
        line-height: 1.6;
    }

    .qr-step p,
    .qr-step li {
        font-size: 16px;
        line-height: 1.8;
    }

    .qr-step ul {
        margin-left: 20px;
    }

    .qr-download-link {
        padding: 8px 15px;
        font-size: 15px;
        display: block;
        text-align: center;
        margin-top: 10px;
    }

    .qr-callout p {
        font-size: 15px;
    }

    .qr-checklist .checkbox-item label {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .guide-header h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    .guide-header p {
        font-size: 15px;
    }

    .step-header-left {
        gap: 10px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .step-title h3 {
        font-size: 16px;
    }

    .step-title p {
        font-size: 13px;
    }

    .progress-percentage {
        font-size: 18px;
    }

    .reset-progress-btn {
        padding: 10px 20px;
        font-size: 15px;
    }

    .reset-help-text,
    .reset-notice {
        font-size: 13px;
    }

    .checkbox-item label {
        font-size: 15px;
    }

    .instruction-step p,
    .instruction-step li {
        font-size: 14px;
    }

    .platform-switcher {
        flex-direction: column;
    }
    
    .platform-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 15px;
    }

    .complete-step-btn {
        font-size: 17px;
    }

    .final-cta h2 {
        font-size: 24px;
    }

    .final-cta p {
        font-size: 16px;
    }

    .final-cta-btn {
        font-size: 18px;
        padding: 12px 30px;
    }

    .merchant-qr-section {
        padding: 15px 12px;
    }

    .merchant-qr-section h4 {
        font-size: 18px;
        line-height: 1.4;
    }

    .qr-step strong {
        font-size: 16px;
    }

    .qr-step p,
    .qr-step li {
        font-size: 15px;
        line-height: 1.7;
    }

    .qr-step ul {
        margin-left: 15px;
    }

    .qr-download-link {
        padding: 8px 12px;
        font-size: 14px;
        width: 100%;
    }

    .qr-callout p {
        font-size: 14px;
    }

    .qr-checklist .checkbox-item label {
        font-size: 15px;
    }
}/* End custom CSS */