:root {
    --bg-color: #050505;
    --text-main: #ffffff;
    --text-muted: #a3a3a3;
    --primary: #e50914; /* Deep Red */
    --primary-hover: #b9090b;
    --secondary: #121212;
    --glass-bg: rgba(18, 18, 18, 0.7);
    --glass-border: rgba(229, 9, 20, 0.25);
    --accent-1: #ff0000;
    --accent-2: #800000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(229, 9, 20, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(229, 9, 20, 0.08), transparent 25%);
}

.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    display: none;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-1);
    top: -150px;
    left: -150px;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: var(--accent-2);
    bottom: -200px;
    right: -150px;
    animation-delay: -7s;
}

@keyframes floatComplex {
    0% { transform: translate(0, 0) scale(1); opacity: 0.2; }
    33% { transform: translate(100px, 50px) scale(1.1); opacity: 0.4; }
    66% { transform: translate(-50px, 150px) scale(0.9); opacity: 0.3; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
}

.glass {
    background: var(--glass-bg);
    /* backdrop-filter: blur(16px); Removed for performance */
    -webkit-/* backdrop-filter: blur(16px); Removed for performance */
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
    animation: slideDown 0.8s ease forwards;
}

.nav-brand {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    font-family: 'Press Start 2P', cursive;
}

.nav-brand span {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(229, 9, 20, 0.5);
}

.top-banner {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 101;
}

.search-container {
    flex-grow: 1;
    max-width: 400px;
    margin: 0 2rem;
}

.search-input {
    width: 100%;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.2);
    background: rgba(229, 9, 20, 0.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--primary);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.active {
    color: #fff;
    text-shadow: 0 0 8px rgba(255,255,255,0.4);
}

.badge {
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    padding: 0.15rem 0.4rem;
    border-radius: 12px;
    position: absolute;
    top: -10px;
    right: -20px;
    box-shadow: 0 0 10px var(--primary);
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(229, 9, 20, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); }
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.hero {
    text-align: center;
    margin: 6rem 0;
    position: relative;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255,255,255,0.1);
    font-family: 'Press Start 2P', cursive;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Reviews Marquee */
.reviews-marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
    margin-bottom: 5rem;
    position: relative;
    /* Fades out the left and right edges for a smooth entrance/exit */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.reviews-marquee {
    display: flex;
    gap: 2rem;
    width: max-content;
    /* Scroll right by starting at -50% and moving to 0 */
    animation: scrollRight 25s linear infinite;
}

.reviews-marquee:hover {
    animation-play-state: paused;
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.review-card {
    width: 350px;
    padding: 1.8rem;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(15, 15, 15, 0.9));
    border: 1px solid rgba(229, 9, 20, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary);
    z-index: 10;
}

.review-card .stars {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.review-card p {
    font-size: 1rem;
    color: var(--text-main);
    font-style: italic;
    line-height: 1.6;
}

.review-card .reviewer {
    font-weight: 800;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.btn-primary, .btn-primary-outline, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.4);
}

.btn-primary::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: all 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.6);
}

.btn-primary-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: white;
}

.btn-primary-outline:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.5);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: #222;
    border-color: var(--primary);
}

.btn-discord {
    background: #5865F2;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: none;
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
    color: white;
}

.w-100 {
    width: 100%;
}

/* Shop Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.product-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, rgba(20,20,20,0.8) 0%, rgba(10,10,10,0.9) 100%);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(229, 9, 20, 0.2);
    border-color: rgba(229, 9, 20, 0.3);
}

.product-card:hover::before {
    opacity: 1;
}

.card-img-placeholder {
    height: 200px;
    background: repeating-linear-gradient(45deg, #111, #111 10px, #1a1a1a 10px, #1a1a1a 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-img-placeholder::after {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(229,9,20,0.1) 0%, transparent 70%);
}

.img-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.6;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.price {
    font-size: 1.4rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

/* Auth Pages */
.auth-container {
    max-width: 450px;
    margin: 4rem auto;
    padding: 3rem;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(20,20,20,0.9), rgba(10,10,10,0.9));
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 40px rgba(0,0,0,0.8), inset 0 0 20px rgba(229, 9, 20, 0.05);
}

.auth-tabs {
    display: flex;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-btn.active {
    color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.auth-form h2 {
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-form p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.2);
    background: rgba(229, 9, 20, 0.05);
}

/* Inbox */
.inbox-container {
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(15, 15, 15, 0.8);
}

.inbox-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.4);
}

.inbox-header h2 {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.notification-list {
    list-style: none;
}

.notification-item {
    display: flex;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.notification-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    height: 100%; width: 4px;
    background: transparent;
    transition: background 0.3s ease;
}

.notification-item:hover {
    background: rgba(255, 255, 255, 0.02);
    transform: translateX(5px);
}

.notification-item.unread {
    background: rgba(229, 9, 20, 0.05);
}

.notification-item.unread::before {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.icon-circle.primary { background: rgba(229, 9, 20, 0.15); border-color: var(--primary); color: var(--primary); }
.icon-circle.success { background: rgba(34, 197, 94, 0.15); border-color: #22c55e; color: #22c55e; }
.icon-circle.warning { background: rgba(234, 179, 8, 0.15); border-color: #eab308; color: #eab308; }

.notif-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

.notif-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.time {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* --- NEW SECTIONS --- */

/* Reviews Summary */
.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 6rem;
    padding: 2rem;
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.summary-stats {
    display: flex;
    gap: 4rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: 'Press Start 2P', cursive;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-glow {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-glow:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
    background: rgba(229, 9, 20, 0.1);
}

/* Recent Video Section */
.recent-video {
    text-align: center;
    margin-bottom: 6rem;
}

.video-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    letter-spacing: 1px;
}

.video-header p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    aspect-ratio: 16/9;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    cursor: pointer;
}

.split {
    width: 50%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 3rem;
    background-size: cover;
    background-position: center;
}

.left-split {
    background: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80');
    border-right: 2px solid rgba(255,255,255,0.5);
    filter: grayscale(80%) brightness(0.5);
}

.right-split {
    background: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80');
    filter: brightness(1.2) contrast(1.2) saturate(1.5);
}

.fps-text {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Press Start 2P', cursive;
    text-shadow: 0 5px 20px rgba(0,0,0,1);
    z-index: 2;
}

.fps-text.red { color: #ff0000; }
.fps-text.green { color: #00ff00; }

.play-button-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: #e50914;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    padding-left: 6px;
    box-shadow: 0 0 30px rgba(229, 9, 20, 0.8);
    z-index: 3;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .play-button-center {
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-watch-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background 0.3s ease;
}

.video-thumbnail:hover .youtube-watch-btn {
    background: rgba(0,0,0,1);
}

/* Footer styles */
.site-footer {
    background: #080808;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 5rem 5% 6rem;
    margin-top: 5rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand {
    max-width: 400px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 1.5rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 6rem;
}

.link-column h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: white;
}

.link-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: var(--primary);
}

.footer-seo {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.seo-column {
    flex: 1;
    min-width: 280px;
}

.seo-column h5 {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.seo-column p {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.2);
    line-height: 1.8;
    text-transform: uppercase;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cookie-content strong {
    font-size: 1.1rem;
    color: white;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}



/* =========================================
   PREMIUM DYNAMIC ANIMATIONS
   ========================================= */

/* 1. Floating Background Orbs */
@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}
.glow-orb.orb-1 { animation: orbFloat 15s infinite ease-in-out; }
.glow-orb.orb-2 { animation: orbFloat 18s infinite ease-in-out reverse; }

/* 2. Interactive Product Cards */
.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}
.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(229, 9, 20, 0.3), 0 0 20px rgba(229, 9, 20, 0.2) inset;
    border-color: rgba(229, 9, 20, 0.5);
}

/* Product Image Zoom on Hover */
.product-card .card-img-placeholder {
    transition: transform 0.6s ease;
}
.product-card:hover .card-img-placeholder {
    transform: scale(1.05);
}

/* 3. Button Pulse and Glow */
.btn-primary {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}
.btn-primary:hover::after {
    transform: rotate(45deg) translateX(100%);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(229, 9, 20, 0.4);
    background: #ff1f2e;
}

/* 4. Input Fields Focus Glow */
.input-group input {
    transition: all 0.3s ease;
}
.input-group input:focus {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.3);
    border-color: #e50914;
}

/* 5. Smooth Fade-in on load for everything */
body {
    animation: masterFadeIn 0.8s ease-out;
}
@keyframes masterFadeIn {
    from { opacity: 0; filter: blur(5px); }
    to { opacity: 1; filter: blur(0); }
}

/* Navbar slide down */
.navbar {
    animation: slideDown 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) backwards;
}
@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Smooth list items */
.stat-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.05);
}
