/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-card: #111111;
    --primary: #FFD700;
    --secondary: #FFA500;
    --accent: #FFDF00;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --border: #332b00;
    --glow-intensity: 0 0 25px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Cursor (Disabled) */
.cursor-dot, .cursor-outline {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 10px var(--primary) inset, 0 0 10px var(--primary);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-hover {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 215, 0, 0.1);
    border-color: var(--accent);
}

/* Grid Background */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    pointer-events: none;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 60px;
    height: 60px;
    background-image: url('images/robux-gold.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent !important;
    border-radius: 0;
    animation: rain-particle linear infinite;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8));
    z-index: -1;
    opacity: 0.7;
}

.particle:nth-child(even) {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.particle:nth-child(3n) {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.9));
}

.particle:nth-child(1) { left: 10%; top: -10%; animation-duration: 4s; }
.particle:nth-child(2) { left: 20%; top: -20%; animation-delay: 2s; animation-duration: 5s; }
.particle:nth-child(3) { left: 30%; top: -5%; animation-delay: 1s; animation-duration: 3.5s; }
.particle:nth-child(4) { left: 40%; top: -15%; animation-delay: 3s; animation-duration: 4.5s; }
.particle:nth-child(5) { left: 50%; top: -10%; animation-delay: 0.5s; animation-duration: 4s; }
.particle:nth-child(6) { left: 60%; top: -25%; animation-delay: 2.5s; animation-duration: 5.5s; }
.particle:nth-child(7) { left: 70%; top: -5%; animation-delay: 1.5s; animation-duration: 3.8s; }
.particle:nth-child(8) { left: 80%; top: -20%; animation-delay: 3.5s; animation-duration: 4.2s; }
.particle:nth-child(9) { left: 90%; top: -15%; animation-delay: 0.8s; animation-duration: 4.8s; }
.particle:nth-child(10) { left: 15%; top: -10%; animation-delay: 2.2s; animation-duration: 4s; }
.particle:nth-child(11) { left: 25%; top: -25%; animation-delay: 1.2s; animation-duration: 5s; }
.particle:nth-child(12) { left: 35%; top: -5%; animation-delay: 3.2s; animation-duration: 3.6s; }
.particle:nth-child(13) { left: 45%; top: -20%; animation-delay: 0.3s; animation-duration: 4.5s; }
.particle:nth-child(14) { left: 55%; top: -15%; animation-delay: 2.8s; animation-duration: 4.1s; }
.particle:nth-child(15) { left: 65%; top: -10%; animation-delay: 1.8s; animation-duration: 4.9s; }
.particle:nth-child(16) { left: 75%; top: -25%; animation-delay: 3.8s; animation-duration: 5.2s; }
.particle:nth-child(17) { left: 85%; top: -5%; animation-delay: 0.7s; animation-duration: 3.7s; }
.particle:nth-child(18) { left: 95%; top: -20%; animation-delay: 2.7s; animation-duration: 4.6s; }
.particle:nth-child(19) { left: 5%; top: -15%; animation-delay: 1.7s; animation-duration: 4.3s; }
.particle:nth-child(20) { left: 75%; top: -10%; animation-delay: 3.3s; animation-duration: 5s; }

@keyframes rain-particle {
    0% { transform: translateY(-20vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateY(120vh) rotate(360deg); opacity: 0; }
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
    padding-top: 1.5rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-logo .logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 1px;
}

.nav-badge {
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--primary);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-pills {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 0.3rem;
    backdrop-filter: blur(10px);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.icon-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.currency-selector select.pill-select {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}

.currency-selector select.pill-select:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-top-text {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
}

.glow-text {
    background: linear-gradient(to right, #ffffff, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 165, 0, 0.4);
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.btn-primary.glow-btn,
.btn-secondary.outline-btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: uppercase;
}

.btn-primary.glow-btn {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: #111;
    border: none;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.btn-primary.glow-btn:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    transform: translateY(-2px);
}

.btn-secondary.outline-btn {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary.outline-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-tags {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tag.pill-tag {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.05) 40%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(50px);
}

/* Marquee Styles */
.marquee-container {
    background: var(--bg-secondary);
    color: var(--primary);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transform: rotate(-2deg) scale(1.05);
    margin: 60px 0;
    z-index: 10;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.marquee-content span {
    margin: 0 30px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    opacity: 0.8;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* Products Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
}

.product-image.pack-bg {
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.05));
    position: relative;
    overflow: hidden;
    height: 150px;
}

.product-image.pack-bg::after {
    content: '';
    width: 80px;
    height: 80px;
    background-image: url('images/robux-gold.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    filter: drop-shadow(0 0 15px var(--primary));
    animation: pulse-coin 2s infinite alternate;
}

@keyframes pulse-coin {
    0% { transform: translate(-50%, -50%) scale(1); filter: drop-shadow(0 0 10px var(--primary)); }
    100% { transform: translate(-50%, -50%) scale(1.1); filter: drop-shadow(0 0 20px var(--accent)); }
}

.glow-badge {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #111;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    z-index: 10;
}

.product-content {
    padding: 1.2rem;
}

.product-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.btn-buy {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #111;
    border: none;
    padding: 0.8rem;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-buy:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Features Section */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-shadow: var(--glow-intensity) var(--primary);
}

.feature-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-secondary);
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo .logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    color: var(--primary);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        margin-top: 150px;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Reverse Marquee */
.marquee-container.reverse {
    margin: 0 0 60px 0;
    transform: rotate(1deg) scale(1.05);
    background: var(--bg-card);
    border-color: rgba(255, 215, 0, 0.2);
}

.marquee-content.reverse-content {
    animation: marquee-reverse 25s linear infinite;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}

.marquee-content.reverse-content span {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

@keyframes marquee-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Stock Counter */
.stock-counter {
    color: #ff4444;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
    0%, 100% { opacity: 1; text-shadow: 0 0 5px rgba(255, 0, 0, 0.5); }
    50% { opacity: 0.7; text-shadow: none; }
}

/* Live Users Widget */
.live-users-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1000;
    backdrop-filter: blur(5px);
}
.pulsing-dot {
    width: 10px;
    height: 10px;
    background-color: #ff3333;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff3333;
    animation: pulse-dot 1.5s infinite alternate;
}
@keyframes pulse-dot {
    from { opacity: 0.5; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1.2); }
}

/* Particle Explosion */
.explosion-particle {
    position: fixed;
    width: 20px;
    height: 20px;
    background-image: url('images/robux-gold.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 9999;
    animation: explode 1s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes explode {
    0% { transform: scale(0) rotate(0deg); opacity: 1; }
    100% { transform: scale(1.5) translate(var(--tx), var(--ty)) rotate(var(--rot)); opacity: 0; }
}

/* Orders Section */
.orders-section {
    background: var(--bg-primary);
    position: relative;
    z-index: 10;
}

.orders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .orders-grid {
        grid-template-columns: 1fr;
    }
}

/* Order Tracker */
.order-tracker {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 2rem;
}

.order-tracker h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.tracker-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tracker-input-group input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    outline: none;
}

.tracker-input-group input:focus {
    border-color: var(--primary);
}

.tracker-input-group button {
    padding: 0.8rem 1.5rem;
}

.tracker-status {
    margin-top: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

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

.loading-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0 0 10px var(--primary);
    transition: width 0.3s ease;
}

/* Live Recent Orders Feed */
.recent-orders {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 2rem;
}

.recent-orders h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.orders-feed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
}

.orders-feed::-webkit-scrollbar {
    width: 6px;
}
.orders-feed::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.feed-item {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--primary);
    padding: 1rem;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideInLeft 0.5s ease;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.feed-time {
    color: var(--text-secondary);
    font-size: 0.75rem;
    min-width: 70px;
}

.feed-user {
    font-weight: 700;
    color: var(--text-primary);
}

.feed-action {
    color: var(--primary);
}

/* Reviews Wall */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
}

.review-info h4 {
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 0.2rem;
}

.stars {
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.review-card p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}
