@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    /* Colors */
    --ps-blue: #0072ce;
    --ps-blue-hover: #005ea8;
    --ps-light-blue: #00a2ff;
    --ps-black: #000000;
    --ps-dark-bg: #121212;
    --ps-card-bg: #1f1f1f;
    --ps-border-color: #2e2e2e;
    --ps-white: #ffffff;
    --ps-grey-light: #f5f5f7;
    --ps-grey-mid: #727272;
    --ps-grey-dark: #2d2d2d;
    --sony-black: #0a0a0a;
    --ps-orange: #fa4e07;
    --ps-orange-hover: #e04400;
    
    /* GTA VI Accents */
    --gta-pink: #f24bb4;
    --gta-orange: #ff7b25;
    --gta-gradient: linear-gradient(135deg, var(--gta-pink), var(--gta-orange));
    --gta-gradient-hover: linear-gradient(135deg, #ff5cc5, #ff9248);

    /* Fonts */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 64px;
    
    /* Typography Sizes */
    --text-xs: 12px;
    --text-sm: 14px;
    --text-md: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-xxl: 24px;
    --text-title: 36px;
    --text-hero: 48px;

    /* Shadows & Border Radii */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-circle: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-primary);
    background-color: var(--ps-dark-bg);
    color: var(--ps-white);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--ps-black);
}
::-webkit-scrollbar-thumb {
    background: var(--ps-grey-dark);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--ps-grey-mid);
}

/* ==========================================
   NAVBAR & HEADER SECTION
   ========================================== */

/* Sony Bar */
.sony-bar {
    background-color: var(--sony-black);
    height: 36px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 24px;
    border-bottom: 1px solid #1a1a1a;
    z-index: 1001;
}

.sony-logo {
    height: 18px;
    fill: var(--ps-white);
    opacity: 0.9;
    transition: var(--transition-fast);
}
.sony-logo:hover {
    opacity: 1;
}

/* PlayStation main navbar */
.ps-navbar {
    background-color: var(--ps-white);
    color: var(--ps-black);
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    position: relative;
    z-index: 1000;
}

.ps-nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ps-logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}
.ps-logo-svg {
    color: var(--ps-blue);
    fill: currentColor;
    transition: color var(--transition-fast);
}
.ps-logo-svg:hover {
    color: var(--ps-blue-hover);
}
.ps-logo-link img.ps-logo {
    height: 34px;
    width: auto;
    /* Force to black first, then translate to PlayStation Blue (#0072ce) */
    filter: brightness(0) saturate(100%) invert(35%) sepia(85%) saturate(2250%) hue-rotate(198deg) brightness(98%) contrast(102%);
}

.ps-nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
}

.ps-nav-item {
    position: relative;
}

.ps-nav-link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: #1f1f1f;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.ps-nav-link::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    transform: rotate(45deg);
    margin-bottom: 4px;
    transition: transform var(--transition-fast);
}
.ps-nav-link:hover {
    color: var(--ps-blue);
}
.ps-nav-link:hover::after {
    transform: rotate(225deg);
    border-color: var(--ps-blue);
}

.ps-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Cart Icon */
.ps-cart-icon {
    position: relative;
    cursor: pointer;
    color: #1f1f1f;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-circle);
    transition: background var(--transition-fast);
}
.ps-cart-icon:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--ps-blue);
}
.ps-cart-icon svg {
    width: 22px;
    height: 22px;
}
.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--ps-blue);
    color: var(--ps-white);
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 50px;
    border: 2px solid var(--ps-white);
}
.cart-badge.bounce {
    animation: badgeBounce 0.3s ease;
}

/* Notifications Bell */
.notification-icon {
    position: relative;
    cursor: pointer;
    color: #1f1f1f;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-circle);
}
.notification-icon:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--ps-blue);
}
.notification-icon svg {
    width: 22px;
    height: 22px;
}
.notification-icon .badge {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 8px;
    height: 8px;
    background-color: #ff4a4a;
    border-radius: var(--radius-circle);
    border: 1px solid var(--ps-white);
}

.ps-login-btn {
    background-color: var(--ps-blue);
    color: var(--ps-white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: var(--text-sm);
    font-weight: 700;
    transition: background-color var(--transition-fast);
}
.ps-login-btn:hover {
    background-color: var(--ps-blue-hover);
}

/* User profile avatar dropdown */
.user-profile-container {
    position: relative;
}

.user-avatar-btn {
    background-color: #e0e0e0;
    color: #555;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    overflow: hidden;
    border: 2px solid transparent;
}
.user-avatar-btn:hover {
    border-color: var(--ps-blue);
    color: var(--ps-blue);
}
.user-avatar-btn svg {
    width: 22px;
    height: 22px;
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: var(--ps-white);
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    width: 220px;
    display: none;
    flex-direction: column;
    z-index: 1002;
    animation: fadeInUp var(--transition-fast) ease;
}
.profile-dropdown.show {
    display: flex;
}

.dropdown-header {
    padding: 16px;
    border-bottom: 1px solid #eee;
}
.dropdown-header .user-id {
    font-weight: 700;
    font-size: 15px;
    color: var(--ps-black);
}
.dropdown-header .user-status {
    font-size: 11px;
    color: #4caf50;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}
.dropdown-header .user-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #4caf50;
    border-radius: var(--radius-circle);
}

.dropdown-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
}
.dropdown-item {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    text-align: left;
    width: 100%;
}
.dropdown-item:hover {
    background-color: #f5f5f7;
    color: var(--ps-blue);
}
.dropdown-item.logout {
    border-top: 1px solid #eee;
    color: #ff4a4a;
}
.dropdown-item.logout:hover {
    background-color: #fff0f0;
    color: #ff4a4a;
}

.ps-search-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.7;
}
.ps-search-icon:hover {
    opacity: 1;
    color: var(--ps-blue);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
}

/* Sub-Navbar (Game specific) */
.game-subnav-container {
    height: 60px;
    background-color: rgba(18, 18, 18, 0.95);
    border-bottom: 1px solid var(--ps-border-color);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.game-subnav-container.scrolled {
    background-color: var(--ps-black);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.game-subnav {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.game-subnav-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.game-subnav-title span {
    font-size: 10px;
    background: var(--ps-border-color);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--ps-grey-mid);
}

.game-subnav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.game-subnav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.game-subnav-link {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ps-grey-mid);
    padding: 20px 0;
    border-bottom: 2px solid transparent;
}
.game-subnav-link:hover,
.game-subnav-link.active {
    color: var(--ps-white);
    border-bottom-color: var(--ps-white);
}

.subnav-buy-btn {
    background-color: var(--ps-orange);
    color: var(--ps-white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
}
.subnav-buy-btn:hover {
    background-color: var(--ps-orange-hover);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: var(--ps-black);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(0deg, var(--ps-black) 0%, rgba(0,0,0,0.2) 80%, rgba(0,0,0,0) 100%);
}
.hero-background::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--ps-black) 0%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 40px;
    align-items: center;
}

.hero-content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.hero-logo-img {
    display: none; /* Hide the broken image logo */
}

.hero-game-title {
    font-size: var(--text-hero);
    font-family: var(--font-heading);
    font-weight: 900;
    margin-bottom: 12px;
    display: block; /* Show text instead of image */
    color: var(--ps-white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease;
}

/* Floating Card / Buy Wishlist Card */
.hero-card {
    background: rgba(31, 31, 31, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 32px;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInRight 1s ease;
}

.hero-card-publisher {
    font-size: var(--text-sm);
    color: var(--ps-white);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-xxl);
    font-weight: 800;
    line-height: 1.2;
}

.hero-card-platform-badge {
    display: inline-flex;
    align-items: center;
    background: none;
    padding: 0;
    width: fit-content;
    gap: 6px;
}
.hero-card-platform-badge span.label {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}
.hero-card-platform-badge span.platform {
    font-size: 11px;
    font-weight: 700;
    color: var(--ps-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 2px 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.05);
}

.hero-card-status {
    font-size: var(--text-md);
    font-weight: 500;
    color: var(--ps-white);
    margin-top: 4px;
}

.hero-card-price {
    font-size: var(--text-title);
    font-family: var(--font-heading);
    font-weight: 800;
    margin: 10px 0;
}

.hero-card-btn-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-primary-gta {
    background: var(--ps-orange);
    color: var(--ps-white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-primary-gta:hover {
    background: var(--ps-orange-hover);
    transform: translateY(-2px);
    box-shadow: none;
}
.btn-primary-gta:active {
    transform: translateY(0);
}

.btn-secondary-wishlist {
    border: 2px solid var(--ps-white);
    color: var(--ps-white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.btn-secondary-wishlist:hover {
    background-color: var(--ps-white);
    color: var(--ps-black);
}
.btn-secondary-wishlist svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.hero-card-release-info {
    font-size: var(--text-xs);
    color: var(--ps-grey-mid);
    line-height: 1.4;
    text-align: center;
}

/* ==========================================
   MEDIA SECTION (VIDEO + CAROUSEL)
   ========================================== */
.media-section {
    padding: 80px 24px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-title);
    font-weight: 800;
    margin-bottom: 8px;
}
.section-subtitle {
    font-size: var(--text-md);
    color: var(--ps-grey-mid);
}

/* Large video container */
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--ps-border-color);
    background-color: var(--ps-black);
}

.video-placeholder {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 5;
}
.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background var(--transition-normal);
}
.video-placeholder:hover .video-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.play-button {
    width: 76px;
    height: 76px;
    background: var(--ps-white);
    border-radius: var(--radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transform: scale(1);
    transition: transform var(--transition-fast), background var(--transition-fast);
}
.video-placeholder:hover .play-button {
    transform: scale(1.08);
    background: #f5f5f7;
}

.play-button svg {
    width: 28px;
    height: 28px;
    fill: #000000;
    margin-left: 4px;
}

.ps-video-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: #0072ce;
    width: 36px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.yt-video-link {
    position: absolute;
    bottom: 16px;
    right: 16px;
    opacity: 0.85;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}
.yt-video-link:hover {
    opacity: 1;
    transform: scale(1.08);
}
.yt-video-link svg {
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.video-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Image carousel */
.carousel-container {
    position: relative;
    width: 100%;
}

.carousel-track-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--ps-grey-dark) transparent;
}
.carousel-track-container::-webkit-scrollbar {
    height: 6px;
}
.carousel-track-container::-webkit-scrollbar-thumb {
    background: var(--ps-grey-dark);
    border-radius: 10px;
}

.carousel-item {
    flex: 0 0 calc(20% - 13px);
    flex-shrink: 0; /* Critical fix: Prevents items from compressing or overlapping side-by-side */
    aspect-ratio: 16/9;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
    position: relative;
}
.carousel-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.carousel-item.active {
    border-color: var(--ps-blue);
}

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

.carousel-item-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}
.carousel-item-play-overlay svg {
    width: 24px;
    height: 24px;
    fill: var(--ps-white);
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--ps-white);
    z-index: 10;
    box-shadow: var(--shadow-md);
}
.carousel-nav-btn:hover {
    background: var(--ps-white);
    color: var(--ps-black);
}
.carousel-nav-btn.prev {
    left: -22px;
}
.carousel-nav-btn.next {
    right: -22px;
}

/* ==========================================
   OVERVIEW & SYNOPSIS SECTION
   ========================================== */
.overview-section {
    background-color: var(--ps-black);
    padding: 100px 24px;
    border-top: 1px solid var(--ps-border-color);
}

.overview-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 7fr 4fr;
    gap: 80px;
}

.overview-main-text h2 {
    font-family: var(--font-heading);
    font-size: var(--text-xxl);
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--ps-grey-light);
}

.overview-synopsis {
    font-size: 20px;
    line-height: 1.6;
    color: var(--ps-white);
    margin-bottom: 24px;
    font-weight: 300;
}

.overview-description {
    font-size: var(--text-md);
    line-height: 1.8;
    color: var(--ps-grey-mid);
}

.overview-sidebar {
    background: var(--ps-card-bg);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--ps-border-color);
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: fit-content;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    border-bottom: 1px solid var(--ps-border-color);
    padding-bottom: 12px;
}

.sidebar-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sidebar-item .label {
    font-size: var(--text-xs);
    color: var(--ps-grey-mid);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.sidebar-item .value {
    font-size: var(--text-md);
    font-weight: 600;
}

/* ==========================================
   FEATURES GRID SECTION
   ========================================== */
.features-section {
    padding: 100px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background-color: var(--ps-card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--ps-border-color);
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}
.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-card-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.feature-card:hover .feature-card-image img {
    transform: scale(1.05);
}

.feature-card-content {
    padding: 24px;
}

.feature-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card-desc {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--ps-grey-mid);
}

/* ==========================================
   PS5 EXCLUSIVE FEATURES SECTION
   ========================================== */
.ps5-section {
    background: linear-gradient(180deg, var(--ps-black) 0%, #060b14 100%);
    padding: 100px 24px;
    border-top: 1px solid var(--ps-border-color);
    border-bottom: 1px solid var(--ps-border-color);
}

.ps5-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ps5-header {
    text-align: center;
    margin-bottom: 60px;
}
.ps5-header .logo-ps5 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--ps-white);
    margin-bottom: 12px;
}
.ps5-header h2 {
    font-family: var(--font-heading);
    font-size: var(--text-title);
    font-weight: 800;
}

.ps5-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.ps5-feature-item {
    display: flex;
    gap: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 32px;
    border-radius: var(--radius-md);
    transition: background var(--transition-normal);
}
.ps5-feature-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.ps5-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    color: var(--ps-light-blue);
}
.ps5-feature-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
}

.ps5-feature-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ps5-feature-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
}

.ps5-feature-desc {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--ps-grey-mid);
}

/* ==========================================
   SPECIFICATIONS SECTION
   ========================================== */
.specs-section {
    padding: 100px 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.specs-title {
    font-family: var(--font-heading);
    font-size: var(--text-xxl);
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    row-gap: 32px;
    border-top: 1px solid var(--ps-border-color);
    padding-top: 40px;
}

.specs-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 24px;
}

.specs-label {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ps-grey-mid);
    letter-spacing: 0.5px;
}

.specs-value {
    font-size: var(--text-md);
    font-weight: 500;
    line-height: 1.5;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
/* ==========================================
   GLOBAL PLAYSTATION FOOTER (Blue Background)
   ========================================== */
.ps-global-footer {
    background-color: var(--ps-blue);
    color: var(--ps-white);
    padding: 60px 0 0 0;
    font-size: var(--text-xs);
    line-height: 1.6;
    border-top: 4px solid var(--ps-blue-hover);
    position: relative;
    z-index: 10;
}

.footer-blue-content-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* PlayStation Logo Row */
.footer-logo-row {
    margin-bottom: 24px;
    display: flex;
    justify-content: flex-start;
}

.ps-logo-svg-white {
    width: 50px;
    height: 40px;
    fill: var(--ps-white);
}

/* Breadcrumbs */
.footer-breadcrumbs {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-breadcrumbs a:hover {
    color: var(--ps-white);
    text-decoration: underline;
}

.footer-breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.4);
}

.footer-breadcrumbs .active-crumb {
    color: var(--ps-white);
    font-weight: 700;
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col-title {
    font-weight: 700;
    font-size: var(--text-sm);
    color: var(--ps-white);
    margin-bottom: 4px;
    text-transform: capitalize;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--ps-white);
    text-decoration: underline;
}

/* SIE Row (Logo, Copyright, Rating) */
.footer-sie-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 32px;
    margin-bottom: 32px;
    gap: 40px;
}

.sie-brand-content {
    max-width: 75%;
}

.sie-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.sie-logo-svg {
    width: 40px;
    height: 40px;
}

.sie-text {
    font-weight: 700;
    font-size: 15px;
    color: var(--ps-white);
}

.sie-legal-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* ESRB Rating Badge styling */
.footer-rating-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    padding: 0;
    border: none;
    flex-shrink: 0;
}

.esrb-m-box {
    background-color: #ffffff;
    color: #000000;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 26px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #000000;
    border-radius: 4px;
}

.esrb-m-letter {
    line-height: 1;
}

.esrb-privacy-box {
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 4px 8px;
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Bottom selector & links */
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px 0;
    font-size: 12px;
}

.region-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
    color: var(--ps-white);
}

.region-selector svg {
    color: var(--ps-white);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--ps-white);
    text-decoration: underline;
}

/* Sony Black Bar at very bottom */
.footer-black-bar {
    background-color: var(--ps-black);
    width: 100%;
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-black-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.sony-logo-svg-white {
    height: 26px;
    fill: var(--ps-white);
}

/* ==========================================
   SONY Account PSN Login Modal Overlay
   ========================================== */
.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}
.login-modal-overlay.show {
    display: flex;
    opacity: 1;
}

.login-modal-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    width: 420px;
    padding: 40px 32px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    animation: scaleIn 0.3s ease;
}

.login-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    color: var(--ps-grey-mid);
    cursor: pointer;
    transition: var(--transition-fast);
}
.login-close:hover {
    color: var(--ps-white);
}

.login-sony-logo {
    height: 20px;
    margin-bottom: 24px;
}

.login-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--ps-white);
}

.login-subtitle {
    font-size: 13px;
    color: var(--ps-grey-mid);
    margin-bottom: 28px;
    line-height: 1.4;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.input-group label {
    font-size: 11px;
    font-weight: 700;
    color: var(--ps-grey-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-input {
    width: 100%;
    background-color: #0d0d0d;
    border: 1.5px solid #3a3a3a;
    border-radius: 4px;
    color: var(--ps-white);
    padding: 12px 14px;
    font-size: 14px;
    transition: border var(--transition-fast);
}
.login-input:focus {
    outline: none;
    border-color: var(--ps-blue);
}

.login-submit-btn {
    background-color: var(--ps-blue);
    color: var(--ps-white);
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    font-weight: 800;
    font-size: var(--text-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}
.login-submit-btn:hover {
    background-color: var(--ps-blue-hover);
}

.login-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    font-size: 12px;
    color: var(--ps-grey-mid);
}
.login-links .divider {
    color: #333;
}
.login-links a:hover {
    color: var(--ps-white);
    text-decoration: underline;
}

/* ==========================================
   QUICK CHECKOUT OVERLAY (COMPRA)
   ========================================== */
.checkout-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}
.checkout-modal-overlay.show {
    display: flex;
    opacity: 1;
}

.checkout-card {
    background-color: #1a1a1e;
    border: 1px solid #2e2e33;
    border-radius: var(--radius-md);
    padding: 32px 24px;
    width: 500px;
    max-width: 95%;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    position: relative;
    animation: scaleIn 0.3s ease;
}

.checkout-close {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 26px;
    color: var(--ps-grey-mid);
    cursor: pointer;
    transition: color var(--transition-fast);
}
.checkout-close:hover {
    color: var(--ps-white);
}

.checkout-header {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1.5px solid #2c2c32;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.checkout-ps-logo {
    fill: var(--ps-white);
}

.checkout-header-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--ps-white);
    letter-spacing: 0.5px;
}

.checkout-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--ps-white);
}

.checkout-summary {
    background: #111115;
    padding: 16px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    border: 1px solid #2c2c32;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #a1a1a6;
}
.summary-row .item-name {
    max-width: 70%;
}
.summary-row .item-price {
    font-weight: 700;
    color: var(--ps-white);
}
.summary-row.total {
    border-top: 1px solid #2c2c32;
    padding-top: 12px;
    font-weight: 800;
    font-size: 15px;
    color: var(--ps-white);
}
.summary-row.total .total-price {
    color: var(--ps-light-blue);
}

/* Customer billing form */
.checkout-customer-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.checkout-customer-form h3 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ps-grey-mid);
    letter-spacing: 0.5px;
}

.checkout-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.checkout-input-group label {
    font-size: 11px;
    font-weight: 600;
    color: #a1a1a6;
}

.checkout-input-group input {
    background-color: #0b0b0d;
    border: 1.5px solid #2e2e33;
    border-radius: 6px;
    padding: 10px 12px;
    color: var(--ps-white);
    font-size: 13px;
    font-family: var(--font-primary);
    transition: border-color var(--transition-fast);
}

.checkout-input-group input:focus {
    outline: none;
    border-color: var(--ps-blue);
}

.checkout-input-row {
    display: flex;
    gap: 12px;
}

.payment-methods h3 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ps-grey-mid);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.payment-option-wrapper {
    border: 1.5px solid #2e2e33;
    border-radius: 6px;
    overflow: hidden;
    background-color: #121215;
    transition: border-color var(--transition-fast);
}

.payment-option-wrapper:hover {
    border-color: #3e3e46;
}

.payment-option-wrapper.recommended {
    border: 2px solid var(--ps-blue);
}

.payment-option {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
}

.payment-option input {
    margin-right: 12px;
    accent-color: var(--ps-blue);
    cursor: pointer;
}

.payment-option-title {
    color: var(--ps-white);
    flex: 1;
}

.payment-option-badge {
    font-size: 9px;
    background-color: var(--ps-blue);
    color: var(--ps-white);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Instability Error Alert */
.checkout-alert-error {
    background-color: rgba(250, 78, 7, 0.1);
    border: 1.5px solid var(--ps-orange);
    border-radius: 6px;
    padding: 12px;
    display: flex;
    align-items: center;
    color: #ff844b;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 20px;
    animation: fadeInUp var(--transition-fast) ease;
}

.checkout-submit-btn {
    background: var(--ps-orange);
    color: var(--ps-white);
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: none;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}
.checkout-submit-btn:hover {
    background: var(--ps-orange-hover);
    box-shadow: none;
}
.checkout-submit-btn:disabled {
    background: #2e2e33;
    color: var(--ps-grey-mid);
    cursor: not-allowed;
}

/* Loading overlay inside checkout modal */
.checkout-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 30, 0.9);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.checkout-loading span {
    font-size: 14px;
    font-weight: 700;
    color: var(--ps-white);
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--ps-blue);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================
   LIGHTBOX (FULL SCREEN VIEW)
   ========================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.lightbox.show {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
}

.lightbox-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 32px;
    color: var(--ps-white);
    cursor: pointer;
}
.lightbox-close:hover {
    color: var(--gta-pink);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: var(--ps-white);
    font-size: 36px;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}
.lightbox-nav:hover {
    background: var(--ps-white);
    color: var(--ps-black);
}
.lightbox-nav.prev {
    left: -80px;
}
.lightbox-nav.next {
    right: -80px;
}

/* ==========================================
   TOAST NOTIFICATION
   ========================================== */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.toast {
    background: rgba(31, 31, 31, 0.95);
    border-left: 4px solid var(--ps-blue);
    border-radius: var(--radius-sm);
    color: var(--ps-white);
    padding: 16px 24px;
    margin-top: 10px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--text-sm);
    font-weight: 600;
    transform: translateX(120%);
    transition: transform var(--transition-normal);
    backdrop-filter: blur(5px);
}
.toast.show {
    transform: translateX(0);
}
.toast svg {
    width: 20px;
    height: 20px;
    fill: var(--ps-blue);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes badgeBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.4); }
}

/* ==========================================
   RESPONSIVENESS (MEDIA QUERIES)
   ========================================== */

/* Large Tablets & Small Desktops */
@media (max-width: 1200px) {
    .hero-section {
        align-items: flex-end;
        min-height: 80vh;
        padding-top: 80px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        width: 100%;
    }
    .hero-content-left {
        display: none !important;
    }
    .hero-background::before {
        width: 100%;
        background: linear-gradient(0deg, var(--ps-black) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0) 100%);
    }
    .hero-card {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        gap: 10px !important;
        align-items: flex-start !important;
    }
    .hero-card-title {
        font-size: 32px !important;
        font-weight: 800;
        text-align: left;
        order: 1;
    }
    .hero-card-publisher {
        font-size: 14px !important;
        color: var(--ps-white) !important;
        text-align: left;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 700;
        order: 2;
    }
    .hero-card-platform-badge {
        order: 3;
        margin-top: 4px;
    }
    .hero-card-status {
        order: 4;
    }
    .hero-card-price {
        order: 5;
        font-size: 24px !important;
        margin: 4px 0 !important;
        text-align: left;
    }
    .hero-card-btn-container {
        order: 6;
        width: 100%;
        gap: 12px !important;
        margin-top: 8px;
    }
    .btn-primary-gta, .btn-secondary-wishlist {
        width: 100% !important;
        justify-content: center;
    }
    .hero-card-release-info {
        order: 7;
        text-align: left !important;
        font-size: 12px !important;
        color: rgba(255, 255, 255, 0.6);
        margin-top: 4px;
        line-height: 1.5;
    }
    .overview-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .overview-sidebar {
        width: 100%;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Tablets */
@media (max-width: 900px) {
    .sony-bar {
        display: none !important; /* Hides Sony black bar on mobile */
    }
    
    .ps-navbar {
        height: 60px;
        padding: 0 16px;
    }

    .ps-nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Hide cart, notification, desktop search on mobile */
    .ps-navbar .ps-cart-icon,
    .ps-navbar .notification-icon,
    .ps-navbar .desktop-search-btn {
        display: none !important;
    }

    .ps-nav-mobile-left {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .ps-logo-container {
        flex: 0 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .ps-nav-right {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 0;
    }

    .game-subnav-links {
        display: none;
    }

    .ps5-features-grid {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* New Global Footer Mobile Styles */
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 32px;
    }

    .footer-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 16px 0;
        gap: 0;
    }

    .footer-col-title {
        margin-bottom: 0;
        cursor: pointer;
        padding-right: 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 15px;
    }

    .footer-col-title::after {
        content: '+';
        font-size: 18px;
        font-weight: 300;
        transition: transform var(--transition-fast);
    }

    .footer-col.expanded .footer-col-title::after {
        content: '×'; /* cross symbol */
        font-size: 22px;
    }

    .footer-col .footer-links {
        max-height: 0;
        overflow: hidden;
        margin-top: 0;
        gap: 0;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .footer-col.expanded .footer-links {
        max-height: 500px;
        margin-top: 16px;
        gap: 12px;
        opacity: 1;
    }

    .footer-sie-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding-top: 24px;
    }

    .sie-brand-content {
        max-width: 100%;
    }

    .footer-rating-badge {
        align-self: flex-start;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px 0;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 12px;
    }

    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }

    .lightbox-nav.prev {
        left: -50px;
    }

    .lightbox-nav.next {
        right: -50px;
    }
}

/* Mobile Devices */
@media (max-width: 600px) {
    .sony-bar {
        padding: 0 16px;
    }
    .ps-navbar {
        padding: 0 16px;
        height: 60px;
    }
    .game-subnav {
        padding: 0 16px;
    }
    .hero-container {
        padding: 16px 16px 32px 16px;
    }
    .media-section {
        padding: 48px 16px;
    }
    .carousel-item {
        flex: 0 0 calc(50% - 8px);
    }
    .overview-section {
        padding: 60px 16px;
    }
    .features-section {
        padding: 60px 16px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .ps5-section {
        padding: 60px 16px;
    }
    .ps5-feature-item {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    .specs-section {
        padding: 60px 16px;
    }

    .toast-container {
        left: 16px;
        right: 16px;
        bottom: 20px;
    }
    .toast {
        width: 100%;
        box-sizing: border-box;
    }
}

/* ==========================================
   GAME LEGAL & COPYRIGHT SECTION
   ========================================== */
.game-legal-section {
    background-color: var(--ps-black);
    padding: 60px 24px;
    border-top: 1px solid var(--ps-border-color);
}

.game-legal-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.game-metadata-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 320px;
}

.metadata-row {
    display: flex;
    font-size: 13px;
}

.metadata-label {
    color: rgba(255, 255, 255, 0.5);
    width: 120px;
    flex-shrink: 0;
}

.metadata-value {
    color: var(--ps-white);
    font-weight: 500;
}

.game-legal-text {
    width: 100%;
    text-align: center;
}

.game-legal-text p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 auto;
}

/* ==========================================
   REVIEWS & RATINGS SECTION
   ========================================== */
.reviews-section {
    background-color: #111111;
    border-top: 1px solid var(--ps-border-color);
    padding: 60px 0;
}

.reviews-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.reviews-title {
    font-family: var(--font-heading);
    font-size: var(--text-xxl);
    font-weight: 800;
    color: var(--ps-white);
    margin-bottom: 32px;
}

.reviews-filters {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 200px;
}

.filter-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--ps-grey-mid);
    text-transform: capitalize;
}

.filter-select {
    background-color: #1c1c1e;
    color: var(--ps-white);
    border: 1.5px solid #2c2c2e;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
    transition: border-color var(--transition-fast);
}

.filter-select:focus {
    outline: none;
    border-color: var(--ps-blue);
}

.reviews-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 32px;
    border-bottom: 1.5px solid #2c2c2e;
    padding-bottom: 24px;
}

.disclaimer-link {
    color: var(--ps-light-blue);
    text-decoration: underline;
}
.disclaimer-link:hover {
    color: var(--ps-white);
}

.reviews-list {
    display: flex;
    flex-direction: column;
}

.review-card {
    border-bottom: 1.5px solid #2c2c2e;
    padding: 24px 0;
}

.review-card:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    background-color: #2c2c2e;
    color: var(--ps-white);
    font-size: 18px;
    font-weight: 800;
    border-radius: var(--radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

.review-user-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-username {
    font-size: 14px;
    font-weight: 700;
    color: var(--ps-white);
}

.review-stars {
    color: var(--ps-white);
    font-size: 14px;
    letter-spacing: 2px;
}

.review-date {
    font-size: 11px;
    color: var(--ps-grey-mid);
    font-weight: 500;
}

.review-subject {
    font-size: 16px;
    font-weight: 800;
    color: var(--ps-white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.review-body {
    font-size: 14px;
    line-height: 1.6;
    color: #e5e5e7;
    margin-bottom: 20px;
}

.review-actions {
    display: flex;
    gap: 12px;
}

.review-action-btn {
    background-color: #1c1c1e;
    color: var(--ps-white);
    border: 1px solid #2c2c2e;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.review-action-btn:hover {
    background-color: #2c2c2e;
    border-color: #3a3a3c;
}

.review-action-btn svg {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 600px) {
    .reviews-filters {
        flex-direction: column;
        gap: 12px;
    }
    .filter-group {
        flex: 1 1 100%;
    }
    .reviews-section {
        padding: 40px 0;
    }
}

