.gamedrop-home-shell {
    max-width: 1320px;
    margin: 0 auto;
    padding: 10px 20px 48px;
}

.gamedrop-home-intro {
    margin: 0 0 22px;
    padding: 18px 20px;
    border: 1px solid #202b45;
    border-radius: 18px;
    background: #0d111b;
    color: #cbd5e1;
}

.gamedrop-home-intro h1 {
    margin: 0 0 8px;
    color: #f6f8fb;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
}

.gamedrop-home-intro p {
    max-width: none;
    margin: 8px 0 0;
    color: #9ea8bb;
    font-size: 15px;
    line-height: 1.7;
    text-align: justify;
    text-align-last: left;
}

.gamedrop-home-section {
    margin: 0 0 28px;
    padding: 16px 18px;
    border: 1px solid #202b45;
    border-radius: 18px;
    background: #0d111b;
    box-shadow: 0 14px 34px rgba(0,0,0,.28);
}

.gamedrop-home-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 14px;
}

.gamedrop-home-section-head h2 {
    margin: 0;
    color: #f6f8fb;
    font-size: 22px;
    line-height: 1.2;
}

.gamedrop-home-section-head p {
    max-width: 620px;
    margin: 0;
    color: #9ea8bb;
    line-height: 1.55;
    font-size: 14px;
}

.gamedrop-home-stores {
    margin: 0 0 28px;
    padding: 18px 18px 20px;
    border: 1px solid #202b45;
    border-radius: 18px;
    background: #0d111b;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
}

.gamedrop-home-stores__head {
    margin: 0 0 14px;
}

.gamedrop-home-stores__title {
    margin: 0;
    color: #f6f8fb;
    font-size: 22px;
    line-height: 1.2;
}

.gamedrop-home-stores__lead {
    margin: 4px 0 0;
    color: #9ea8bb;
    font-size: 14px;
    line-height: 1.55;
}

.gamedrop-home-stores__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.gamedrop-home-stores__card {
    --store-accent: #3d72ff;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid #1f2740;
    border-left: 3px solid var(--store-accent);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .015) 0%, rgba(0, 0, 0, .15) 100%), #101624;
    color: #f6f8fb;
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.gamedrop-home-stores__card:hover {
    transform: translateY(-2px);
    border-color: var(--store-accent);
    background: linear-gradient(135deg, rgba(255, 255, 255, .025) 0%, rgba(0, 0, 0, .2) 100%), #121828;
    color: #fff;
}

.gamedrop-home-stores__label {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .01em;
}

.gamedrop-home-stores__tagline {
    font-size: 12.5px;
    color: #9ea8bb;
    line-height: 1.4;
}

.gamedrop-home-stores__card:hover .gamedrop-home-stores__tagline {
    color: #c4cde0;
}

.gamedrop-home-stores__arrow {
    position: absolute;
    top: 12px;
    right: 14px;
    color: var(--store-accent);
    font-size: 16px;
    font-weight: 900;
    opacity: .75;
    transition: transform .18s ease, opacity .18s ease;
}

.gamedrop-home-stores__card:hover .gamedrop-home-stores__arrow {
    transform: translateX(3px);
    opacity: 1;
}

@media (max-width: 680px) {
    .gamedrop-home-shell {
        padding: 8px 12px 28px;
    }

    .gamedrop-home-section {
        padding: 14px;
    }

    .gamedrop-home-section-head {
        display: block;
    }

    .gamedrop-home-section-head p {
        margin-top: 6px;
    }

    .gamedrop-home-stores {
        padding: 14px;
    }

    .gamedrop-home-stores__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .gamedrop-home-stores__card {
        padding: 12px 14px;
    }
}
