/* ============================================
   PLAYSTATION 5 PREMIUM SHOP - 2025 CONCEPT
   ============================================ */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.disclosure-bar {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.disclosure-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.disclosure-icon {
    width: 16px;
    height: 16px;
    color: var(--ps-neon-blue);
}

.disclosure-text {
    color: rgba(255, 255, 255, 0.6);
}

.affiliate-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: var(--gradient-2);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.disclosure-link {
    color: var(--ps-neon-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.disclosure-link:hover {
    color: var(--ps-white);
}

.inline-icon {
    width: 14px;
    height: 14px;
}

:root {
    /* 2025 Premium Color Palette */
    --ps-blue: #0066FF;
    --ps-light-blue: #00D4FF;
    --ps-dark-blue: #0033CC;
    --ps-neon-blue: #00F0FF;
    --ps-purple: #8B5CF6;
    --ps-white: #FFFFFF;
    --ps-black: #000000;
    --ps-dark-bg: #000000;
    --ps-darker-bg: #000000;
    --ps-card-bg: #0A0A0F;
    
    /* Premium Gradients */
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    --gradient-3: linear-gradient(135deg, #FF006E 0%, #FF4D00 100%);
    --gradient-4: linear-gradient(135deg, #8B5CF6 0%, #D946EF 100%);
    --gradient-5: linear-gradient(135deg, #00F0FF 0%, #0066FF 50%, #8B5CF6 100%);
    
    /* Glass Effect - More Premium */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
    --glass-hover-bg: rgba(255, 255, 255, 0.06);
    
    /* Typography - Premium Fonts */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    
    /* Spacing & Sizing */
    --border-radius: 20px;
    --border-radius-sm: 12px;
    --border-radius-lg: 30px;
}

body {
    font-family: var(--font-main);
    background: var(--ps-dark-bg);
    color: var(--ps-white);
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ============================================
   ANIMATED GRADIENT BACKGROUND
   ============================================ */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(ellipse at 50% 0%, 
        rgba(0, 102, 255, 0.15) 0%, 
        rgba(0, 0, 0, 1) 50%),
        radial-gradient(ellipse at 100% 100%, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(0, 0, 0, 1) 50%),
        radial-gradient(ellipse at 0% 100%, 
        rgba(0, 212, 255, 0.1) 0%, 
        rgba(0, 0, 0, 1) 50%),
        #000000;
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { 
        background-position: 0% 50%, 100% 100%, 0% 100%; 
    }
    50% { 
        background-position: 100% 50%, 0% 0%, 100% 0%; 
    }
}

/* ============================================
   PARTICLES CONTAINER
   ============================================ */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* ============================================
   GLASSMORPHISM EFFECT
   ============================================ */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.glass-effect:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 3.25rem;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    animation: navSlideDown 0.6s ease;
    transition: top 0.3s ease;
}

@keyframes navSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ps-logo {
    filter: drop-shadow(0 0 10px rgba(0, 112, 204, 0.5));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-display);
    background: var(--gradient-5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-5);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--ps-white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--ps-white);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-btn:hover {
    background: var(--glass-bg);
    transform: scale(1.1);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gradient-3);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.cta-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    color: var(--ps-white);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.cta-btn .btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ============================================
   RIPPLE EFFECT
   ============================================ */
.ripple-btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem 4rem;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.75;
    letter-spacing: -0.01em;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.primary-btn {
    padding: 1.125rem 2.25rem;
    border-radius: 50px;
    border: none;
    background: var(--gradient-5);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.3);
    letter-spacing: -0.01em;
}

.primary-btn .btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 102, 255, 0.5);
}

.primary-btn:hover .btn-icon {
    transform: translateX(4px);
}

.secondary-btn {
    padding: 1.125rem 2.25rem;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.secondary-btn .btn-icon {
    width: 20px;
    height: 20px;
}

.secondary-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Floating Cards */
.hero-visual {
    position: relative;
    height: 600px;
}

.floating-card {
    position: absolute;
    padding: 2rem;
    border-radius: 20px;
    min-width: 200px;
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 40%;
    right: 5%;
    animation-delay: 2s;
}

.floating-card.card-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--ps-neon-blue);
    filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.6));
}

.card-icon i {
    width: 48px;
    height: 48px;
    stroke-width: 1.5px;
}

.floating-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.floating-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.price {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-display);
    background: var(--gradient-5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 20px;
    height: 20px;
    color: var(--ps-neon-blue);
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--ps-neon-blue), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(8px); opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   STATS SECTION WITH CHARTS
   ============================================ */
.stats-section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 800;
    font-family: var(--font-display);
    letter-spacing: -0.03em;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.stat-chart {
    height: 100px;
    margin-top: 1rem;
}

.stat-chart canvas {
    max-height: 100%;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    padding: 6rem 2rem;
}

.controls-bar {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 3rem;
}

.search-wrapper {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3.5rem;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.search-input:focus {
    outline: none;
    border-color: var(--ps-neon-blue);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.1);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.category-chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.chip {
    padding: 0.625rem 1.25rem;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.chip:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: white;
}

.chip.active {
    background: var(--gradient-5);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.sort-wrapper {
    position: relative;
}

.sort-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    z-index: 1;
}

.sort-select {
    padding: 0.875rem 1.25rem 0.875rem 3rem;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sort-select:focus {
    outline: none;
    border-color: var(--ps-neon-blue);
    background: rgba(255, 255, 255, 0.06);
}

.sort-select option {
    background: var(--ps-card-bg);
    color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.product-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: var(--gradient-2);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
}

.product-badge.hot {
    background: var(--gradient-3);
}

.product-image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.product-placeholder {
    font-size: 5rem;
    color: var(--ps-neon-blue);
    filter: drop-shadow(0 0 40px rgba(0, 240, 255, 0.6));
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-placeholder {
    transform: scale(1.1) rotate(5deg);
}

.gradient-bg-2 {
    animation: gradientShift 10s ease infinite;
}

.product-info {
    padding: 2rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.product-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.product-price {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-display);
    background: var(--gradient-5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.add-cart-btn, .affiliate-btn {
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    border: none;
    background: var(--gradient-2);
    color: white;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.add-cart-btn:hover, .affiliate-btn:hover {
    background: var(--gradient-5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: var(--ps-white);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: var(--ps-blue);
    opacity: 1;
}

/* ============================================
   FEATURED SECTION
   ============================================ */
.featured-section {
    padding: 6rem 2rem;
}

.featured-content {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 30px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    background: var(--gradient-3);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.tag-icon {
    width: 16px;
    height: 16px;
}

.featured-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    letter-spacing: -0.03em;
}

.featured-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1875rem;
    margin-bottom: 2.5rem;
    line-height: 1.75;
    font-weight: 400;
}

.featured-btn {
    padding: 1.125rem 2.5rem;
    border-radius: 50px;
    border: none;
    background: var(--gradient-5);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.3);
}

.featured-btn .btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 102, 255, 0.5);
}

.featured-btn:hover .btn-icon {
    transform: translateX(4px);
}

.featured-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-orb {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-2);
    filter: blur(60px);
    opacity: 0.6;
    animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 6rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-6px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--ps-neon-blue);
    filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.6));
}

.feature-icon i {
    width: 56px;
    height: 56px;
    stroke-width: 1.5px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    font-size: 1rem;
    font-weight: 400;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    padding: 6rem 2rem;
}

.newsletter-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 4.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.newsletter-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    letter-spacing: -0.03em;
}

.newsletter-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1875rem;
    margin-bottom: 3rem;
    line-height: 1.75;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.input-wrapper {
    position: relative;
    flex: 1;
}

.input-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

.newsletter-input {
    width: 100%;
    padding: 1.125rem 1.5rem 1.125rem 3.75rem;
    border-radius: 50px;
    border: none;
    outline: none;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-input:focus {
    box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.1);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    padding: 1.125rem 2.25rem;
    border-radius: 50px;
    border: none;
    background: var(--gradient-5);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.3);
}

.newsletter-btn .btn-icon {
    width: 18px;
    height: 18px;
}

.newsletter-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 102, 255, 0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 5rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.875rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-col a:hover {
    color: var(--ps-neon-blue);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn i {
    width: 20px;
    height: 20px;
}

.social-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9375rem;
    font-weight: 500;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 2rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .controls-bar {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-chips {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    body, html {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    /* Disclosure Bar */
    .disclosure-inner {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .disclosure-text {
        display: none;
    }
    
    .disclosure-link {
        font-size: 0.75rem;
    }
    
    /* Navigation */
    .navbar {
        top: 2.75rem;
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 8rem 1.5rem 3rem;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.0625rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }
    
    .products-section,
    .featured-section,
    .features-section,
    .newsletter-section {
        padding: 4rem 1.5rem;
    }
    
    /* Controls Bar */
    .controls-bar {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-wrapper {
        width: 100%;
        order: 0;
    }
    
    .category-chips {
        order: 2;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-chips::-webkit-scrollbar {
        height: 3px;
    }
    
    .category-chips::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }
    
    .category-chips::-webkit-scrollbar-thumb {
        background: var(--ps-neon-blue);
        border-radius: 10px;
    }
    
    .chip {
        flex-shrink: 0;
    }
    
    .sort-wrapper {
        order: 1;
        width: 100%;
    }
    
    .sort-select {
        width: 100%;
    }
    
    /* Product Grid */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .product-card {
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
    }
    
    .product-image::before {
        width: 150px;
        height: 150px;
    }
    
    .product-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .affiliate-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
    }
    
    /* Featured Section */
    .featured-content {
        padding: 2.5rem 1.5rem;
        text-align: center;
    }
    
    .featured-title {
        font-size: 2.25rem;
    }
    
    .featured-desc {
        font-size: 1rem;
    }
    
    .featured-visual {
        height: 200px;
    }
    
    .featured-orb {
        width: 200px;
        height: 200px;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    /* Newsletter */
    .newsletter-card {
        padding: 2.5rem 1.5rem;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-desc {
        font-size: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-content {
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    /* Extra mobile safety */
    * {
        max-width: 100%;
    }
    
    .container,
    .nav-container,
    .hero-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Disclosure Bar */
    .disclosure-inner {
        padding: 0.625rem 0.75rem;
        font-size: 0.6875rem;
        gap: 0.375rem;
    }
    
    .affiliate-badge {
        font-size: 0.625rem;
        padding: 0.2rem 0.5rem;
    }
    
    .disclosure-link {
        font-size: 0.6875rem;
    }
    
    .inline-icon {
        width: 12px;
        height: 12px;
    }
    
    /* Navigation */
    .navbar {
        top: 2.5rem;
    }
    
    .ps-logo {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 0.9375rem;
    }
    
    .cta-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
    
    .btn-icon {
        width: 16px !important;
        height: 16px !important;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 7rem 1rem 2rem;
        min-height: 85vh;
    }
    
    .hero-text {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .primary-btn,
    .secondary-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        font-size: 0.75rem;
        gap: 0.5rem;
    }
    
    .scroll-mouse {
        width: 16px;
        height: 16px;
    }
    
    .scroll-line {
        height: 30px;
    }
    
    /* Sections */
    .section-title {
        font-size: 1.875rem;
        margin-bottom: 2rem;
    }
    
    .products-section,
    .featured-section,
    .features-section,
    .newsletter-section {
        padding: 3rem 1rem;
    }
    
    /* Controls Bar */
    .controls-bar {
        padding: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .search-input {
        padding: 0.875rem 1rem 0.875rem 3rem;
        font-size: 0.875rem;
        width: 100%;
    }
    
    .search-icon {
        left: 1rem;
        width: 18px;
        height: 18px;
    }
    
    .category-chips {
        gap: 0.375rem;
        margin: 0 -0.75rem;
        padding: 0 0.75rem 0.5rem;
    }
    
    .chip {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
        white-space: nowrap;
    }
    
    .sort-select {
        padding: 0.75rem 1rem 0.75rem 2.75rem;
        font-size: 0.875rem;
    }
    
    /* Product Cards */
    .product-image {
        height: 200px;
    }
    
    .product-image::before {
        width: 120px;
        height: 120px;
    }
    
    .product-info {
        padding: 1.25rem;
    }
    
    .product-title {
        font-size: 1.125rem;
        word-wrap: break-word;
    }
    
    .product-desc {
        font-size: 0.8125rem;
    }
    
    .product-price {
        font-size: 1.375rem;
    }
    
    .product-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .affiliate-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
        white-space: nowrap;
    }
    
    .affiliate-btn i {
        width: 14px !important;
        height: 14px !important;
    }
    
    /* Featured Section */
    .featured-content {
        padding: 2rem 1rem;
    }
    
    .featured-tag {
        font-size: 0.625rem;
        padding: 0.5rem 1rem;
    }
    
    .featured-title {
        font-size: 1.75rem;
    }
    
    .featured-desc {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
    
    .featured-btn {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }
    
    .featured-visual {
        height: 150px;
    }
    
    .featured-orb {
        width: 150px;
        height: 150px;
    }
    
    /* Features */
    .feature-card {
        padding: 1.75rem 1.25rem;
    }
    
    .feature-icon i {
        width: 48px !important;
        height: 48px !important;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
    }
    
    .feature-card p {
        font-size: 0.9375rem;
    }
    
    /* Newsletter */
    .newsletter-card {
        padding: 2rem 1rem;
        max-width: 100%;
    }
    
    .newsletter-title {
        font-size: 1.625rem;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
    
    .newsletter-desc {
        font-size: 0.875rem;
        margin-bottom: 1.75rem;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .newsletter-input {
        padding: 0.875rem 1rem 0.875rem 3rem;
        font-size: 0.875rem;
        width: 100%;
    }
    
    .input-icon {
        left: 1rem;
        width: 18px;
        height: 18px;
    }
    
    .newsletter-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.875rem;
        width: 100%;
    }
    
    .newsletter-btn .btn-icon {
        width: 16px !important;
        height: 16px !important;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-col a:hover {
        padding-left: 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-btn {
        width: 44px;
        height: 44px;
    }
    
    .footer-bottom {
        font-size: 0.875rem;
        padding-top: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    /* 3D Viewer */
    .viewer-container {
        width: 95%;
        height: 90vh;
        padding: 1rem;
    }
    
    .viewer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .viewer-3d {
        height: 300px;
    }
    
    .viewer-title {
        font-size: 1.5rem;
    }
    
    .viewer-controls {
        flex-wrap: wrap;
    }
    
    .viewer-actions {
        position: sticky;
        bottom: 0;
        background: rgba(10, 10, 15, 0.95);
        padding: 1rem;
        margin: 0 -1rem -1rem;
        border-radius: 0 0 30px 30px;
    }
    
    .view-3d-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ============================================
   AUDIO CONTROLS
   ============================================ */
.audio-controls {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideInRight 0.6s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(200px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.audio-toggle {
    background: transparent;
    border: none;
    color: var(--ps-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.audio-toggle:hover {
    transform: scale(1.1);
    color: var(--ps-blue);
}

.audio-toggle.muted .audio-icon {
    opacity: 0.5;
}

.audio-toggle.muted .audio-icon path:last-child {
    display: none;
}

.audio-visualizer {
    width: 80px;
    height: 30px;
    position: relative;
}

#audioVisualizer {
    width: 100%;
    height: 100%;
}

.audio-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ============================================
   3D PRODUCT VIEWER MODAL
   ============================================ */
.product-viewer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-viewer-modal.active {
    display: flex;
    opacity: 1;
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.viewer-container {
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    border-radius: 30px;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.close-viewer {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-viewer:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.viewer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    height: 100%;
}

.viewer-3d {
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.viewer-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.viewer-title {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.viewer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.viewer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.viewer-controls {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.viewer-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.color-btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.color-btn.active {
    background: var(--gradient-2);
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.viewer-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

.viewer-btn.primary {
    background: var(--gradient-2);
    font-size: 1rem;
}

.viewer-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 112, 204, 0.4);
}

.viewer-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
}

.viewer-instructions {
    text-align: center;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* View 3D Button on Product Cards */
.view-3d-btn {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: none;
    background: var(--gradient-2);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.view-3d-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 112, 204, 0.4);
}

/* ============================================
   CUSTOM ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.slide-up {
    transform: translateY(50px);
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Loading State */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    to { left: 100%; }
}

