:root {
    --primary-color: #2174ff;
    --primary-dark: #0086b3;
    --accent: #00c8ff;
    --bg-dark: #0e0f15;
    --bg-darker: #0a0a0a;
    --bg-card: #1c1f22;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --border-color: #2d2d2d;
    --hover-color: #334155;
    --tag-bg: #333339;
    --tag-active: var(--primary-color);
    --platform-bg: #333339;
    --btn-primary: var(--primary-color);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1)
}

@media (min-width:1400px) {
    .container,.container-lg,.container-md,.container-sm,.container-xl {
        max-width: 1440px
    }
}

.action-btn {
    background-color: #1a1a1a;
    border: 1px solid #262626;
    color: #888;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 4px 12px;
    border-radius: 2px;
    transition: all .2s
}

.action-btn:hover {
    background-color: #262626;
    color: #e0e0e0
}

.action-btn.liked {
    color: #4caf50;
    border-color: #4caf50
}

.agreement-checkbox {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #999
}

.agreement-checkbox input[type=checkbox] {
    margin-right: 8px;
    width: 14px;
    height: 14px
}

.agreement-checkbox label {
    cursor: pointer;
    margin: 0
}

.app-version-info {
    font-size: 12px;
    color: #777
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 1rem
}

.breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none
}

.breadcrumb-item.active {
    color: var(--text-primary)
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--text-secondary)
}

.buy-btn {
    flex: 1;
    background: linear-gradient(90deg,#0070f3,#3291ff);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.buy-btn:hover {
    background: linear-gradient(90deg,#0070f3,#3291ff);
    opacity: .9
}

.carousel-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color .3s ease
}

.carousel-btn i {
    color: #ddd
}

.carousel-btn:hover i {
    color: #fff
}

.carousel-content {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.carousel-inner,.carousel-item,.game-carousel {
    height: 100%
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .5s ease
}

.carousel-item.active {
    opacity: 1;
    z-index: 1
}

.cart-btn,.gift-btn {
    background-color: #333;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .3s ease
}

.cart-btn:hover,.gift-btn:hover {
    background-color: #444
}

.comment-actions {
    display: flex;
    gap: 1rem
}

.comment-avatar {
    flex-shrink: 0;
    margin-bottom: 1rem
}

.comment-avatar img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #fff
}

.comment-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px
}

.comment-content {
    flex-grow: 1;
    border-left: 1px solid var(--border-color);
    padding-left: 2rem
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px
}

.comment-item {
    background-color: #121212;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
    display: flex;
    flex-direction: column
}

.comment-main {
    display: flex;
    gap: 2rem
}

.comment-meta {
    font-size: 12px;
    color: #777;
    margin-bottom: 1rem
}

.comment-rating {
    display: flex;
    align-items: center;
    gap: 2px
}

.comment-rating i {
    color: #fa0;
    font-size: 12px
}

.comment-rating i.far {
    color: #333
}

.comment-rating-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px
}

.comment-text {
    font-size: 14px;
    line-height: 1.6;
    color: #d0d0d0;
    margin-bottom: 1rem;
    word-break: break-word
}

.comment-text br {
    margin-bottom: 6px
}

.comments-count {
    font-size: 14px;
    color: #b0b0b0
}

.comments-header {
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #262626
}

.comments-section {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px
}

.comments-section-full {
    background-color: var(--bg-card);
    border-top: 1px solid #262626;
    padding: 30px 0;
    margin-top: 40px;
    border-radius: 12px
}

.content-fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top,var(--bg-card) 0,transparent 100%);
    pointer-events: none;
    opacity: 1;
    transition: opacity .3s ease
}

.content-tabs-container.expanded .content-fade-overlay {
    opacity: 0
}

.content-info-container {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem
}

.content-main-wrapper {
    flex: 1
}

.content-main-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-primary)
}

.content-panel {
    display: none
}

.content-panel.active {
    display: block
}

.content-sidebar-wrapper {
    width: 340px
}

.content-tab {
    cursor: pointer;
    color: var(--text-secondary);
    transition: all .3s;
    border-bottom: 2px solid transparent;
    font-size: 18px;
    height: 60px;
    margin-right: 20px;
    display: flex;
    align-items: center
}

.content-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color)
}

.content-tab:hover {
    color: var(--primary-color)
}

.content-tabs {
    display: flex;
    margin-bottom: 1.5rem
}

.content-tabs-container {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    max-height: 720px;
    overflow: hidden;
    position: relative;
    transition: max-height .3s ease
}

.content-tabs-container.expanded {
    max-height: none
}

.control-btn {
    background: rgba(255,255,255,.1);
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    margin-right: 10px
}

.control-btn:hover {
    background: rgba(255,255,255,.2);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,.3)
}

.control-btn:active {
    transform: scale(.95)
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1a1a1a;
    border: 1px solid #262626;
    border-radius: 0;
    box-shadow: none;
    z-index: 1000;
    min-width: 140px;
    margin-top: 2px
}

.dropdown-content.show {
    display: block
}

.dropdown-item {
    padding: 6px 12px;
    font-size: 12px;
    color: #e0e0e0;
    transition: all .3s
}

.dropdown-item:hover {
    background-color: #262626
}

.dropdown-item.active {
    background-color: var(--primary-color);
    color: #fff
}

.dropdown-toggle {
    background-color: #1a1a1a;
    border: 1px solid #262626;
    padding: 5px 12px;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 100px;
    font-size: 12px;
    color: #e0e0e0;
    transition: all .3s
}

.dropdown-toggle:hover {
    background-color: #262626;
    border-color: #333
}

.expand-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: .9rem;
    display: flex;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: background-color .3s
}

.expand-btn:hover {
    background-color: var(--primary-dark)
}

.expand-btn i {
    margin-left: 5px;
    transition: transform .3s
}

.content-tabs-container.expanded .expand-btn i {
    transform: rotate(180deg)
}

.filter-active {
    color: var(--primary-color);
    font-weight: 500
}

.filter-dropdown {
    cursor: pointer;
    background-color: transparent
}

.filter-item {
    position: relative
}

.filter-options {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #262626
}

.filter-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    align-items: center
}

.filter-row:last-child {
    margin-bottom: 0
}

.fullscreen-btn {
    margin-left: auto
}

.game-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px
}

.game-carousel {
    width: 100%;
    height: 508px;
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0
}

.game-detail {
    padding: 2rem 0
}

.game-header {
    margin-bottom: 2rem
}

.game-info-section {
    background-color: transparent;
    border-radius: 8px;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column
}

.game-info-wrapper {
    width: 340px;
    background-color: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    height: 100%;
    overflow-y: hidden
}

.game-main-title {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 600;
    margin: 0
}

.game-meta {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: 0 0
}

.meta-item {
    width: 100%;
    height: 40px;
    display: flex;
    overflow: hidden;
    flex-direction: row
}

.meta-label {
    flex: 00 0 100px;
    font-size: 12px;
    color: #fff;
    background-color: #23272f;
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    font-weight: 500;
    justify-content: center;
    margin-right: 2px;
    border-radius: 4px
}

.meta-value {
    flex: 1;
    font-size: 12px;
    color: #fff;
    background-color: #23272f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px
}

.game-platforms {
    background-color: transparent;
    border-radius: 8px;
    padding: 0;
    margin-bottom: 1rem
}

.game-platforms h4 {
    color: #fff;
    font-size: 12px;
    margin-bottom: 12px;
    margin-top: 0
}

.game-preview {
    margin-bottom: 2rem;
    position: relative
}

.game-preview-info-container {
    display: flex;
    height: 640px;
    background-color: transparent;
    overflow: hidden;
    gap: 20px;
    margin-bottom: 2rem
}

.game-preview-wrapper {
    flex: 1;
    position: relative;
    height: 100%
}

.game-price {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 12px
}

.game-rating {
    text-align: right;
    border-left: 1px solid #4a4a4a;
    padding-left: 16px
}

.game-status {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: .2rem .8rem;
    border-radius: 20px;
    font-size: .9rem;
    margin-left: 1rem
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 8px
}

.game-title-main {
    font-size: 2rem;
    margin-bottom: .5rem
}

.game-title-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px
}

.load-more-btn {
    background-color: #1a1a1a;
    color: #e0e0e0;
    border: 1px solid #262626;
    padding: 8px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 12px;
    transition: all .3s
}

.load-more-btn:hover {
    background-color: #262626;
    border-color: #333
}

.load-more-btn.disabled {
    background-color: #1a1a1a;
    color: #666;
    border-color: #262626;
    cursor: not-allowed
}

.load-more-container {
    text-align: center;
    margin-top: 20px
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
    z-index: 5
}

@keyframes spin {
    to {
        transform: translate(-50%,-50%) rotate(360deg)
    }
}

.more-tags {
    cursor: pointer;
    background-color: #444
}

.news-date {
    color: var(--text-secondary);
    font-size: .9rem;
    min-width: 100px
}

.news-item {
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color)
}

.news-item:last-child {
    border-bottom: none
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.news-summary {
    color: var(--text-secondary);
    font-size: .9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.news-title {
    font-size: 1rem;
    margin-bottom: .3rem;
    transition: color .3s
}

.news-title:hover {
    color: var(--primary-color);
    cursor: pointer
}

.news-content {
    flex-grow: 1
}

.platform-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 70px;
    height: 70px;
    background-color: #121314;
    border-radius: 4px;
    padding: 8px;
    text-align: center
}

.platform-item i {
    font-size: 24px;
    margin-bottom: 8px;
    color: #fff
}

.platform-item span {
    font-size: 12px;
    color: #fff
}

.platforms-list {
    display: flex;
    gap: 12px
}

.play-btn {
    background-color: var(--primary-color);
    border: none;
    color: #fff;
    padding: .8rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color .3s;
    display: flex;
    align-items: center
}

.play-btn i {
    margin-right: .5rem
}

.play-btn:hover {
    background-color: var(--primary-dark)
}

.price-current {
    font-size: 24px;
    font-weight: 700;
    color: #e63946
}

.price-discount {
    background-color: #e63946;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600
}

.price-original {
    font-size: 14px;
    color: #999;
    text-decoration: line-through
}

.price-time {
    font-size: 12px;
    color: #999
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg,var(--primary-color),var(--accent));
    border-radius: 3px;
    width: 0%;
    position: relative;
    transition: width .1s linear
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity .2s
}

.progress-container:hover .progress-bar::after {
    opacity: 1
}

.progress-container {
    flex-grow: 1;
    height: 4px;
    background: rgba(255,255,255,.2);
    border-radius: 3px;
    margin: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.progress-btn {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.progress-left,
.progress-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.promotion-banner {
    background-color: #f0c040;
    color: #333;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px
}

.promotion-banner i {
    margin-right: 8px
}

.rating-count {
    font-size: 12px;
    color: #888;
    margin-bottom: 2px
}

.rating-count-small {
    font-size: 12px;
    color: #666
}

.rating-label {
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 3px;
    font-weight: 500;
    text-align: center
}

.rating-overall {
    text-align: center;
    flex: 1;
    max-width: 200px
}

.rating-score {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px
}

.rating-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px 30px;
    background-color: #121314;
    border-radius: 12px;
    border: 1px solid #262626
}

.rating-trend {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding-left: 20px;
    border-left: 1px solid #262626
}

.recommend-badge {
    padding: 1px 5px;
    border-radius: 1px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px
}

.recommend-badge.recommend {
    background-color: #4caf50;
    color: #fff
}

.recommend-badge.not-recommend {
    background-color: #f44336;
    color: #fff
}

.recommendation-item {
    margin-bottom: 20px
}

.recommendation-title {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700
}

.sidebar-section .section-title {
    margin-bottom: 1.5rem;
    font-size: 18px;
    height: 60px;
    margin-right: 20px;
    display: flex;
    align-items: center
}

.sidebar-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600
}

.spec-label {
    color: var(--text-secondary);
    display: block;
    margin-bottom: .3rem
}

.spec-value {
    font-size: .8rem
}

.system-column {
    flex: 1;
    min-width: 300px
}

.system-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color)
}

.system-recommendations {
    background-color: var(--bg-card);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px
}

.system-requirements {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem
}

.system-spec {
    margin-bottom: .8rem
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: #121314;
    border-radius: 2px;
    font-size: 12px;
    color: #fff
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover
}

.thumbnail-item {
    width: 150px;
    height: 80px;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    transition: transform .2s ease;
    flex-shrink: 0;
    margin: 10px 8px;
    border: 2px solid transparent;
}

.thumbnail-item.active {
    border-color: var(--primary-color);
    transform: scale(1.05)
}

.thumbnail-item.active::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--primary-color);
    z-index: 1000;
    pointer-events: none
}

.thumbnail-item:hover {
    opacity: .8
}

.thumbnail-nav {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1rem
}

.thumbnail-nav-container {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    width: 100%;
    margin: 0 auto
}

.thumbnail-nav-main {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    z-index: 3;
    background-color: rgb(40 42 46);
    padding: 1rem 0;
    border-radius: 0 0 12px 12px;
    overflow: visible
}

.thumbnail-wrapper {
    display: -webkit-inline-box;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    white-space: nowrap
}

.time-display {
    color: var(--text-secondary);
    font-size: 14px;
    font-variant-numeric: tabular-nums;
    margin: 0 10px;
    white-space: nowrap
}

.tips-box {
    background-color: var(--bg-card);
    border-radius: 8px;
    padding: 20px
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.tips-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: .95rem;
    line-height: 1.4
}

.tips-list li:before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0
}

.tips-list li:last-child {
    margin-bottom: 0
}

.tips-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 500
}

.trend-chart {
    background-color: #1a1a1a;
    padding: 5px;
    border-radius: 0;
    margin-top: 5px;
    border: 1px solid #262626
}

.user-name {
    font-weight: 500;
    color: #d0d0d0;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
    margin-top: 2px
}

.video-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: rgba(255,0,0,.8);
    color: #fff;
    font-size: 8px;
    padding: 1px 4px;
    border-radius: 2px
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top,rgba(0,0,0,.85),transparent);
    padding: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 10;
    flex-direction: column;
}

.video-wrapper:hover .video-controls {
    opacity: 1;
    transform: translateY(0)
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2
}

.video-play-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(0,161,214,.8);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    transition: background-color .3s ease
}

.video-play-icon:hover {
    background-color: #00a1d6;
    transform: scale(1.1)
}

.video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background-color: rgba(0,0,0,.4);
}

.video-thumbnail-play {
    color: #fff;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5))
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%
}

.volume-btn {
    margin-right: 5px
}

.volume-container {
    position: relative;
    display: flex;
    align-items: center
}

.volume-level {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    font-size: 12px;
    white-space: nowrap
}

.volume-panel {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,.85);
    padding: 15px 8px;
    border-radius: 20px;
    display: none;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 10px 30px rgba(0,0,0,.5)
}

.volume-container:hover .volume-panel {
    display: block;
    animation: fadeInUp .3s ease
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0)
    }
}

.volume-slider {
    height: 80px;
    width: 6px;
    -webkit-appearance: slider-vertical;
    writing-mode: bt-lr;
    direction: ltr;
    cursor: pointer;
    background: rgba(255,255,255,.2);
    border-radius: 3px;
    outline: 0
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,.3)
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,.3)
}

.wishlist-btn {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: .8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center
}

.wishlist-btn i {
    margin-right: .5rem
}

.wishlist-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color)
}

@media (max-width:768px) {
    .video-controls {
        padding: 15px 10px 8px
    }

    .control-btn {
        width: 36px;
        height: 36px;
        font-size: 14px
    }

    .time-display {
        font-size: 12px
    }

    .game-meta {
        gap: 1rem
    }

    .game-actions {
        flex-direction: column
    }

    .play-btn,.wishlist-btn {
        width: 100%;
        justify-content: center
    }

    .game-preview-info-container {
        flex-direction: column;
        height: auto
    }

    .game-preview-wrapper {
        height: 300px
    }

    .game-info-wrapper {
        width: 100%;
        height: auto;
        margin-top: 20px
    }

    .content-info-container {
        flex-direction: column
    }

    .content-sidebar-wrapper {
        width: 100%;
        margin-top: 20px
    }
}
