.arcadeScreenFrame {
    position: relative;
    background: linear-gradient(160deg, #2c2417 0%, #1a150d 100%);
    border: 1px solid #0a0805;
    border-radius: 6px;
    padding: 14px;
    width: 100%;
    max-width: 748px;
    margin: 16px auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), inset 0 0 0 3px #4a3a20;
}

.arcadeScreenFrame::before,
.arcadeScreenFrame::after {
    content: "";
    position: absolute;
    top: 6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 178, 92, 0.8) 0%, transparent 70%);
    pointer-events: none;
}

.arcadeScreenFrame::before {
    left: 6px;
}

.arcadeScreenFrame::after {
    right: 6px;
}

.arcadeScreenInner {
    position: relative;
    background: #000;
    height: 480px;
    overflow: hidden;
    border: 1px solid #0a0805;
}

.arcadeScreenFrame iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: relative;
    z-index: 1;
}

.arcadeCloseBtn {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 3;
    background: rgba(13, 13, 20, 0.75);
    border: 1px solid var(--colorBorder);
    color: var(--colorText);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: url("../cursor/Link.cur"), pointer;
    font-size: 0.85rem;
}

.arcadeCloseBtn:hover {
    color: var(--colorAccentGold);
}

.arcadeShelf {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 16px;
}

.arcadeCart {
    display: block;
    width: 120px;
    background: linear-gradient(160deg, #2c2417 0%, #1a150d 100%);
    border: 1px solid #0a0805;
    border-top: 3px solid #d9b25c;
    border-radius: 4px;
    padding: 10px 8px;
    text-align: center;
    text-decoration: none;
    cursor: url("../cursor/Link.cur"), pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.arcadeCart:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.arcadeCart img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin-bottom: 6px;
}

.arcadeCartName {
    display: block;
    font-size: 0.82rem;
    color: var(--colorText);
}

.arcadeCartControls {
    display: block;
    font-size: 0.65rem;
    opacity: 0.6;
    margin-top: 2px;
}