/*
Theme Name: QuickFlips Gaming
Theme URI: https://myquickflips.store
Author: QuickFlips
Description: A modern, mobile-friendly theme for QuickFlips Video Games - Kentucky's Premier Game Store
Version: 3.0
License: GNU General Public License v2 or later
Text Domain: quickflips
*/

/* ============================================
   POKEMON-INSPIRED GAMING THEME
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Exo+2:wght@300;400;500;600;700;800&family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
    /* Pokemon-inspired Color Palette */
    --poke-electric: #FFCC00;
    --poke-fire: #FF6B35;
    --poke-water: #0EA5E9;
    --poke-psychic: #A855F7;
    --poke-dragon: #6366F1;
    --poke-grass: #10B981;
    --poke-ice: #06B6D4;
    --poke-fighting: #EF4444;
    
    /* Gaming Dark Theme */
    --gaming-black: #0F0F1E;
    --gaming-dark: #1A1A2E;
    --gaming-darker: #16213E;
    --gaming-navy: #0F3460;
    --gaming-card: rgba(26, 26, 46, 0.7);
    
    /* Accent Colors */
    --accent-gold: #FCD34D;
    --accent-neon: #00F5FF;
    --accent-purple: #C084FC;
    --accent-pink: #F472B6;
    
    /* Text */
    --text-white: #FFFFFF;
    --text-light: #E5E7EB;
    --text-gray: #9CA3AF;
    --text-muted: #6B7280;
    
    /* Effects */
    --glow-electric: 0 0 20px rgba(255, 204, 0, 0.5), 0 0 40px rgba(255, 204, 0, 0.3);
    --glow-ice: 0 0 20px rgba(6, 182, 212, 0.5), 0 0 40px rgba(6, 182, 212, 0.3);
    --glow-fire: 0 0 20px rgba(255, 107, 53, 0.5), 0 0 40px rgba(255, 107, 53, 0.3);
    --glow-psychic: 0 0 20px rgba(168, 85, 247, 0.5), 0 0 40px rgba(168, 85, 247, 0.3);
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(10px);
    
    /* Typography */
    --font-display: 'Orbitron', monospace;
    --font-body: 'Exo 2', sans-serif;
    --font-accent: 'Rajdhani', sans-serif;
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Borders */
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--gaming-black);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Animated Pokemon Energy Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(255, 204, 0, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: energyPulse 15s ease-in-out infinite;
}

/* Pokemon Card Grid Pattern */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 204, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 204, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

@keyframes energyPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    color: var(--text-white);
    text-transform: uppercase;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    background: linear-gradient(135deg, var(--poke-electric) 0%, var(--poke-fire) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(255, 204, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
}

h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    background: linear-gradient(135deg, var(--poke-electric) 0%, var(--accent-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

h3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-family: var(--font-accent);
    font-weight: 700;
}

h4 {
    font-size: clamp(1.25rem, 3vw, 1.875rem);
    font-family: var(--font-accent);
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 400;
}

strong {
    font-weight: 700;
    color: var(--text-white);
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 204, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 204, 0, 0.8)); }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    width: 100%;
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.section {
    padding: clamp(60px, 10vw, 120px) 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--text-white);
    background: linear-gradient(135deg, var(--poke-electric) 0%, var(--poke-fire) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(255, 204, 0, 0.4));
}

/* Fallback for browsers that don't support background-clip */
@supports not (background-clip: text) {
    .section-title h2 {
        color: var(--poke-electric);
        background: none;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        background-clip: unset;
        text-shadow: 0 0 30px rgba(255, 204, 0, 0.6);
    }
}

.section-title p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: var(--font-accent);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--poke-electric) 0%, var(--poke-fire) 100%);
    color: var(--gaming-black);
    box-shadow: var(--glow-electric);
    font-weight: 800;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 204, 0, 0.6), 0 0 60px rgba(255, 107, 53, 0.4);
}

.btn-outline {
    background: transparent;
    border: 3px solid var(--poke-electric);
    color: var(--poke-electric);
    position: relative;
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--poke-electric) 0%, var(--poke-fire) 100%);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-outline:hover {
    color: var(--gaming-black);
    border-color: var(--poke-fire);
    transform: translateY(-4px);
    box-shadow: var(--glow-electric);
}

.btn-outline:hover::after {
    width: 100%;
}

.btn-accent {
    background: linear-gradient(135deg, var(--poke-psychic) 0%, var(--poke-dragon) 100%);
    color: var(--text-white);
}

.btn-accent:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--glow-psychic);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 30, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 2px solid rgba(255, 204, 0, 0.2);
    transition: var(--transition-normal);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled {
    background: rgba(15, 15, 30, 0.95);
    box-shadow: 0 8px 40px rgba(255, 204, 0, 0.15), 0 0 80px rgba(255, 204, 0, 0.1);
    border-bottom-color: rgba(255, 204, 0, 0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo {
    display: none;
    gap: 10px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--bright-white);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-image {
    max-height: 50px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-menu a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-accent);
    position: relative;
    padding: 8px 0;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--poke-electric), var(--poke-fire));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--poke-electric);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--poke-electric);
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.6);
}


.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer !important;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-toggle span {
    width: 30px;
    height: 4px;
    background: linear-gradient(90deg, var(--poke-electric), var(--poke-fire));
    border-radius: 4px;
    transition: var(--transition-normal);
    display: block;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.mobile-toggle:hover span {
    background: linear-gradient(90deg, var(--poke-fire), var(--poke-electric));
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 180px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, var(--gaming-black) 0%, var(--gaming-dark) 100%);
    border-bottom: 3px solid rgba(255, 204, 0, 0.3);
}

/* Electric Pokemon Energy */
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.3) 0%, transparent 70%);
    pointer-events: none;
    animation: energyFloat 8s ease-in-out infinite;
    filter: blur(60px);
}

/* Fire Pokemon Energy */
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, transparent 70%);
    pointer-events: none;
    animation: energyFloat 10s ease-in-out infinite reverse;
    filter: blur(60px);
}

@keyframes energyFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-inner {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
}

.hero-brand {
    margin-bottom: 30px;
}

.hero-logo {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--poke-electric) 0%, var(--poke-fire) 50%, var(--poke-psychic) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(255, 204, 0, 0.6));
    margin: 0;
    line-height: 1;
    animation: logoGlow 4s ease-in-out infinite, float 6s ease-in-out infinite;
    position: relative;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(255, 204, 0, 0.6)); }
    50% { filter: drop-shadow(0 0 60px rgba(255, 204, 0, 0.9)) drop-shadow(0 0 80px rgba(255, 107, 53, 0.5)); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.hero-badge::before {
    content: '';
}
.hero .container{
    padding-bottom: 50px;
}

.hero h2 {
    margin-bottom: 25px;
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: var(--font-accent);
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero h2 .highlight {
    background: linear-gradient(135deg, var(--poke-electric) 0%, var(--poke-fire) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Pokemon Energy Badge Style for Tagline */
.hero-description {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.15), rgba(255, 107, 53, 0.15));
    border: 2px solid rgba(255, 204, 0, 0.4);
    border-radius: 12px;
    padding: 12px 30px;
    color: var(--poke-electric);
    font-weight: 700;
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.125rem;
    box-shadow: 
        0 4px 20px rgba(255, 204, 0, 0.3),
        inset 0 0 20px rgba(255, 204, 0, 0.1);
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.6);
    animation: taglinePulse 3s ease-in-out infinite;
    margin: 10px auto 40px;
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Add shimmer effect */
.hero-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Secondary description styling */
.hero-description-secondary {
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 400;
    line-height: 1.6;
}

/* Fallback for any strong tags within description */
.hero-description strong,
.hero-description b {
    color: inherit;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

@keyframes taglinePulse {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(255, 204, 0, 0.3),
            inset 0 0 20px rgba(255, 204, 0, 0.1);
        border-color: rgba(255, 204, 0, 0.4);
    }
    50% {
        box-shadow: 
            0 6px 30px rgba(255, 204, 0, 0.5),
            0 0 40px rgba(255, 204, 0, 0.3),
            inset 0 0 30px rgba(255, 204, 0, 0.15);
        border-color: rgba(255, 204, 0, 0.6);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero Background Carousel */
.hero-background-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: heroCarousel 20s infinite;
}

.hero-default {
    background: var(--gradient-dark);
}

@keyframes heroCarousel {
    0%, 50% { opacity: 0; transform: scale(1.1); }
    10%, 40% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.1); }
}

/* ============================================
   CATEGORY TABS SECTION
   ============================================ */
.categories {
    background: linear-gradient(180deg, var(--gaming-dark) 0%, var(--gaming-darker) 100%);
    padding: 80px 0;
    position: relative;
    border-bottom: 3px solid rgba(255, 204, 0, 0.2);
}

.categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.categories-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
    margin-top: 51px;
}

.categories-layout .section-title {
    flex: 0 0 auto;
    min-width: 300px;
    max-width: 800px;
}

.categories-layout .category-grid {
    flex: 1;
    max-width: none;
    margin: 0;
}

.category-card {
    background: linear-gradient(135deg, var(--glass-bg), rgba(255, 255, 255, 0.02));
    border: 2px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
    aspect-ratio: 7/9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Holographic Pokemon Card Effect */
.category-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 204, 0, 0.1) 35%,
        rgba(168, 85, 247, 0.2) 40%,
        rgba(99, 102, 241, 0.1) 45%,
        transparent 50%
    );
    transform: rotate(0deg);
    opacity: 0;
    transition: all 0.6s ease;
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, var(--poke-electric), var(--poke-psychic), var(--poke-dragon));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
    transform: rotate(180deg);
}

.category-card:hover::after {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(255, 204, 0, 0.3),
        0 0 80px rgba(168, 85, 247, 0.2),
        inset 0 0 40px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 204, 0, 0.5);
}

.category-icon {
    font-size: 6rem;
    display: block;
    filter: drop-shadow(0 0 20px rgba(255, 204, 0, 0.5));
    transition: var(--transition-normal);
    animation: iconFloat 3s ease-in-out infinite;
}

.category-card:hover .category-icon {
    filter: drop-shadow(0 0 40px rgba(255, 204, 0, 0.8)) drop-shadow(0 0 60px rgba(168, 85, 247, 0.5));
    transform: scale(1.1) rotate(5deg);
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--radius-lg);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.05) 100%);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 0.875rem;
    color: var(--gray);
    margin: 0;
}

/* ============================================
   FAST CASH SECTION
   ============================================ */
.fast-cash {
    background: linear-gradient(180deg, var(--gaming-darker) 0%, var(--gaming-black) 100%);
    padding: 100px 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 3px solid rgba(255, 204, 0, 0.2);
    overflow: hidden;
}

.fast-cash::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: energyPulse 10s ease-in-out infinite;
    pointer-events: none;
}

.fast-cash-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.fast-cash-content h2 {
    margin-bottom: 20px;
}

.fast-cash-content h2 .highlight {
    color: var(--primary);
}
.fast-cash-content {
    text-align: center;
    
}




.search-button-container {
    margin-top: 30px;
}

.search-button-container .btn {
    padding: 15px 30px;
    display: inline-block;
}

.screenshot-section {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 135px;
}

.screenshot-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    /* box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(6, 182, 212, 0.3);
    border: 3px solid rgba(6, 182, 212, 0.5);
    background: var(--gaming-dark); */
    aspect-ratio: 9/16;
    max-height: 600px;
    transition: var(--transition-normal);
}

.screenshot-container:hover {
    transform: translateY(-8px);
    /* box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(6, 182, 212, 0.5),
        0 0 100px rgba(6, 182, 212, 0.3);
    border-color: var(--poke-ice); */
}

.screenshot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.screenshot-container:hover .screenshot-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}


.screenshot-placeholder {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 2px dashed rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    aspect-ratio: 9/16;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.6;
}

.screenshot-placeholder p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   PRODUCT CAROUSEL SECTION
   ============================================ */
.products {
    background: linear-gradient(180deg, var(--gaming-black) 0%, var(--gaming-dark) 100%);
    padding: 100px 0;
    overflow: hidden;
    border-bottom: 3px solid rgba(255, 204, 0, 0.2);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    animation: energyFloat 12s ease-in-out infinite;
    pointer-events: none;
}

.carousel-wrapper {
    position: relative;
    margin-top: 40px;
}

.carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 300px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.8));
    border: 2px solid rgba(255, 204, 0, 0.3);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
    /* aspect-ratio: 1/1; */
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--poke-electric), var(--poke-fire), var(--poke-psychic));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-15px) rotateY(5deg);
    border-color: var(--poke-electric);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(255, 204, 0, 0.4),
        inset 0 0 30px rgba(255, 204, 0, 0.1);
}

.product-image {
    width: 100%;
    flex: 1;
    background: linear-gradient(135deg, var(--gaming-darker) 0%, var(--gaming-navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 204, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
    animation: shimmer 3s ease-in-out infinite;
}

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

.product-uploaded-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-uploaded-image {
    transform: scale(1.1);
}

.product-icon {
    font-size: 5rem;
    display: block;
    filter: drop-shadow(0 0 30px rgba(255, 204, 0, 0.6));
    animation: iconFloat 3s ease-in-out infinite;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--poke-fire) 0%, var(--poke-fighting) 100%);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

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

.product-info {
    padding: 25px;
}

.product-info h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-info .platform {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 15px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price .price {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    background: linear-gradient(135deg, var(--poke-electric) 0%, var(--poke-fire) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.5));
}

.product-price .original {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.carousel-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--glass-bg), rgba(255, 204, 0, 0.15));
    border: 3px solid rgba(255, 204, 0, 0.4);
    color: var(--poke-electric);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    font-weight: 900;
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.2);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--poke-electric), var(--poke-fire));
    color: var(--gaming-black);
    border-color: var(--poke-fire);
    transform: scale(1.1);
    box-shadow: var(--glow-electric);
}

/* ============================================
   NEVER MISS A DEAL SECTION
   ============================================ */
.deals {
    background: linear-gradient(180deg, var(--gaming-dark) 0%, var(--gaming-darker) 100%);
    padding: 100px 0;
    border-bottom: 3px solid rgba(255, 204, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.deals::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.15) 0%, transparent 70%);
    animation: energyFloat 14s ease-in-out infinite;
    pointer-events: none;
}

.deals-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--gaming-darker);
    aspect-ratio: 16/9;
    border: 3px solid rgba(244, 114, 182, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(244, 114, 182, 0.3);
    transition: var(--transition-normal);
}

.video-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(244, 114, 182, 0.5);
    border-color: var(--accent-pink);
}

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

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a4a 0%, #1a1a2e 100%);
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-glow);
}

.play-btn:hover {
    transform: scale(1.1);
}

.deals-content h2 {
    margin-bottom: 20px;
}

.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 30px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-family: var(--font-accent);
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
    border: 3px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: white;
    border-color: #FF0000;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877F2, #0d5dbf);
    color: white;
    border-color: #1877F2;
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.3);
}

.social-btn.tiktok {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: white;
    border: 3px solid #25F4EE;
    box-shadow: 0 4px 20px rgba(37, 244, 238, 0.3);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    border-color: #e6683c;
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.3);
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 204, 0, 0.4);
}

.social-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 4px;
    /* filter: brightness(0) invert(1); */
}

/* ============================================
   SELL COLLECTION FORM SECTION
   ============================================ */
.sell-form-section {
    background: linear-gradient(180deg, var(--gaming-darker) 0%, var(--gaming-black) 100%);
    padding: 100px 0;
    border-bottom: 3px solid rgba(255, 204, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.sell-form-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
    animation: energyPulse 12s ease-in-out infinite;
    pointer-events: none;
}

 .sell-form-section .container {
     display: grid;
     grid-template-columns: 1fr 1.1fr;
     gap: 40px;
     align-items: center;
     padding: 0 20px;
 }

 .sell-form-section .section-title {
     margin: 0;
     margin-bottom: 20px;
 }

 .sell-form-section .form-wrapper {
     max-width: none;
     margin: 0;
     padding: 30px;
 }

 .sell-form-section .form-actions {
     display: flex;
     gap: 15px;
     flex-wrap: wrap;
 }

 .sell-form-section .form-actions .btn {
     flex: 1;
     min-width: 120px;
 }

/* Responsive styles */
@media (max-width: 1024px) {
    .sell-form-section .container {
        gap: 40px;
    }
    
    .sell-form-section .form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .sell-form-section .container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .sell-form-section {
        padding: 60px 0;
    }
    
    .sell-form-section .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .sell-form-section .form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .sell-form-section .form-wrapper {
        padding: 20px 15px;
    }
    
    .sell-form-section .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .sell-form-section .section-title {
        text-align: center;
    }
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--glass-bg), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 204, 0, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 40px rgba(255, 204, 0, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
}

.form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--poke-electric), var(--poke-fire), var(--poke-psychic), var(--poke-dragon));
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.sell-form {
    display: grid;
    gap: 25px;
}

.sell-form input,
.sell-form textarea {
    cursor: text;
}

 #collection-form input,
 #collection-form textarea,
 #collection-form input:hover,
 #collection-form textarea:hover,
 #collection-form input:focus,
 #collection-form textarea:focus {
     cursor: text !important;
 }

 #collection-form.customize-unpreviewable,
 #collection-form.customize-unpreviewable input,
 #collection-form.customize-unpreviewable textarea,
 #collection-form.customize-unpreviewable button,
 #careers-form.customize-unpreviewable,
 #careers-form.customize-unpreviewable input,
 #careers-form.customize-unpreviewable textarea,
 #careers-form.customize-unpreviewable button {
     cursor: auto !important;
 }

.sell-form button,
.sell-form .btn {
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--light);
}

.form-group input,
.form-group textarea {
    background: rgba(26, 26, 46, 0.6);
    border: 2px solid rgba(255, 204, 0, 0.2);
    border-radius: var(--border-radius-sm);
    padding: 16px 24px;
    color: var(--text-light);
    font-size: 1.0625rem;
    font-family: var(--font-body);
    transition: var(--transition-normal);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--poke-electric);
    background: rgba(26, 26, 46, 0.8);
    box-shadow: 
        0 0 0 4px rgba(255, 204, 0, 0.15),
        0 0 30px rgba(255, 204, 0, 0.2);
    transform: translateY(-2px);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.file-upload {
    border: 2px dashed rgba(255, 204, 0, 0.4);
    border-radius: var(--border-radius);
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.05), rgba(255, 107, 53, 0.05));
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.file-upload:hover {
    border-color: var(--poke-electric);
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), rgba(255, 107, 53, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 204, 0, 0.2);
}

.file-upload.dragover {
    border-color: var(--poke-electric);
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.15), rgba(255, 107, 53, 0.15));
    box-shadow: 0 0 40px rgba(255, 204, 0, 0.3);
}

.file-upload-content .upload-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(255, 204, 0, 0.4));
}

.file-upload-content p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.file-upload-content p strong {
    color: var(--poke-electric);
    font-weight: 700;
}

.file-upload-content span {
    color: var(--poke-electric);
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
    transition: var(--transition-normal);
}

.file-upload-content span:hover {
    color: var(--poke-fire);
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.6);
}

.file-upload-content small {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.file-upload p {
    margin: 0;
    color: var(--gray);
}

.file-upload span {
    color: var(--primary);
    font-weight: 600;
}

.form-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
    background: linear-gradient(180deg, var(--gaming-black) 0%, var(--gaming-dark) 100%);
    padding: 100px 0;
    border-bottom: 3px solid rgba(255, 204, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    transform: translateX(-50%);
    animation: energyPulse 15s ease-in-out infinite;
    pointer-events: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background: linear-gradient(135deg, var(--glass-bg), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 204, 0, 0.25);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Pokemon Trainer Card Energy Effect */
.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--poke-electric), var(--poke-psychic));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--poke-electric);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(255, 204, 0, 0.3),
        inset 0 0 30px rgba(255, 204, 0, 0.08);
}

.member-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gaming-darker) 0%, var(--gaming-navy) 100%);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border: 4px solid rgba(255, 204, 0, 0.4);
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 204, 0, 0.2),
        inset 0 0 30px rgba(255, 204, 0, 0.1);
    transition: var(--transition-normal);
}

.team-member:hover .member-image {
    border-color: var(--poke-electric);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 204, 0, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-emoji {
    font-size: 3.5rem;
    line-height: 1;
}

.member-info h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.member-role {
    display: inline-block;
    background: linear-gradient(135deg, var(--poke-electric), var(--poke-fire));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.9375rem;
    font-weight: 700;
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.3));
}

.member-bio {
    color: var(--gray);
    font-size: 0.875rem;
    line-height: 1.4;
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, var(--gaming-dark) 0%, var(--gaming-black) 100%);
    padding: 80px 0 30px;
    border-top: 3px solid rgba(255, 204, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 204, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--glass-bg), rgba(255, 204, 0, 0.1));
    border: 3px solid rgba(255, 204, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-normal);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--poke-electric), var(--poke-fire));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.footer-social a svg {
    width: 24px;
    height: 24px;
    fill: var(--poke-electric);
    color: var(--poke-electric);
    position: relative;
    z-index: 1;
    transition: var(--transition-normal);
}

.footer-social a:hover svg {
    fill: var(--gaming-black);
    color: var(--gaming-black);
}

.footer-social a:hover {
    border-color: var(--poke-electric);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 
        0 10px 30px rgba(255, 204, 0, 0.4),
        0 0 50px rgba(255, 204, 0, 0.3);
}

.footer-social a:hover::before {
    opacity: 0.2;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 25px;
    color: var(--primary);
    text-align: center;
}

.footer-column:first-child {
    text-align: center;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.hours-container {
    background: linear-gradient(135deg, var(--glass-bg), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 204, 0, 0.25);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hours-item .days {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    font-family: var(--font-accent);
}

.hours-item .time {
    font-size: 0.9375rem;
    background: linear-gradient(135deg, var(--poke-electric), var(--poke-fire));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-family: var(--font-display);
}

.hours-item.closed .time {
    background: linear-gradient(135deg, var(--poke-fighting), var(--poke-fire));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-container {
    background: linear-gradient(135deg, var(--glass-bg), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 204, 0, 0.25);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-email {
    font-size: 1.0625rem;
    background: linear-gradient(135deg, var(--poke-electric), var(--poke-fire));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-family: var(--font-accent);
}

.careers-form {
    margin-top: 20px;
}

.careers-form input,
.careers-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--light);
    padding: 12px;
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    transition: var(--transition);
    font-family: inherit;
    resize: vertical;
}

.careers-form input:focus,
.careers-form textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.875rem;
    margin: 0;
}

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

.footer-bottom-links a {
    color: var(--gray);
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ============================================
   CONTACT INFO BAR
   ============================================ */
.contact-bar {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-md);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-text .label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-text .value {
    color: var(--light);
    font-weight: 600;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner,
    .fast-cash-inner,
    .deals-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .fast-cash {
        flex-direction: column;
        padding: 40px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* iPad mini navigation fix */
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .nav-cta {
        display: none;
    }
}

/* iPad mini specific fix (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        gap: 15px;
        position: static !important;
        background: transparent !important;
        padding: 0 !important;
    }
    
    .nav-menu a {
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: none !important;
    }
    
    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .logo {
        order: 1;
        flex: 1;
        text-align: center;
    }
    
    .nav-menu {
        order: 2;
        flex: 2;
        justify-content: center;
    }
    
    /* iPad Air categories layout fix */
    .categories-layout {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .categories-layout .section-title {
        min-width: auto;
        max-width: 100%;
    }
    
    .categories-layout .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .category-card {
        min-height: 160px;
        padding: 25px 15px;
    }
}

/* iPad Air landscape and larger tablets (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
    .categories-layout {
        gap: 40px;
    }
    
    .categories-layout .section-title {
        min-width: 280px;
        max-width: 350px;
    }
    
    .categories-layout .category-grid {
        gap: 15px;
    }
    
    .category-card {
        padding: 25px 15px;
        min-height: 170px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #0a0a0a;
        background: var(--dark-bg, #0a0a0a);
        flex-direction: column;
        padding: 30px;
        gap: 25px;
        display: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
        border-top: 3px solid #00ffff;
        border-top: 3px solid var(--electric-cyan, #00ffff);
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        min-height: 200px;
    }

    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex !important;
        z-index: 1001;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 18px 24px;
        font-size: 1rem;
    }

    .btn {
        padding: 16px 24px;
        font-size: 0.95rem;
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .form-actions {
        flex-direction: column;
        gap: 15px;
    }

    .form-actions .btn {
        width: 100%;
        padding: 18px 24px;
        font-size: 1rem;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .social-btn {
        padding: 16px 20px;
        font-size: 1rem;
        flex-direction: column;
        gap: 8px;
        min-height: 80px;
    }

    
    .categories-layout {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .categories-layout .section-title {
        min-width: auto;
        max-width: 100%;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 100%;
    }
    
    .category-card {
        min-height: 160px;
        padding: 25px 15px;
    }
    
    .fast-cash {
        flex-direction: column;
        justify-content: flex-start;
        padding: 30px 0;
    }
    
    .fast-cash-inner {
        gap: 30px;
    }
    
    .screenshot-section {
        max-width: 500px;
    }
    
    .screenshot-container {
        max-height: 500px;
    }
    
    .screenshot-placeholder {
        padding: 30px;
        max-height: 500px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .social-buttons {
        grid-template-columns: 1fr;
    }

    .contact-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .search-button-container {
        text-align: center;
    }

    .search-button-container .btn {
        width: 100%;
        max-width: 300px;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .section {
        padding: 60px 0;
    }
}

/* Ensure desktop menu resets properly */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        background: transparent !important;
        flex-direction: row !important;
        padding: 0 !important;
        gap: 35px;
        box-shadow: none !important;
        border: none !important;
        z-index: auto !important;
        max-height: none !important;
        overflow: visible !important;
        min-height: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
    }
    
    .nav-menu li {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .mobile-toggle {
        display: none !important;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .category-card {
        min-height: 140px;
        padding: 20px 15px;
    }
    
    .categories-layout {
        gap: 30px;
    }
    
    .fast-cash {
        padding: 20px 0;
    }
    
    .fast-cash-inner {
        gap: 20px;
    }
    
    .screenshot-section {
        max-width: 100%;
        padding-left: 75px;
    }
    
    .screenshot-container {
        max-height: 400px;
    }
    
    .screenshot-placeholder {
        padding: 20px;
        max-height: 400px;
    }
    
    .placeholder-icon {
        font-size: 3rem;
    }

    .floating-badge {
        display: none;
    }

    .product-card {
        flex: 0 0 250px;
    }

    .btn {
        padding: 14px 20px;
        font-size: 0.9rem;
        min-height: 48px;
    }

    .hero-buttons .btn {
        padding: 16px 20px;
        font-size: 0.95rem;
        max-width: 280px;
    }

    .form-actions .btn {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .social-btn {
        padding: 14px 16px;
        font-size: 0.9rem;
        min-height: 70px;
    }

    .file-upload {
        padding: 30px 15px;
    }

    .file-upload-content .upload-icon {
        font-size: 2.5rem;
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Scroll animations - triggered via JS */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}
