/* Guide Sections */
    .guide-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 10rem 2rem 4rem;
    }

    .guide-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .guide-header h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .guide-header h1 .highlight {
        color: #17ef97;
    }

    .guide-header p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto;
        color: #e0e0e0;
    }

    .guide-intro {
        background: linear-gradient(145deg, rgba(23, 239, 151, 0.1), rgba(23, 239, 151, 0.05));
        border-radius: 15px;
        padding: 2rem;
        margin-bottom: 3rem;
        border: 1px solid rgba(23, 239, 151, 0.2);
    }

    .guide-intro h2 {
        color: #17ef97;
        margin-bottom: 1rem;
    }

    .guide-intro p {
        margin-bottom: 1rem;
    }

    .guide-notice {
        background-color: rgba(255, 255, 255, 0.05);
        border-left: 4px solid #17ef97;
        padding: 1rem;
        margin: 1.5rem 0;
        border-radius: 0 8px 8px 0;
    }

    .guide-notice strong {
        color: #17ef97;
    }

    .steps-container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .step-card {
        background: rgba(255, 255, 255, 0.03);
        border-radius: 15px;
        padding: 2rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
    }

    .step-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.05);
    }

    .step-number {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: rgba(23, 239, 151, 0.2);
        color: #17ef97;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-weight: bold;
        font-size: 1.2rem;
    }

    .step-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        padding-right: 50px;
    }

    .step-card p {
        margin-bottom: 1rem;
        color: #e0e0e0;
    }

    .step-card .tip {
        background-color: rgba(23, 239, 151, 0.1);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
        border-left: 3px solid #17ef97;
    }

    .step-card .tip strong {
        color: #17ef97;
    }

    .step-card ul {
        margin: 1rem 0;
        padding-left: 1.5rem;
    }

    .step-card ul li {
        margin-bottom: 0.5rem;
    }

    .step-image-container {
        border-radius: 10px;
        overflow: hidden;
        margin: 1.5rem 0;
        border: 1px solid rgba(23, 239, 151, 0.3);
        background-color: rgba(0, 0, 0, 0.5);
    }

    .step-image-container img {
        width: 100%;
        height: auto;
        display: block;
    }

    .step-image-caption {
        text-align: center;
        font-size: 0.9rem;
        color: #999;
        padding: 0.5rem;
    }

    .crypto-address {
        background: #111;
        padding: 1rem;
        border-radius: 8px;
        font-family: monospace;
        font-size: 1rem;
        color: #17ef97;
        margin: 1rem 0;
        border: 1px dashed rgba(23, 239, 151, 0.3);
        position: relative;
        word-break: break-all;
    }

    .copy-btn {
        position: absolute;
        right: 10px;
        top: 10px;
        background: rgba(23, 239, 151, 0.2);
        color: #17ef97;
        border: none;
        border-radius: 4px;
        padding: 0.3rem 0.7rem;
        cursor: pointer;
        font-size: 0.8rem;
        transition: background 0.3s ease;
    }

    .copy-btn:hover {
        background: rgba(23, 239, 151, 0.4);
    }

    .important-note {
        background: linear-gradient(145deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.05));
        padding: 1.5rem;
        border-radius: 10px;
        margin: 2rem 0;
        border: 1px solid rgba(255, 107, 107, 0.3);
    }

    .important-note h3 {
        color: #ff6b6b;
        margin-bottom: 1rem;
    }

    .important-note ul {
        margin: 1rem 0;
        padding-left: 1.5rem;
    }

    .important-note li {
        margin-bottom: 0.5rem;
    }

    .summary-section {
        background: linear-gradient(145deg, rgba(23, 239, 151, 0.1), rgba(0, 0, 0, 0));
        border-radius: 15px;
        padding: 2rem;
        margin: 3rem 0;
        text-align: center;
    }

    .summary-section h2 {
        color: #17ef97;
        margin-bottom: 1.5rem;
    }

    .cta-btn {
        display: inline-block;
        padding: 0.9rem 2.2rem;
        background: #17ef97;
        color: #000;
        text-decoration: none;
        border-radius: 25px;
        margin-top: 1.5rem;
        transition: transform 0.3s ease;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .cta-btn:hover {
        transform: scale(1.05);
    }

    .faq-section {
        margin: 3rem 0;
    }

    .faq-item {
        margin-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1.5rem;
    }

    .faq-question {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 0.8rem;
        color: #17ef97;
    }

    .faq-answer {
        color: #e0e0e0;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .guide-header h1 {
            font-size: 2.2rem;
        }

        .step-card {
            padding: 1.5rem;
        }
    }