.guide {
    padding-top: 40px;
}

.guide__hero {
    margin-bottom: 80px;
}

.guide__title {
    font-size: 56px;
    font-weight: bold;
    color: white;
    margin-bottom: 16px;
}

.guide__subtitle {
    font-size: 19.2px;
    font-weight: bold;
    color: #cacaca;
    line-height: 1.4;
}

.guide__step {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 80px;
}

.guide__step-left {
    flex-shrink: 0;
    max-width: 500px;
}

.guide__step-badge {
    display: inline-block;
    background: #323232;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    transform: rotate(-3deg);
    margin-bottom: 20px;
}

.guide__step-title {
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin-bottom: 16px;
}

.guide__step-text {
    font-size: 19.2px;
    font-weight: bold;
    color: #cacaca;
    line-height: 1.4;
}

.guide__step-ip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
    transition: opacity 0.2s;
}

.guide__step-ip:hover {
    opacity: 0.8;
}

.guide__step-ip-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    flex-shrink: 0;
}

.guide__step-ip-text {
    color: #db9410;
    font-weight: bold;
    font-size: 19.2px;
}

.guide__step-ip-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background: #323232;
    color: white;
    font-size: 13px;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 8px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
}

.guide__step-ip.copied .guide__step-ip-tooltip {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.guide__step-right {
    flex-shrink: 0;
    width: 640px;
}

.guide__step-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.guide__step-image img {
    width: 100%;
    height: auto;
    display: block;
}

.guide__step-image-label {
    position: absolute;
    background: #ff8e1c;
    color: black;
    font-size: 14px;
    font-weight: bold;
    padding: 6px 16px;
    border-radius: 5px;
}

.guide__step-image-highlight {
    position: absolute;
    border: 3px solid #ff8e1c;
    border-radius: 5px;
    pointer-events: none;
}

/* ===== Adaptive ===== */

@media (max-width: 1300px) {
    .guide {
        padding-left: 20px;
        padding-right: 20px;
    }
    .guide__step-title {
        font-size: 26px;
    }
    .guide__step-text {
        font-size: 16px;
    }
    .guide__step-right {
        width: 100%;
        flex: 1;
    }
}

@media (max-width: 1100px) {
    .guide__step-right {
        width: 480px;
    }
}

@media (max-width: 960px) {
    .guide__title {
        font-size: 42px;
    }

    .guide__hero {
        margin-bottom: 50px;
    }

    .guide__step {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }

    .guide__step-left {
        max-width: 100%;
    }

    .guide__step-right {
        width: 100%;
    }

    .guide__step-text br {
        display: none;
    }
}

@media (max-width: 768px) {
    .guide__title {
        font-size: 32px;
    }

    .guide__subtitle {
        font-size: 16px;
    }

    .guide__subtitle br {
        display: none;
    }

    .guide__step-title {
        font-size: 26px;
    }

    .guide__step-text {
        font-size: 16px;
    }

    .guide__step-ip-text {
        font-size: 16px;
    }

    .guide__hero {
        margin-bottom: 40px;
    }

    .guide__step {
        margin-bottom: 40px;
    }

    .guide__step-image-label {
        font-size: 11px;
        padding: 4px 10px;
    }

    .guide__step-image-highlight {
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    .guide__title {
        font-size: 26px;
    }

    .guide__subtitle {
        font-size: 14px;
    }

    .guide__step-title {
        font-size: 22px;
    }

    .guide__step-text {
        font-size: 14px;
    }

    .guide__step-ip-text {
        font-size: 14px;
    }

    .guide__step-badge {
        font-size: 14px;
        padding: 5px 12px;
    }

    .guide__step-image-label {
        font-size: 9px;
        padding: 3px 8px;
    }
}
