.store-discount {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.discount-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
}

.discount-browse-btn {
    background: transparent;
    border: 1px solid #4a6a80;
    color: #c6d4df;
    padding: 4px 12px;
    font-size: 11px;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.discount-browse-btn:hover {
    border-color: #c6d4df;
}

.discount-scroll-container {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
}

.discount-carousel-track {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 380px;
    max-width: 900px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
}

.discount-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    gap: 4px;
    transition: transform 0.35s ease;
}

.discount-page--3large {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.discount-page--3large .discount-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
}

.discount-page--3large .discount-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / 3;
}

.discount-page--3large .discount-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.discount-page--3large .discount-card:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
}

.discount-page--grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.discount-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.discount-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease;
}

.discount-card:hover img {
    transform: scale(1.03);
}

.discount-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.discount-card-label {
    font-size: 11px;
    font-weight: bold;
    color: #c6d4df;
    text-transform: uppercase;
}

.discount-card-sublabel {
    font-size: 10px;
    color: #8ba3b5;
}

.discount-card-price-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.discount-badge {
    background: #4c6b22;
    color: #a4d007;
    font-size: 14px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 2px;
}

.discount-prices {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.discount-original {
    font-size: 10px;
    color: #738d9e;
    text-decoration: line-through;
}

.discount-sale {
    font-size: 13px;
    color: #c6d4df;
    font-weight: bold;
}

.discount-arrow {
    color: #c6d4df;
    font-size: 32px;
    cursor: pointer;
    opacity: 0.6;
    user-select: none;
    transition: opacity 0.15s;
    line-height: 1;
    flex-shrink: 0;
}

.discount-arrow:hover {
    opacity: 1;
}

.discount-dots-container {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.discount-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4a6a80;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
}

.discount-dot.active {
    background: #c6d4df;
    transform: scale(1.3);
}

.store-banner {
    width: 100%;
    max-width: 900px;
    height: 190px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
    background-image: url("https://shared.fastly.steamstatic.com/store_item_assets/steam/clusters/takeunder/33bfee397d2953c3e38004bc/bfe20884fbfd5ad12f07846b4b2ee585ee09dd4d/takeunder_desktop_english.jpg?t=1778612622");
    cursor: pointer;
    overflow: hidden;
}

.store-banner:hover {
    box-shadow: 0px 0px 15px rgba(0, 140, 255, 0.8);
}
