.game-detail-wrapper {
    max-width: 1107px;
    margin: 0 auto;
    background: #0d0d0d;
    border-radius: 8px;
    overflow: hidden;
}

.primary-content-section {
    padding: 25px;
    background: #0d0d0d;
}

.top-grid-section {
    display: grid;
    grid-template-columns: 325px 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.game-box-art {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #333;
}

.buying-options-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.status-toggle-group {
    display: flex;
    gap: 10px;
}

.status-toggle-btn {
    padding: 8px 20px;
    border: 2px solid #333;
    background: transparent;
    color: #888;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.status-toggle-btn.is-active {
    background: transparent;
    color: #4CAF50;
    border-color: #4CAF50;
}

.product-main-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    line-height: 1.3;
}

.publisher-details {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.publisher-name {
    color: #888;
    font-size: 14px;
}

.review-stars {
    color: #ffd700;
    font-size: 16px;
}

.cost-display-box {
    background: transparent;
    padding: 0;
    margin-bottom: 15px;
}

.current-price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.old-price-tag {
    font-size: 16px;
    color: #e9e9e9;
    text-decoration: line-through;
}

.savings-label {
    background: #4CAF50;
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
}

.box-section1 {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.version-picker-box {
    flex: 1;
}

.version-select-dropdown {
    width: 100%;
    padding: 10px 30px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Native select fallback for browsers/states where nice-select is not active */
.version-select-dropdown option {
    background: #1a1a1a;
    color: #fff;
}

/* Dark theme overrides for nice-select variation picker */
.version-picker-box .nice-select {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    border-radius: 6px;
    width: 100%;
}
.version-picker-box .nice-select:hover {
    border-color: #555;
}
.version-picker-box .nice-select::after {
    border-bottom-color: #ccc;
    border-right-color: #ccc;
}
.version-picker-box .nice-select .current {
    color: #fff !important;
}
.version-picker-box .nice-select .list {
    background-color: #1a1a1a;
    border: 1px solid #444;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    width: 100%;
}
.version-picker-box .nice-select .option {
    color: #ccc !important;
    background-color: #1a1a1a !important;
}
.version-picker-box .nice-select .option:hover,
.version-picker-box .nice-select .option.focus,
.version-picker-box .nice-select .option.selected.focus {
    background-color: #dc0000 !important;
    color: #fff !important;
}
.version-picker-box .nice-select .option.selected {
    color: #fff !important;
    font-weight: 600;
}

.ghs {

    display: flex;
    gap: 10px;
}

.delivery-section {
    margin-bottom: 15px;
}

.delivery-label {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.delivery-checker {
    display: flex;
    gap: 8px;
}

.postal-code-field {
    flex: 1;
    padding: 10px 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    border-radius: 6px;
    font-size: 14px;
}

.verify-postal-btn {
    padding: 10px 20px;
    background: #4CAF50;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.primary-actions-row {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.add-to-basket-btn,
.instant-sell-btn {
    flex: 1;
    padding: 12px;
    border: none;
    color: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-basket-btn {
    background: #4CAF50;
}

.add-to-basket-btn:hover {
    background: #45a049;
}

.instant-sell-btn {
    background: #2196F3;
}

.instant-sell-btn:hover {
    background: #0b7dda;
}

.service-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 15px;
}

.service-highlight-item {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #2a2a2a;
}

.service-icon-display {
    font-size: 24px;
    margin-bottom: 8px;
    color: #4CAF50;
}

.service-highlight-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 12px;
    color: #ffffff;
}

.service-highlight-text {
    font-size: 11px;
    color: #888;
    line-height: 1.3;
}

.quality-promise-block {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

.promise-block-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #4CAF50;
}

.promise-list-entry {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    color: #b0b0b0;
    font-size: 13px;
}

.tick-symbol {
    color: #4CAF50;
    font-weight: 900;
}

.full-width-content {
    max-width: 100%;
}

.game-description-area,
.extra-demo-content {
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
    margin-bottom: 15px;
    overflow: hidden;
}

.description-header-text,
.demo-section-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 15px 20px;
    color: #ffffff;
    background: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #2a2a2a;
}

.description-header-text:hover,
.demo-section-title:hover {
    background: #222;
}

.description-header-text::after,
.demo-section-title::after {
    content: '▼';
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #888;
}

.description-header-text.active::after,
.demo-section-title.active::after {
    transform: rotate(180deg);
}

.game-accordion01 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.game-accordion01.active {
    max-height: 2000px;
    padding: 20px;
}

.ps5-features-intro {
    color: #4CAF50;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
}

.description-point {
    padding: 6px 0;
    padding-left: 18px;
    color: #b0b0b0;
    line-height: 1.5;
    position: relative;
    font-size: 14px;
}

.description-point:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4CAF50;
}

.demo-text-block {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 14px;
}

.secondary-info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 25px;
    background: #0d0d0d;
}

.technical-info-panel,
.media-preview-panel {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

.info-panel-heading,
.media-panel-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    padding-bottom: 10px;
    border-bottom: 2px solid #333;
}

.info-data-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #222;
    gap: 15px;
}

.info-data-row:last-child {
    border-bottom: none;
}

.info-field-name {
    color: #888;
    font-weight: 500;
    font-size: 13px;
}

.info-field-content {
    color: #e0e0e0;
    font-weight: 500;
    text-align: right;
    font-size: 13px;
}

.video-embed-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-play-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.3) 0%, rgba(33, 150, 243, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-icon:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.5) 0%, rgba(33, 150, 243, 0.5) 100%);
}

@media (max-width: 1024px) {
    .top-grid-section {
        grid-template-columns: 250px 1fr;
    }

    .secondary-info-section {
        grid-template-columns: 1fr;
    }

    .service-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-grid-section {
        grid-template-columns: 1fr;
    }

    .game-box-art {
        max-width: 300px;
        margin: 0;
        display: block;
    }

    .service-highlights-grid {
        grid-template-columns: 1fr;
    }

    .primary-actions-row {
        flex-direction: column;
    }

    .box-section1 {
        flex-direction: column;
    }
}

@media (max-width: 480px) {

    .sticky-cover-wrapper {
        text-align: center;
        display: flex;
        justify-content: center;

    }

    .ghs {
        display: block;
    }

    .primary-content-section,
    .secondary-info-section {
        padding: 15px;
    }

    .info-data-row {
        flex-direction: column;
        gap: 5px;
    }

    .info-field-content {
        text-align: left;
    }
}