﻿/* باکس وسط صفحه - ورود به اپلیکیشن */
.gshsgk-box {
    background: #000;
    border-radius: 40px;
    box-shadow: 0 25px 50px -8px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    padding: 20px 40px;
    max-width: 700px;
    width: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
    border: 1px solid rgb(255, 193, 0);
}

/* ردیف اصلی: عکس (آیکن) و متن کنار هم */
.gshsgk-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px 25px;
}

/* بخش آیکن (عکس) - شبیه اپلیکیشن دانلود */
.gshsgk-icon {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f8faff, #eef2f9);
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 12px 24px -8px rgba(0, 20, 40, 0.2);
    transition: transform 0.2s ease;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

    .gshsgk-icon:hover {
        transform: scale(1.03);
    }

    .gshsgk-icon img {
        display: block;
        width: 130px;
        height: 130px;
        object-fit: contain;
        border-radius: 24px;
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        transition: all 0.2s;
        aspect-ratio: 1/1;
    }

/* بخش متن */
.gshsgk-text {
    flex: 2 1 220px;
    text-align: right;
    color: #1a2639;
    min-width: 180px;
}

    .gshsgk-text h2 {
        font-size: 2rem;
        margin: 0 0 12px 0;
        font-weight: 800;
        color: #0b1a2b;
        letter-spacing: -0.5px;
        line-height: 1.2;
    }

        .gshsgk-text h2 small {
            font-size: 1rem;
            font-weight: 400;
            color: #4a5b73;
            display: block;
            margin-top: 4px;
            letter-spacing: 0;
        }

    .gshsgk-text p {
        font-size: 1.1rem;
        line-height: 1.9;
        margin: 12px 0;
        color: #1f3145;
    }

    .gshsgk-text .gshsgk-highlight {
        background: #eef3fc;
        padding: 14px 18px;
        border-radius: 18px;
        border-right: 5px solid #3a6b9b;
        margin: 18px 0 8px 0;
        font-weight: 500;
        color: #0f2a47;
        box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    }

        .gshsgk-text .gshsgk-highlight strong {
            color: #1f5a9e;
            display: inline-block;
        }

    .gshsgk-text .gshsgk-sub {
        font-size: 0.95rem;
        color: #4d627c;
        margin-top: 18px;
        padding-top: 16px;
        border-top: 2px dashed #d0dae8;
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

        .gshsgk-text .gshsgk-sub span {
            background: #eef2f8;
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #1d3d62;
        }

/* ===== ریسپانسیو ===== */
@media (max-width: 600px) {
    .gshsgk-box {
        padding: 28px 22px;
        border-radius: 32px;
    }

    .gshsgk-row {
        gap: 20px;
    }

    .gshsgk-icon img {
        width: 100px;
        height: 100px;
    }

    .gshsgk-text h2 {
        font-size: 1.6rem;
    }

    .gshsgk-text p {
        font-size: 1rem;
    }

    .gshsgk-text .gshsgk-highlight {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
}

@media (max-width: 420px) {
    .gshsgk-box {
        padding: 20px 16px;
    }

    .gshsgk-icon img {
        width: 80px;
        height: 80px;
    }

    .gshsgk-text h2 {
        font-size: 1.3rem;
    }

    .gshsgk-text p {
        font-size: 0.95rem;
    }

    .gshsgk-text .gshsgk-highlight {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
}
