/* Homepage New Design - Complete Styles */

/* Enhanced Hero Section */
.hero-enhanced {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 25%, #312e81 50%, #1e1b4b 75%, #0f172a 100%);
    background-size: 400% 400%;
    animation: gradientWave 20s ease infinite;
    z-index: 0;
}

@keyframes gradientWave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(99, 102, 241, 0.3) 0%, transparent 50%);
    animation: particlesMove 25s ease-in-out infinite;
}

@keyframes particlesMove {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 30px); }
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: badgePulse 2s ease-in-out infinite;
}

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

.hero-badge i {
    animation: fireFlicker 1.5s ease-in-out infinite;
}

@keyframes fireFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.gradient-text-animated {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #8B5CF6 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

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

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.btn-hero-secondary {
    background: var(--card-bg);
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-hero-secondary:hover {
    border-color: #8B5CF6;
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-3px);
}

/* Section Header New */
.section-header-new {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-new.centered {
    text-align: center;
}

.section-header-new h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-header-new h2 i {
    color: #8B5CF6;
}

.section-header-new p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

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

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #8B5CF6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    gap: 0.75rem;
}

/* Featured Carousel */
.featured-carousel-section {
    padding: 4rem 0;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border);
}

.carousel-slide-image {
    flex: 1;
    height: 400px;
}

.carousel-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide-content {
    flex: 1;
    padding: 3rem;
}

.carousel-slide-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #EF4444;
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.carousel-slide-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.carousel-slide-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.carousel-price-current {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-price-old {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: var(--text-secondary);
}

.carousel-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.carousel-slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #8B5CF6;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #8B5CF6;
    width: 30px;
    border-radius: 6px;
}

/* Quick Categories */
.quick-categories-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.categories-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card-new {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-card-new:hover {
    transform: translateY(-10px);
    border-color: #8B5CF6;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.category-card-new:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-card-new h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.category-card-new p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Trending Section */
.trending-section {
    padding: 4rem 0;
}

.games-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.fire-animated {
    animation: fireFlicker 1.5s ease-in-out infinite;
}

.sparkle-animated {
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Special Offers Banner */
.special-offers-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.offers-banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
}

.offers-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #EF4444;
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.offers-text h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.discount-big {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offers-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.countdown-timer {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.countdown-item {
    text-align: center;
    background: rgba(139, 92, 246, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
}

.countdown-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #8B5CF6;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 800;
    color: #8B5CF6;
    display: flex;
    align-items: center;
}

.btn-offers {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-offers:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.offers-image {
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

.offers-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Why Choose Us */
.why-choose-section {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #8B5CF6;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(360deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Latest Section */
.latest-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
}

/* Newsletter */
.newsletter-section {
    padding: 4rem 0;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 4rem 3rem;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.newsletter-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.newsletter-form input {
    flex: 1;
    min-width: 280px;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #8B5CF6;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

/* Cloudflare Turnstile Styling */
#turnstile-container {
    margin: 1rem auto;
    display: flex;
    justify-content: center;
    min-height: 0;
    transition: all 0.3s ease;
}

#turnstile-container:empty {
    display: none;
}

.newsletter-privacy {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .categories-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offers-banner-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .categories-grid-new {
        grid-template-columns: 1fr;
    }
    
    .games-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .carousel-slide {
        flex-direction: column;
    }
    
    .carousel-slide-image {
        height: 250px;
    }
}
/* React Design Hero Section */
.hero-react-design {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background), var(--card-bg), var(--background));
    padding: 5rem 0;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.hero-title-react {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.hero-gradient-text {
    display: block;
    margin-top: 0.5rem;
    background: linear-gradient(90deg, var(--primary), var(--primary-glow), var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.hero-subtitle-react {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-hero-react {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.btn-hero-react.primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-hero-react.primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-hero-react.outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-hero-react.outline:hover {
    background: var(--card-bg);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-title-react {
        font-size: 2rem;
    }
    
    .hero-subtitle-react {
        font-size: 1rem;
    }
    
    .btn-hero-react {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title-react {
        font-size: 1.75rem;
    }
    
    .hero-buttons-react {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-hero-react {
        width: 100%;
    }
}

/* Live Activity Bar */
.live-activity-bar {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    padding: 0.75rem 0;
    backdrop-filter: blur(10px);
}

.live-activity-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.live-activity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.live-activity-item strong {
    color: #fff;
    font-weight: 700;
}

.live-pulse {
    color: #10b981;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(139, 92, 246, 0.2);
}

.trust-badge i {
    font-size: 1.5rem;
    color: #8b5cf6;
}

.trust-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Button Shine Effect */
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20%, 100% { left: 100%; }
}

.btn-hero-primary {
    position: relative;
    overflow: hidden;
}

/* Banner Enhancements */
.banner-urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #fff;
    animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

.banner-urgency i {
    animation: clockTick 1s ease-in-out infinite;
}

@keyframes clockTick {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.banner-stock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.banner-stock i {
    color: #10b981;
}

.cta-arrow {
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.banner-cta:hover .cta-arrow {
    transform: translateX(5px);
}

/* Hot Badge */
.hot-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-left: 0.5rem;
    animation: hotBadgePulse 1.5s ease-in-out infinite;
}

@keyframes hotBadgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

/* Recent Purchases Popup */
.recent-purchases-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    min-width: 280px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateX(-120%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.recent-purchases-popup.show {
    opacity: 1;
    transform: translateX(0);
}

.purchase-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.purchase-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    font-size: 1.2rem;
    color: #fff;
}

.purchase-info {
    flex: 1;
}

.purchase-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.purchase-game {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.purchase-game strong {
    color: #8b5cf6;
}

.purchase-time {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

/* Social Proof Section */
.social-proof-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.social-proof-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.social-stat {
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.social-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

.stat-icon {
    font-size: 1.8rem;
    color: #3b82f6;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Section Badges */
.section-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #ef4444, #f97316);
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    margin-left: 0.5rem;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

/* Category Badges */
.category-popular {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-new {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-card-new {
    position: relative;
}

/* Feature Card Badges */
.feature-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

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

/* Newsletter Enhancements */
.newsletter-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-badge {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

.newsletter-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.newsletter-benefits span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.newsletter-benefits i {
    color: #10b981;
    font-size: 1rem;
}

.newsletter-content strong {
    color: #fbbf24;
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .live-activity-content {
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .recent-purchases-popup {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        min-width: auto;
    }
    
    .social-proof-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .newsletter-benefits {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .section-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .live-activity-item {
        font-size: 0.75rem;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   NEWSLETTER SUCCESS STATE STYLES
   ============================================ */

.newsletter-success-content {
    animation: fadeInScale 0.5s ease-out;
    text-align: center;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.newsletter-success-icon {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 0.75rem;
    animation: successPulse 1s ease-out;
}

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

.newsletter-success-content h2 {
    font-size: 1.5rem;
    color: var(--text);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.newsletter-success-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0 0 0.75rem 0;
}

.newsletter-success-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #667eea;
    margin: 0 auto 1.25rem auto;
    max-width: fit-content;
    word-break: break-all;
}

.newsletter-success-steps {
    text-align: left;
    margin: 1rem auto;
    max-width: 600px;
}

.newsletter-success-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border-left: 3px solid #667eea;
    transition: all 0.3s ease;
}

.newsletter-success-step:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 12px rgba(102, 126, 234, 0.15);
}

.step-number {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.newsletter-success-step strong {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.4;
}

.newsletter-warning {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 3px solid #f59e0b;
    padding: 0.75rem;
    border-radius: 8px;
    margin: 1rem auto 0;
    max-width: 600px;
    text-align: left;
}

[data-theme="dark"] .newsletter-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.15) 100%);
}

.newsletter-warning i {
    font-size: 1.125rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.newsletter-warning-text {
    flex: 1;
}

.newsletter-warning-text p {
    margin: 0;
    color: #78350f;
    line-height: 1.5;
    font-size: 0.85rem;
}

[data-theme="dark"] .newsletter-warning-text p {
    color: #fde68a;
}

.newsletter-warning-text .highlight-yellow {
    color: #92400e;
    font-weight: 700;
    background: rgba(251, 191, 36, 0.3);
    padding: 0.125rem 0.375rem;
    border-radius: 3px;
}

[data-theme="dark"] .newsletter-warning-text .highlight-yellow {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.2);
}

.newsletter-benefits-success {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 0.875rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    min-width: 100px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-item i {
    font-size: 1.375rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-item span {
    font-weight: 600;
    color: var(--text);
    font-size: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .newsletter-success-icon {
        font-size: 4rem;
    }
    
    .newsletter-success-content h2 {
        font-size: 1.75rem;
    }
    
    .newsletter-success-subtitle {
        font-size: 1rem;
    }
    
    .newsletter-success-email {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
    
    .newsletter-success-step {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .step-content strong {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .newsletter-warning {
        padding: 1.25rem;
    }
    
    .newsletter-benefits-success {
        gap: 1rem;
    }
    
    .benefit-item {
        min-width: 110px;
        padding: 0.75rem;
    }
    
    .benefit-item i {
        font-size: 1.5rem;
    }
    
    .benefit-item span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .newsletter-success-icon {
        font-size: 3rem;
    }
    
    .newsletter-success-content h2 {
        font-size: 1.5rem;
    }
    
    .newsletter-success-email {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    .newsletter-success-step {
        padding: 1rem;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}

