@media (max-width: 699px) {
  .v2-player.is-logged-in-player .v2-player-mark,
  .v2-player.is-logged-in-player .v2-player-head-actions {
    display: none !important;
  }

  .v2-player.is-logged-in-player .v2-player-header {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: calc(58px + env(safe-area-inset-top, 0px));
    padding: calc(8px + env(safe-area-inset-top, 0px)) 14px 6px;
  }

  .v2-player.is-logged-in-player .v2-player-header > [data-close-player] {
    grid-column: 1;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    justify-self: start;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(4, 6, 8, .42);
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .v2-player.is-logged-in-player .v2-player-header > [data-close-player] svg {
    width: 26px;
    height: 26px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .v2-player.is-logged-in-player .v2-li-player-head-actions {
    grid-column: 3;
    display: flex !important;
    align-items: center;
    justify-self: end;
    gap: 8px;
    min-width: max-content;
  }

  .v2-player.is-logged-in-player .v2-li-player-head-actions > button,
  .v2-player.is-logged-in-player .v2-li-player-profile {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 40px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    background: rgba(4,6,8,.46);
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .v2-player.is-logged-in-player .v2-li-player-head-actions svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .v2-player.is-logged-in-player .v2-li-player-profile {
    border-color: rgba(255,159,10,.72);
    color: #ffad2f;
    font-size: 14px;
    font-weight: 900;
  }

  .v2-player.is-logged-in-player .v2-li-player-profile img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .v2-mobile-vec-stage {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    background: #050607;
    pointer-events: none;
  }

  .v2-player.is-mobile-vec-active .v2-player-shade {
    z-index: -1;
  }

  .v2-mobile-vec-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
      linear-gradient(to bottom, rgba(2,3,4,.44) 0%, rgba(2,3,4,.04) 24%, rgba(2,3,4,.05) 56%, rgba(2,3,4,.72) 82%, #050607 100%),
      linear-gradient(90deg, rgba(2,3,4,.14), transparent 52%, rgba(2,3,4,.10));
  }

  .v2-mobile-vec-stage img,
  .v2-mobile-vec-stage video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity .42s ease, transform 5s ease;
  }

  .v2-mobile-vec-stage img.is-active,
  .v2-mobile-vec-stage video.is-active {
    opacity: 1;
    transform: scale(1);
  }

  .v2-mobile-vec-status {
    position: absolute;
    top: calc(68px + env(safe-area-inset-top, 0px));
    left: 15px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    background: rgba(5,6,7,.46);
    color: rgba(255,255,255,.78);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
  }

  .v2-mobile-vec-status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #68e895;
    box-shadow: 0 0 0 3px rgba(104,232,149,.14);
  }

  .v2-vec-clip-commerce {
    position: absolute;
    left: 12px;
    right: 76px;
    bottom: calc(184px + env(safe-area-inset-bottom, 0px));
    z-index: 28;
    padding: 10px;
    border: 1px solid rgba(255,159,10,.42);
    border-radius: 17px;
    background: rgba(11,13,16,.92);
    box-shadow: 0 18px 50px rgba(0,0,0,.52);
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: translateY(16px) scale(.98);
    pointer-events: none;
    transition: opacity .24s ease, transform .24s ease;
  }

  .v2-vec-clip-commerce.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .v2-vec-clip-commerce-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
  }

  .v2-vec-clip-commerce-head strong {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    color: #ffad2f;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  .v2-vec-clip-commerce-head svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
  }

  .v2-vec-clip-commerce-head button {
    flex: 0 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,.62);
    font-size: 9px;
    font-weight: 800;
  }

  .v2-vec-clip-commerce-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .v2-vec-clip-commerce-row::-webkit-scrollbar {
    display: none;
  }

  .v2-vec-clip-product {
    flex: 0 0 88px;
    min-width: 0;
    color: white;
    text-decoration: none;
    scroll-snap-align: start;
  }

  .v2-vec-clip-product > span {
    width: 88px;
    height: 64px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 10px;
    background: #ececec;
  }

  .v2-vec-clip-product img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }

  .v2-vec-clip-product b {
    display: block;
    margin-top: 5px;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.12;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v2-vec-clip-product small {
    display: block;
    margin-top: 2px;
    color: #ffad2f;
    font-size: 9px;
    font-weight: 900;
  }

  .v2-player.vec-clip-commerce-active .v2-li-merch-tray {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}
