/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
    --color-bg-dark: #070913;
    --color-card-bg: rgba(13, 17, 30, 0.75);
    --color-text-white: #f8fafc;
    --color-text-gray: #94a3b8;
    --color-text-dark: #0f172a;
    
    /* MrBeast Brand Cyan & Pink */
    --color-beast-cyan: #00f0ff;
    --color-beast-pink: #ff007f;
    --color-beast-cyan-glow: rgba(0, 240, 255, 0.4);
    --color-beast-pink-glow: rgba(255, 0, 127, 0.4);
    
    /* Rockstar / Deluxe Gold & Orange */
    --color-gta-orange: #ff5f00;
    --color-gold: #ffc800;
    --color-gold-glow: rgba(255, 200, 0, 0.45);
    
    /* GTA VI Pink-Orange-Violet Gradient */
    --color-gta6-pink: #ff007f;
    --color-gta6-orange: #ff5f00;
    --color-gta6-violet: #8b5cf6;
    --gradient-gta6: linear-gradient(135deg, #ff007f 0%, #ff5f00 50%, #8b5cf6 100%);
    --gradient-gta6-text: linear-gradient(90deg, #ff007f 0%, #ff5f00 50%, #8b5cf6 100%);
    
    /* Borders & Transitions */
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --border-glass-hover: 1px solid rgba(255, 255, 255, 0.2);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- RESET & BASIC SETUP --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.hidden {
    display: none !important;
}

html, body {
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

/* Hide scrollbar for preloader */
body.loading {
    overflow: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-beast-cyan);
    box-shadow: 0 0 8px var(--color-beast-cyan);
}

/* --- 1. PRELOADER OVERLAY --- */
.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

.preloader-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.preloader-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05);
}

.preloader-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90%;
    max-width: 500px;
}

.rockstar-logo-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rockstar-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 3;
    animation: rockstarGlowPulse 2.5s infinite ease-in-out;
}

.neon-glow-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 240, 0, 0.25) 0%, rgba(255, 0, 127, 0.15) 50%, rgba(0, 0, 0, 0) 70%);
    z-index: 2;
    animation: glowPulse 2s infinite alternate ease-in-out;
}

.loading-bar-wrapper {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.loading-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-beast-pink) 0%, var(--color-beast-cyan) 50%, var(--color-gold) 100%);
    box-shadow: 0 0 10px var(--color-beast-cyan);
    transition: width 0.1s linear;
}

.loading-percentage {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--color-text-white);
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.loading-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-text-gray);
    animation: textFlash 1.5s infinite;
}

/* Fade preloader away */
.preloader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* --- 2. AMBIENT SITE OVERLAYS --- */
.ambient-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, rgba(255, 0, 127, 0.04) 50%, rgba(0,0,0,0) 70%);
    top: -200px;
    left: -200px;
    z-index: 2;
    pointer-events: none;
    animation: ambientFloat 20s infinite alternate ease-in-out;
}

/* --- 3. MAIN SITE STRUCTURE --- */
.main-wrapper {
    position: relative;
    height: 100vh; /* Locked screen height on desktop */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
    overflow: hidden; /* Prevent internal wrapper scrolling on desktop */
    animation: siteReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.main-wrapper.hidden {
    display: none;
}

/* Background image & gradient overlay */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.bg-main-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* Removed background darkening for maximum vibrancy */
}

/* --- 4. HEADER --- */
.gta-vi-logo-link {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 100;
    display: inline-block;
    transition: var(--transition-smooth);
}

.gta-vi-logo-link:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
}

.gta-vi-logo {
    height: 38px; /* Increased for better visibility */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.site-header {
    width: 100%;
    max-width: 1400px; /* Restored to align perfectly with the sales block width */
    margin: 0 auto;
    padding: 30px 40px 10px 40px; /* Matched top padding to Figma layout */
    display: flex;
    flex-direction: column; /* Stack logo vertically above content */
    align-items: center;
    position: relative;
    height: auto; /* Dynamic height */
    flex-shrink: 0;
    z-index: 20;
}

.header-left {
    flex: 1;
}

.header-center {
    position: relative;
    z-index: 30;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0px;
}

.collab-logo {
    height: 90px; /* Matched to Figma size (small & clean) */
    width: auto;
    max-width: 100%; /* Prevents horizontal overflow and scrollbars */
    object-fit: contain;
    pointer-events: auto; /* Enable mouse hover actions */
    filter: drop-shadow(0 0 35px rgba(0, 240, 255, 0.65));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.collab-logo:hover {
    transform: scale(1.06) rotate(-1deg);
}

.header-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.countdown-container {
    text-align: right;
    font-family: 'Orbitron', sans-serif;
}

.countdown-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-beast-pink);
    text-shadow: 0 0 6px rgba(255, 0, 127, 0.4);
    display: block;
    margin-bottom: 2px;
}

.countdown-timer {
    font-size: 15px;
    font-weight: 900;
    color: var(--color-text-white);
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Sound Toggle Button */
.sound-toggle {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.sound-toggle:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--color-beast-cyan);
    box-shadow: 0 0 12px var(--color-beast-cyan-glow);
    transform: translateY(-1px);
}

.sound-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sound-icon {
    width: 14px;
    height: 14px;
}

.sound-icon.hidden {
    display: none;
}

/* --- 5. MAIN CONTENT - CARDS GRID --- */
.landing-main {
    flex-grow: 1;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    margin-top: 15px; /* Clean gap below the small logo, no overlapping */
    padding: 0 40px 10px 40px; /* Removed top padding, minimized bottom padding */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0; /* Important for flex-grow sizing */
}

.landing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    perspective: 1000px;
    align-items: start; /* Cards shrink to content height, no empty bottom gap */
}

/* Card Styling - Glassmorphism */
.edition-card {
    position: relative;
    background: rgba(0, 0, 0, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    padding: 16px 20px 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
    overflow: hidden;
}

/* Ambient dynamic glowing borders/background aura */
.card-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    transform: translate(-50%, -50%);
    border-radius: 24px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.12;
    transition: opacity 0.5s ease;
}

.cyan-glow {
    background: radial-gradient(circle, var(--color-beast-cyan) 0%, rgba(0,0,0,0) 70%);
}

.gold-glow {
    background: radial-gradient(circle, rgba(255, 200, 0, 0.22) 0%, rgba(255, 122, 0, 0.12) 50%, rgba(0,0,0,0) 70%);
}

/* Hover effects for Cards */
.edition-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

.standard-edition:hover {
    box-shadow: 0 12px 35px rgba(0, 240, 255, 0.12);
}

.standard-edition:hover .card-glow-effect {
    opacity: 0.22;
}

.deluxe-edition:hover {
    box-shadow: 0 12px 35px rgba(255, 200, 0, 0.25);
    border-color: rgba(255, 200, 0, 0.4);
}

.deluxe-edition:hover .card-glow-effect {
    opacity: 0.25;
}

/* Card Header */
.card-header {
    position: relative;
    z-index: 5;
    margin-bottom: 2px; /* Squeezed margin */
}

.badge {
    display: inline-block;
    padding: 4px 10px; /* Slightly more compact */
    border-radius: 50px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px; /* Squeezed */
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.discount-badge {
    background: linear-gradient(135deg, var(--color-beast-cyan) 0%, #0099cc 100%);
    color: var(--color-text-dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: badgePulse 2s infinite alternate;
}

.deluxe-badge {
    background: linear-gradient(135deg, #ffc800 0%, #ff7a00 100%);
    color: var(--color-text-dark);
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: gta6Pulse 2s infinite alternate;
}

.edition-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px; /* Slightly smaller for compactness */
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
    background-clip: text;
    -webkit-background-clip: text;
}

.standard-edition .edition-title {
    background-image: linear-gradient(90deg, var(--color-text-white) 0%, var(--color-beast-cyan) 100%);
    -webkit-text-fill-color: transparent;
}

.deluxe-edition .edition-title {
    background-image: linear-gradient(90deg, #ffc800 0%, #ff7a00 100%);
    -webkit-text-fill-color: transparent;
}

.edition-subtitle {
    font-size: 11px;
    font-weight: 400;
    color: #e2e8f0;
    letter-spacing: 0.5px;
}

/* Image Showcase Slider styles */
.image-showcase {
    position: relative;
    width: 100%;
    height: 280px; /* Concrete height to ensure images scale up large and don't collapse */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0; /* Spacing handled by card flex gap */
    z-index: 4;
}

.slider-showcase {
    overflow: visible; /* Let floating images overflow naturally */
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Slide Transition Rules */
.deluxe-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
    transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.deluxe-image-wrapper.active-slide {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.product-image {
    max-width: 100%; /* Fill the showcase container completely */
    max-height: 100%; /* Fill the showcase container completely */
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Slider Controls HUD styling */
.slider-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.slider-nav-btn {
    background: rgba(13, 17, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--color-text-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
    user-select: none;
}

.slider-nav-btn.prev-slide {
    left: 10px;
}

.slider-nav-btn.next-slide {
    right: 10px;
}

.slider-nav-btn:hover {
    background: #ff7a00;
    border-color: #ffc800;
    color: var(--color-text-dark);
    box-shadow: 0 0 10px rgba(255, 200, 0, 0.5);
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    pointer-events: auto;
}

.slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: #ffc800;
    box-shadow: 0 0 6px rgba(255, 200, 0, 0.6);
    width: 15px;
    border-radius: 3px;
}

.slider-label-badge {
    position: absolute;
    top: -5px;
    right: 10px;
    padding: 3px 8px;
    border-radius: 6px;
    font-family: 'Orbitron', sans-serif;
    font-size: 7.5px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffc800 0%, #ff7a00 100%);
    color: var(--color-text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

/* Floating animation details */
.floating-img {
    animation: imgFloat 5s infinite ease-in-out;
}

.standard-image-wrapper {
    /* Slight angle rotation for standard boxes styling */
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 15px rgba(0, 240, 255, 0.08));
}

.deluxe-image-wrapper {
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 20px rgba(255, 200, 0, 0.1));
}

/* Expand image on hover */
.edition-card:hover .product-image {
    transform: scale(1.05);
}

.standard-edition:hover .standard-image-wrapper {
    transform: translateY(-3px) rotate(-1deg);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 25px rgba(0, 240, 255, 0.2));
}

.deluxe-edition:hover .deluxe-image-wrapper {
    transform: translateY(-3px) rotate(1deg);
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 30px rgba(255, 200, 0, 0.25));
}

/* --- Standard Edition Platform Selector --- */
.selection-label {
    font-size: 8px; /* Slightly smaller */
    font-weight: 800;
    letter-spacing: 2px;
    color: #cbd5e1;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px; /* Reduced from 12px */
    padding-left: 2px;
}

.platform-selection {
    margin-bottom: 0; /* Margin handled by card gap */
}

.platform-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.platform-btn {
    background: rgba(15, 23, 42, 0.95); /* Solid dark slate to stand out from background artwork */
    border: 1px solid rgba(255, 255, 255, 0.25); /* Clear white border */
    border-radius: 10px;
    padding: 12px 6px;
    color: #ffffff; /* White text for perfect contrast */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.platform-btn .platform-name {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.platform-btn:hover {
    background: rgba(30, 41, 59, 0.98);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Hover glow effects based on platform colors */
.platform-btn[data-platform="PC"]:hover {
    border-color: var(--color-beast-cyan);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.45), 0 6px 12px rgba(0, 0, 0, 0.5);
}

.platform-btn[data-platform="PS5"]:hover {
    border-color: var(--color-beast-cyan);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.45), 0 6px 12px rgba(0, 0, 0, 0.5);
}

.platform-btn[data-platform="XBOX"]:hover {
    border-color: var(--color-beast-cyan);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.45), 0 6px 12px rgba(0, 0, 0, 0.5);
}

/* Active states with solid backgrounds - Unified to Beast Cyan */
.platform-btn.active {
    background: var(--color-beast-cyan) !important;
    border-color: var(--color-beast-cyan) !important;
    color: var(--color-text-dark) !important;
    font-weight: 900;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6), 0 4px 10px rgba(0, 0, 0, 0.4) !important;
}

/* --- Deluxe Edition Bundle Contents Checklist --- */
.bundle-contents {
    margin-bottom: 0; /* Margin handled by card gap */
}

.contents-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px; /* Reduced from 8px to save space */
}

.contents-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px; /* Reduced from 12px */
    font-size: 11px; /* Slightly smaller for space */
    line-height: 1.4;
    color: #cbd5e1;
}

.contents-list li strong {
    color: var(--color-text-white);
}

.contents-list .bullet {
    color: #ffc800;
    font-weight: 800;
    font-size: 12px;
    display: inline-block;
    margin-top: -1px;
}

/* Pricing and Call to Action Section */
.pricing-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 8px;
    margin-top: 0; /* Removed auto to eliminate large gap above buy button */
    gap: 10px;
}

.price-container {
    display: flex;
    flex-direction: column;
}

.price-old {
    font-size: 11px;
    text-decoration: line-through;
    color: var(--color-beast-cyan); /* Changed to cyan to match discount badge */
    font-weight: 600;
    margin-bottom: 1px;
    opacity: 0.85;
}

.price-tag {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #ffc800;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.price-current {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px; /* Compacted from 32px */
    font-weight: 900;
    color: var(--color-text-white);
    letter-spacing: 0.5px;
}

.standard-edition .price-current {
}

.deluxe-edition .price-current {
    background: linear-gradient(90deg, #ffc800 0%, #ff7a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buy buttons styling */
.buy-btn {
    flex-grow: 1;
    position: relative;
    border: none;
    border-radius: 12px; /* Compacted from 14px */
    padding: 13px 20px; /* Reduced from 18px 24px */
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px; /* Reduced from 13px */
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--color-text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.standard-buy-btn {
    background: linear-gradient(90deg, var(--color-beast-cyan) 0%, #00b0ff 100%);
    box-shadow: 0 4px 15px var(--color-beast-cyan-glow);
}

.standard-buy-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.5);
    transform: translateY(-1.5px);
}

.deluxe-buy-btn {
    background: linear-gradient(90deg, #ffc800 0%, #ff7a00 100%);
    box-shadow: 0 4px 15px rgba(255, 200, 0, 0.3);
    color: var(--color-text-dark);
}

.deluxe-buy-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 200, 0, 0.6), 0 0 10px rgba(255, 122, 0, 0.4);
    transform: translateY(-1.5px);
}

.buy-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Shiny shimmer animation inside button */
.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
}

.buy-btn:hover .btn-glow {
    animation: buttonShimmer 1.5s infinite;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.card-notes {
    font-size: 8.5px;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.3;
    text-align: left;
}

.card-footer {
    margin-top: 2px;
    border-top: 1px dashed rgba(255, 255, 255, 0.05);
    padding-top: 3px;
}

/* --- 6. FOOTER --- */
.site-footer {
    width: 100%;
    max-width: 100%; /* Stretch it fully across the bottom */
    background: rgba(0, 0, 0, 0.60); /* Neutral semi-transparent black glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 30px 3px 30px;
    border-radius: 0; /* Straight bottom bar without rounding */
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    z-index: 15;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-logos:hover {
    opacity: 1;
}

.footer-logo {
    height: 18px; /* Reduced logo size */
    width: auto;
    object-fit: contain;
}

.logo-rockstar-footer {
    height: 32px;
}

.logo-mrbeast-footer {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.lego-text-logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 1px;
    color: #e3000b;
    text-shadow: 0 0 6px rgba(227, 0, 11, 0.4);
}

.footer-info {
    text-align: center;
    width: 100%; /* Stretch text to full footer width */
    max-width: 100%;
}

.footer-info p {
    font-size: 8.5px; /* Slightly smaller to fit full width in one line */
    color: #cbd5e1;
    line-height: 1.3;
    margin-bottom: 1px;
    white-space: nowrap; /* Keep copyright on one line */
    overflow: hidden;
    text-overflow: ellipsis;
}

.terms-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--color-beast-cyan);
    text-shadow: 0 0 5px var(--color-beast-cyan-glow);
}

/* --- 7. PURCHASE MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 5, 12, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    padding: 40px 20px;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-card {
    background: #0d101e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    width: 90%;
    max-width: 550px;
    position: relative;
    margin: auto;
    z-index: 10002;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8),
                0 0 40px rgba(0, 240, 255, 0.05);
    animation: modalSlideUp 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.modal-overlay.hidden .modal-card {
    transform: translateY(40px);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-text-gray);
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    color: var(--color-text-white);
    transform: scale(1.1);
}

.modal-body {
    padding: 40px;
}

.modal-header-branding {
    text-align: center;
    margin-bottom: 25px;
}

.modal-collab-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px;
}

.modal-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: var(--color-text-white);
}

.modal-selected-edition {
    font-size: 11px;
    color: var(--color-beast-cyan);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Checkout Form Layout */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group.hidden {
    display: none;
}

.form-group label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--color-text-gray);
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--color-text-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-beast-cyan);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.2);
}

/* Custom dropdown style */
.form-group select option {
    background: #0d101e;
    color: var(--color-text-white);
}

/* Payment Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.payment-option {
    cursor: pointer;
}

.payment-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.payment-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 4px;
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    transition: var(--transition-smooth);
    min-height: 65px;
}

.payment-title {
    font-size: 10px;
    font-weight: 800;
    color: var(--color-text-white);
    margin-bottom: 4px;
}

.payment-desc {
    font-size: 8px;
    color: var(--color-text-gray);
}

.payment-option:hover .payment-box {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Checked state */
.payment-option input:checked + .payment-box {
    border-color: var(--color-beast-cyan);
    background: rgba(0, 240, 255, 0.06);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

.payment-option input:checked + .payment-box .payment-title {
    color: var(--color-beast-cyan);
}

/* Order Summary Box */
.order-summary-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.summary-label {
    color: var(--color-text-gray);
}

.summary-val {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 14px;
}

.green-text {
    color: #10b981;
}

.submit-order-btn {
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 900;
    color: var(--color-text-dark);
    cursor: pointer;
    background: linear-gradient(90deg, var(--color-beast-cyan) 0%, var(--color-beast-pink) 100%);
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.25);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.submit-order-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 0, 127, 0.5);
    transform: translateY(-1px);
}

.submit-order-btn:hover .btn-glow {
    animation: buttonShimmer 1.5s infinite;
}

/* --- SUCCESS STEP MODAL --- */
.success-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: scaleIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.success-step.hidden {
    display: none;
}

.success-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #10b981;
    animation: pulseRing 1.5s infinite ease-out;
}

.success-icon-check {
    font-size: 38px;
    color: #10b981;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
    z-index: 2;
}

.success-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #10b981;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.success-message {
    font-size: 13px;
    color: var(--color-text-white);
    margin-bottom: 25px;
}

.success-details-box {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.success-details-box p {
    font-size: 11.5px;
    line-height: 1.5;
    color: var(--color-text-gray);
}

.success-details-box strong {
    color: var(--color-text-white);
}

.gift-announcement {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 12px;
    margin-top: 4px;
    color: var(--color-beast-cyan) !important;
    font-weight: 700;
    text-align: center;
}

.close-success-btn {
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 900;
    color: var(--color-text-dark);
    cursor: pointer;
    background: #10b981;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: var(--transition-smooth);
}

.close-success-btn:hover {
    background: #059669;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    transform: translateY(-1px);
}

/* Canvas celebration overlay */
.celebration-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    pointer-events: none;
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes rockstarGlowPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.7)) drop-shadow(0 0 20px rgba(0, 240, 255, 0.4));
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 0 18px rgba(255, 0, 127, 0.9)) drop-shadow(0 0 30px rgba(255, 0, 127, 0.6));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.7)) drop-shadow(0 0 20px rgba(0, 240, 255, 0.4));
    }
}

@keyframes glowPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 0 5px rgba(0, 240, 255, 0.4);
    }
    100% {
        box-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
    }
}

@keyframes gta6Pulse {
    0% {
        box-shadow: 0 0 5px rgba(255, 200, 0, 0.4);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 122, 0, 0.8);
    }
}

@keyframes textFlash {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes imgFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes buttonShimmer {
    0% {
        left: -110%;
    }
    100% {
        left: 150%;
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(0.85);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes siteReveal {
    0% {
        opacity: 0;
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes modalSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ambientFloat {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 80px);
    }
}

/* --- 8. RESPONSIVE DESIGN (MEDIA QUERIES) --- */

/* Height-based desktop media queries to scale logo & layout elements and keep page scroll-free */
@media (max-height: 1000px) and (min-width: 993px) {
    .collab-logo {
        height: 85px; /* Scaled down slightly for smaller height viewports */
    }
    .landing-main {
        margin-top: 10px;
    }
}

@media (max-height: 850px) and (min-width: 993px) {
    .collab-logo {
        height: 80px; /* Scaled down slightly for smaller height viewports */
    }
    .landing-main {
        margin-top: 5px;
    }
}

@media (max-height: 720px) and (min-width: 993px) {
    .collab-logo {
        height: 75px; /* Scaled down slightly for smaller height viewports */
    }
    .landing-main {
        margin-top: 0px;
    }
}

@media (max-width: 1200px) {
    .site-header {
        padding: 20px 30px;
    }
    
    .landing-main {
        padding: 10px 30px 40px 30px;
    }
    
    .landing-grid {
        gap: 25px;
    }
    
    .edition-card {
        padding: 16px 20px;
    }
    
    .edition-title {
        font-size: 24px;
    }
    
    .price-current {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    html, body {
        height: auto;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .main-wrapper {
        height: auto;
        overflow: visible;
    }

    .gta-vi-logo-link {
        position: absolute;
        top: 15px;
        left: 20px;
        z-index: 100;
    }

    .landing-main {
        height: auto;
        padding: 20px 20px;
    }

    .site-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        height: auto;
        padding: 15px 20px;
    }
    
    .header-left {
        display: none; /* Fixed corner logo is present */
    }
    
    .header-center {
        grid-column: 1 / span 2;
        grid-row: 2;
        order: 3;
        margin-top: 10px;
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
        pointer-events: auto;
    }
    
    .collab-logo {
        height: 75px; /* Constrained to fit tablet screen width */
        max-width: 100%;
        margin: 0;
        position: static;
        transform: none;
    }
    
    .landing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 650px;
        margin: 0 auto;
    }
    
    .edition-card {
        min-height: auto;
        max-height: none;
    }
    
    .image-showcase {
        height: 220px;
        max-height: none;
    }
}

@media (max-width: 576px) {
    .gta-vi-logo-link {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 auto 10px auto;
        display: block;
        text-align: center;
    }

    .gta-vi-logo {
        height: 30px;
    }

    .site-header {
        padding: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .header-left, .header-right {
        align-items: center;
        text-align: center;
    }
    
    .collab-logo {
        height: 60px; /* Constrained to fit mobile screen width */
        max-width: 100%;
        position: static;
        transform: none;
        margin: 0;
    }
    
    .landing-main {
        padding: 10px 15px 30px 15px;
    }
    
    .edition-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .badge {
        padding: 4px 10px;
        font-size: 8px;
        margin-bottom: 10px;
    }
    
    .edition-title {
        font-size: 20px;
    }
    
    .image-showcase {
        height: 180px;
        margin: 10px 0 20px 0;
    }
    
    .platform-options {
        gap: 8px;
    }
    
    .platform-btn {
        padding: 10px 4px;
        border-radius: 8px;
    }
    
    .platform-btn .platform-icon {
        font-size: 15px;
    }
    
    .platform-btn .platform-name {
        font-size: 8px;
    }
    
    .pricing-action {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding-top: 20px;
    }
    
    .price-container {
        flex-direction: row;
        align-items: baseline;
        justify-content: space-between;
    }
    
    .price-current {
        font-size: 26px;
    }
    
    .buy-btn {
        padding: 14px;
        font-size: 11px;
    }
    
    .modal-body {
        padding: 25px 20px;
    }
    
    .payment-methods-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .payment-box {
        min-height: auto;
        padding: 10px;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .payment-title {
        margin-bottom: 0;
    }
}

/* --- MrBeast Surprise Gift Promo Box --- */
.standard-gift-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 12px;
    padding: 10px 14px;
    margin-top: 2px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.standard-gift-box:hover {
    background: rgba(0, 240, 255, 0.09);
    border-color: rgba(0, 240, 255, 0.45);
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.2), 0 0 8px rgba(0, 240, 255, 0.1);
    transform: translateY(-1px);
}

.gift-icon-container {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: giftWiggle 3.5s infinite ease-in-out;
}

.gift-icon-img {
    width: 45px;
    height: auto;
    object-fit: contain;
    display: block;
}

.gift-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.gift-badge {
    font-family: 'Orbitron', sans-serif;
    font-size: 7.5px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-beast-pink);
    text-shadow: 0 0 5px rgba(255, 0, 127, 0.3);
    text-transform: uppercase;
}

.gift-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-white);
    letter-spacing: 0.2px;
}

@keyframes giftWiggle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    5% { transform: rotate(-10deg) scale(1.1); }
    10% { transform: rotate(10deg) scale(1.1); }
    15% { transform: rotate(-8deg) scale(1.05); }
    20% { transform: rotate(8deg) scale(1.05); }
    25% { transform: rotate(0deg) scale(1); }
}

/* --- Crypto-Only Payment Option --- */
.crypto-payment-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition-smooth);
}

.crypto-payment-box:hover {
    border-color: rgba(0, 240, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.12);
}

.crypto-payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.crypto-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--color-beast-cyan);
    letter-spacing: 0.5px;
}

.crypto-badge {
    font-family: 'Orbitron', sans-serif;
    font-size: 8px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(0, 240, 255, 0.15);
    color: var(--color-beast-cyan);
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.crypto-desc {
    font-size: 11px;
    line-height: 1.4;
    color: var(--color-text-gray);
}

.crypto-coins-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.coin-tag {
    font-family: 'Orbitron', sans-serif;
    font-size: 8.5px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-white);
    transition: var(--transition-smooth);
}

.coin-tag:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--color-beast-cyan);
    color: var(--color-beast-cyan);
    transform: translateY(-1px);
}

/* --- Payment Pending Screen in Modal --- */
.payment-pending-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.pending-spinner-container {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}

.pending-spinner {
    width: 100%;
    height: 100%;
    border: 4px solid rgba(0, 240, 255, 0.1);
    border-top: 4px solid var(--color-beast-cyan);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

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

.spinner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    border-radius: 50%;
}

.pending-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--color-text-white);
    letter-spacing: 0.5px;
}

.pending-description {
    font-size: 12px;
    line-height: 1.5;
    color: var(--color-text-gray);
    max-width: 400px;
}

.reopen-payment-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-family: 'Orbitron', sans-serif;
    font-size: 11.5px;
    font-weight: 900;
    color: var(--color-text-dark);
    cursor: pointer;
    background: linear-gradient(90deg, var(--color-beast-cyan) 0%, #00b0ff 100%);
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
    transition: var(--transition-smooth);
}

.reopen-payment-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.5);
    transform: translateY(-1.5px);
}

.pending-status-pill {
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    border-radius: 50px;
    background: rgba(255, 200, 0, 0.1);
    color: #ffc800;
    border: 1px solid rgba(255, 200, 0, 0.25);
    animation: badgePulse 2s infinite alternate;
}

.pending-note {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    max-width: 380px;
    line-height: 1.4;
}

/* --- PAYMENT METHOD TABS --- */
.payment-methods-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
}

.method-tab {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-white);
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
}

.method-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.method-tab.active {
    background: linear-gradient(135deg, var(--color-beast-cyan) 0%, #0099cc 100%);
    color: var(--color-text-dark);
    border-color: var(--color-beast-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.35);
    font-weight: 900;
}

.payment-details-box {
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

/* PayPal specific styles */
.paypal-payment-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition-smooth);
}

.paypal-payment-box:hover {
    border-color: rgba(0, 240, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.12);
}

.paypal-payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.paypal-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--color-beast-cyan);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}

.paypal-badge {
    font-family: 'Orbitron', sans-serif;
    font-size: 8px;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color-beast-cyan) 0%, #0099cc 100%);
    color: var(--color-text-dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
    box-shadow: 0 0 10px var(--color-beast-cyan-glow);
}

.reset-paypal-btn {
    background: none;
    border: none;
    color: var(--color-beast-cyan);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 5px;
    display: block;
    text-align: left;
    text-decoration: underline;
    opacity: 0.7;
    transition: var(--transition-smooth);
    padding: 5px 0;
    font-family: 'Montserrat', sans-serif;
    align-self: flex-start;
}

.reset-paypal-btn:hover {
    opacity: 1;
    text-shadow: 0 0 8px var(--color-beast-cyan-glow);
}

.paypal-desc {
    font-size: 10.5px;
    color: var(--color-text-gray);
    line-height: 1.4;
    margin-bottom: 15px;
}

.paypal-btn-container {
    width: 100%;
    margin-top: 10px;
}


