/* ========================================
   PlayStation Section Styles
   ======================================== */
.playstation-section {
    background: linear-gradient(180deg,
            var(--bg-black) 0%,
            var(--bg-darker) 50%,
            var(--bg-black) 100%);
    position: relative;
    padding: 2rem 0;
}

/* PlayStation Pricing */
.playstation-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2.5rem auto 1rem;
    max-width: 700px;
}

.pricing-box {
    background: rgba(20, 25, 45, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 20px;
    position: relative;
}

.modern-design .pricing-box {
    box-shadow: 6px 6px 0 0 rgba(37, 113, 255, 0.6);
    transition: all 0.3s ease;
}

.modern-design .pricing-box:hover {
    box-shadow: 6px 6px 0 0 rgba(37, 113, 255, 0.9);
    transform: translateY(-3px);
}

.pricing-box h3 {
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    text-align: center;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(37, 113, 255, 0.2);
}

.price-row:last-child {
    border-bottom: none;
}

.time-period {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.console-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
}

.console-features {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(37, 113, 255, 0.2);
}

.feature-item {
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item:before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Gallery Layout */
.playstation-gallery {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Main Image Container */
.main-image-container {
    position: relative;
    width: 100%;
    min-height: 300px;
    max-height: 500px;
    background: rgba(20, 25, 45, 0.95);
    backdrop-filter: blur(10px);
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-design .main-image-container {
    box-shadow: 6px 6px 0 0 rgba(37, 113, 255, 0.7);
    transition: all 0.3s ease;
}

.modern-design .main-image-container:hover {
    box-shadow: 6px 6px 0 0 rgba(37, 113, 255, 0.9);
}

.main-playstation-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Thumbnails Container */
.thumbnails-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.thumbnail-wrapper {
    position: relative;
    width: 100%;
    min-height: 80px;
    max-height: 120px;
    background: rgba(20, 25, 45, 0.95);
    backdrop-filter: blur(10px);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-design .thumbnail-wrapper {
    box-shadow: 5px 5px 0 0 rgba(37, 113, 255, 0.4);
}

.thumbnail-wrapper:hover,
.thumbnail-wrapper.active {
    opacity: 1;
}

.modern-design .thumbnail-wrapper:hover,
.modern-design .thumbnail-wrapper.active {
    box-shadow: 5px 5px 0 0 rgba(37, 113, 255, 0.8);
    transform: translateY(-2px);
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.thumbnail-badge {
    position: absolute;
    bottom: 5px;
    left: 5px;
    padding: 0.25rem 0.5rem;
    font-weight: 700;
    font-size: 0.7rem;
    color: white;
    border-radius: 8px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* PlayStation Badges */
.playstation-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.35rem 0.85rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    border-radius: 8px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ps5-badge {
    background: linear-gradient(135deg, #0070cc, #003087);
    box-shadow: 0 4px 15px rgba(0, 112, 204, 0.5);
}

.ps4-badge {
    background: linear-gradient(135deg, #0066cc, #0044aa);
    box-shadow: 0 4px 15px rgba(0, 68, 170, 0.5);
}

/* Games Description */
.games-description {
    margin-top: 1.5rem;
    background: rgba(20, 25, 45, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 20px;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.modern-design .games-description {
    box-shadow: 6px 6px 0 0 rgba(138, 43, 226, 0.6);
}

.booth-games {
    display: none;
}

.booth-games.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booth-games h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    background: linear-gradient(135deg,
            var(--primary-light),
            var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.games-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.5rem;
}

.games-list li {
    padding: 0.5rem 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    background: rgba(37, 113, 255, 0.1);
    border-left: 3px solid rgba(37, 113, 255, 0.5);
    transition: all 0.3s ease;
}

.games-list li:hover {
    color: var(--primary-color);
    background: rgba(37, 113, 255, 0.15);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .playstation-gallery {
        grid-template-columns: 1fr;
    }

    .thumbnails-container {
        flex-direction: row;
        overflow-x: auto;
    }

    .thumbnail-wrapper {
        min-width: 150px;
        flex: 1;
    }
}

@media (max-width: 768px) {
    .games-list {
        grid-template-columns: 1fr;
    }

    .games-description {
        padding: 1.5rem;
    }
}