/* CONTAINER */
.iosh-container {
    margin: 12px 0;
}

/* BUTTON */
.iosh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #007aff;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.iosh-plus {
    font-size: 20px;
}

/* OVERLAY */
.iosh-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* CARD */
.iosh-card {
    background: #fff;
    border-radius: 22px;
    padding: 20px;
    width: 90%;
    max-width: 330px;
    text-align: center;
    animation: iosh-pop 0.25s ease-out;
}

@keyframes iosh-pop {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* HEADER */
.iosh-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 18px;
}

.iosh-app-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #007aff, #4da3ff);
}

/* STEPS */
.iosh-steps {
    margin-bottom: 20px;
}

.iosh-step {
    margin-bottom: 16px;
}

.iosh-step p {
    font-size: 15px;
    margin-top: 8px;
}

/* SHARE ICON */
.iosh-share-wrapper {
    position: relative;
    display: inline-block;
}

.iosh-share-icon {
    width: 36px;
    height: 36px;
    stroke: #007aff;
    stroke-width: 1.8;
    fill: none;
}

/* ANIMATED ARROW */
.iosh-arrow-animated {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    color: #007aff;
    animation: iosh-arrow-move 1.2s infinite;
}

@keyframes iosh-arrow-move {
    0%   { transform: translate(-50%, 0); opacity: 0.3; }
    50%  { transform: translate(-50%, -6px); opacity: 1; }
    100% { transform: translate(-50%, 0); opacity: 0.3; }
}

/* PLUS ICON */
.iosh-icon.plus {
    font-size: 28px;
    color: #007aff;
}

/* CLOSE */
.iosh-close {
    background: #007aff;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

