/* ========================================
   SECTION DIVIDER
   ======================================== */

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(59, 130, 246, 0.3) 50%, 
                transparent 100%);
    position: relative;
}

.divider-line::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(59, 130, 246, 0.1) 50%, 
                transparent 100%);
    filter: blur(4px);
}

.divider-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    border: 2px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #3b82f6;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3),
                inset 0 0 20px rgba(59, 130, 246, 0.1);
    animation: dividerPulse 3s ease-in-out infinite;
    position: relative;
}

.divider-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    animation: dividerRipple 2s ease-out infinite;
}

@keyframes dividerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.3),
                    inset 0 0 20px rgba(59, 130, 246, 0.1);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.5),
                    inset 0 0 30px rgba(59, 130, 246, 0.2);
    }
}

@keyframes dividerRipple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* ========================================
   OGE MARKET - MODERN BLUE & WHITE THEME
   ======================================== */

/* Navigation Bar - Modern Pill Style */
.navbar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: none;
    border: none;
    margin-top: 1rem;
}

/* Logo outside navbar */
.logo {
    position: absolute;
    top: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    margin-left: -500px;
    font-size: 1.85rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #93c5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
    transition: all 0.3s;
    z-index: 1001;
}

.logo:hover {
    transform: translateX(-50%) scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.6));
}

/* Navbar Scroll Effect */
.navbar.scrolled {
    padding: 1rem 0;
    background: transparent;
    box-shadow: none;
}

.navbar.scrolled .logo {
    font-size: 1.6rem;
}

.navbar.scrolled .nav-links {
    gap: 0.5rem;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.6) 0%, rgba(13, 18, 32, 0.5) 100%);
    backdrop-filter: blur(25px);
    padding: 0.5rem;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(59, 130, 246, 0.1);
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.65rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Make Browse, Sold, and Reviews look active */
.nav-links a:first-child,
.nav-links a:nth-child(2),
.nav-links a:nth-child(3) {
    color: rgba(255, 255, 255, 1);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(96, 165, 250, 0.25) 100%);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-links a i {
    font-size: 0.85rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.nav-links a:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Hero Section - Split Layout (Text Left, Stats Right) */
.hero-section {
    min-height: 100vh;
    padding: 10rem 2rem 6rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

/* Fade-in Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations to hero elements */
.hero-badge {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-visual {
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

/* Staggered animation for stat cards */
.stat-card:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.stat-card:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.9s both;
}

.stat-card:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 1s both;
}

.stat-card:nth-child(4) {
    animation: fadeInUp 0.6s ease-out 1.1s both;
}

.hero-section::before {
    display: none;
}

.hero-section::after {
    display: none;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-30px, 40px) scale(0.95); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.5rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    transition: all 0.3s;
    margin-left: 0;
}

.hero-badge i {
    color: #3b82f6;
    font-size: 1rem;
}

.hero-badge:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.6);
    transform: translateX(5px);
}

/* pulse-dot removed - replaced with icon */

.hero-title {
    font-size: 5rem;
    font-weight: 950;
    line-height: 1.08;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    text-align: left;
}

.gradient-text {
    display: block;
    margin-top: 0.75rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
}

.dream-text {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

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

.hero-description {
    font-size: 1.35rem;
    color: rgba(224, 231, 248, 0.85);
    margin-bottom: 3rem;
    line-height: 1.75;
    max-width: 550px;
    font-weight: 400;
}

.description-mobile {
    display: none;
}

.description-full {
    display: inline;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Hide floating usernames on desktop */
.floating-usernames {
    display: none;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 1.2rem 2.8rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.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: left 0.5s;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
    filter: brightness(1.15);
}

.btn-primary i {
    animation: arrowBounce 1.2s ease-in-out infinite;
}

.btn-primary:hover i {
    animation: arrowBounceFast 0.6s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(6px);
    }
}

@keyframes arrowBounceFast {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

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

.btn-primary:active {
    transform: translateY(-2px) scale(1.01);
}

.btn-outline {
    background: rgba(13, 18, 32, 0.6);
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    border: 1.5px solid rgba(59, 130, 246, 0.4);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.4s;
}

.btn-outline:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Hero Visual - Modern Pricing Showcase */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-showcase {
    width: 100%;
    max-width: 550px;
}

/* Featured Username Card */
.featured-username {
    background: linear-gradient(135deg, 
                rgba(59, 130, 246, 0.15) 0%, 
                rgba(37, 99, 235, 0.1) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 32px;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 80px rgba(59, 130, 246, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-username::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, 
                transparent, 
                rgba(59, 130, 246, 0.2), 
                transparent);
    animation: rotate 8s linear infinite;
}

.featured-username:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5),
                0 0 100px rgba(59, 130, 246, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.username-showcase {
    padding: 3.5rem 3rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, 
                rgba(10, 14, 26, 0.6) 0%, 
                rgba(13, 18, 32, 0.4) 100%);
    border-radius: 32px 32px 0 0;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, 
                rgba(59, 130, 246, 0.3) 0%, 
                rgba(96, 165, 250, 0.2) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 900;
    color: #60a5fa;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4),
                0 4px 15px rgba(0, 0, 0, 0.3);
}

.featured-badge i {
    color: #60a5fa;
    font-size: 0.95rem;
    filter: drop-shadow(0 0 5px rgba(96, 165, 250, 0.6));
}

.username-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.at-symbol {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(96, 165, 250, 0.4);
    line-height: 1;
}

.username-text {
    font-size: 4.5rem;
    font-weight: 950;
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
    line-height: 1;
    filter: drop-shadow(0 2px 25px rgba(59, 130, 246, 0.5));
}

.username-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(203, 213, 225, 0.9);
    font-weight: 600;
}

.detail-item i {
    font-size: 1.15rem;
    color: #3b82f6;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
    display: inline-block;
}

.username-price {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.price-from {
    font-size: 0.95rem;
    color: rgba(148, 163, 184, 1);
    font-weight: 600;
    letter-spacing: 0.03em;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 950;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    filter: drop-shadow(0 2px 20px rgba(59, 130, 246, 0.6));
}

.username-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 32px 32px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.4),
                0 -2px 0 rgba(59, 130, 246, 0.3) inset;
}

.username-cta:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 1.65rem 2rem;
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.6),
                0 -2px 0 rgba(59, 130, 246, 0.5) inset;
}

.username-cta i {
    transition: transform 0.4s;
}

.username-cta:hover i {
    transform: translateX(5px);
}

/* Remove old styles */
.hero-visual {
    position: relative;
}

.premium-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Live Counter */
.live-counter {
    background: linear-gradient(135deg, rgba(13, 18, 32, 0.8) 0%, rgba(10, 14, 26, 0.6) 100%);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(59, 130, 246, 0.2);
    transition: all 0.5s;
}

.live-counter:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5),
                0 0 80px rgba(59, 130, 246, 0.4);
}

.counter-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    animation: rotate 8s linear infinite;
}

.counter-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.6),
                0 0 80px rgba(239, 68, 68, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.counter-content {
    flex: 1;
}

.counter-number {
    font-size: 4rem;
    font-weight: 950;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 1.1rem;
    color: rgba(224, 231, 248, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.live-indicator {
    position: relative;
    width: 24px;
    height: 24px;
}

.pulse-ring {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 3px solid #10b981;
    border-radius: 50%;
    animation: pulse-ring 1.5s ease-out infinite;
}

.pulse-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Trust Metrics */
.trust-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metric-item {
    background: linear-gradient(135deg, rgba(13, 18, 32, 0.6) 0%, rgba(10, 14, 26, 0.4) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s;
}

.metric-item:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.metric-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px currentColor);
}

.metric-data {
    flex: 1;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.25rem;
}

.metric-title {
    font-size: 0.75rem;
    color: rgba(224, 231, 248, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

/* Activity Feed */
.activity-feed {
    background: linear-gradient(135deg, rgba(13, 18, 32, 0.8) 0%, rgba(10, 14, 26, 0.6) 100%);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s;
}

.activity-feed:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 12px 48px rgba(59, 130, 246, 0.2);
}

.feed-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.feed-header i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.feed-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feed-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
    animation: slideIn 0.5s ease-out;
}

.feed-item:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(5px);
}

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

.feed-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.feed-text {
    flex: 1;
    font-size: 0.95rem;
    color: rgba(224, 231, 248, 0.9);
}

.feed-text strong {
    color: white;
    font-weight: 700;
}

.feed-text .highlight {
    color: #60a5fa;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.feed-time {
    font-size: 0.8rem;
    color: rgba(224, 231, 248, 0.5);
    font-weight: 600;
}

/* Stats Grid - Keep for compatibility but hide */
.hero-visual {
    position: relative;
}

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

.stat-card {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    box-shadow: none;
    cursor: pointer;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
                rgba(59, 130, 246, 0.15) 0%, 
                rgba(59, 130, 246, 0.08) 30%,
                transparent 70%);
    opacity: 0;
    z-index: -1;
    filter: blur(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg,
                transparent 0deg,
                rgba(59, 130, 246, 0.3) 90deg,
                transparent 180deg,
                rgba(59, 130, 246, 0.3) 270deg,
                transparent 360deg);
    opacity: 0;
    z-index: -2;
    filter: blur(60px);
    transition: all 0.8s;
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.stat-card:hover::before {
    opacity: 1;
    filter: blur(50px);
    transform: translate(-50%, -50%) scale(1.5);
    animation: none;
}

.stat-card:hover::after {
    opacity: 1;
    filter: blur(80px);
}

.stat-card:hover {
    transform: translateY(-20px) scale(1.1);
}

.stat-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 0 40px currentColor,
                0 0 80px currentColor,
                inset 0 0 20px rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    filter: drop-shadow(0 0 15px currentColor);
}

.stat-card:hover .stat-icon {
    transform: scale(1.3) rotateY(360deg);
    box-shadow: 0 0 60px currentColor,
                0 0 100px currentColor,
                0 0 140px currentColor,
                inset 0 0 30px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 0 30px currentColor) brightness(1.3);
}

/* Icon Color Variants - Blue Theme */
.stat-icon-primary {
    background: radial-gradient(circle, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.8),
                0 0 80px rgba(59, 130, 246, 0.6),
                inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.stat-card:hover .stat-icon-primary {
    box-shadow: 0 0 60px rgba(59, 130, 246, 1),
                0 0 100px rgba(59, 130, 246, 0.8),
                0 0 140px rgba(59, 130, 246, 0.6),
                inset 0 0 30px rgba(0, 0, 0, 0.2);
}

.stat-icon-success {
    background: radial-gradient(circle, #34d399 0%, #10b981 50%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.8),
                0 0 80px rgba(16, 185, 129, 0.6),
                inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.stat-card:hover .stat-icon-success {
    box-shadow: 0 0 60px rgba(16, 185, 129, 1),
                0 0 100px rgba(16, 185, 129, 0.8),
                0 0 140px rgba(16, 185, 129, 0.6),
                inset 0 0 30px rgba(0, 0, 0, 0.2);
}

.stat-icon-info {
    background: radial-gradient(circle, #38bdf8 0%, #0ea5e9 50%, #0284c7 100%);
    color: #ffffff;
    box-shadow: 0 0 40px rgba(14, 165, 233, 0.8),
                0 0 80px rgba(14, 165, 233, 0.6),
                inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.stat-card:hover .stat-icon-info {
    box-shadow: 0 0 60px rgba(14, 165, 233, 1),
                0 0 100px rgba(14, 165, 233, 0.8),
                0 0 140px rgba(14, 165, 233, 0.6),
                inset 0 0 30px rgba(0, 0, 0, 0.2);
}

.stat-icon-warning {
    background: radial-gradient(circle, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    color: #ffffff;
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.8),
                0 0 80px rgba(245, 158, 11, 0.6),
                inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.stat-card:hover .stat-icon-warning {
    box-shadow: 0 0 60px rgba(245, 158, 11, 1),
                0 0 100px rgba(245, 158, 11, 0.8),
                0 0 140px rgba(245, 158, 11, 0.6),
                inset 0 0 30px rgba(0, 0, 0, 0.2);
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 950;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.8rem;
    display: block;
    line-height: 1;
    animation: numberPulse 2s ease-in-out infinite;
    background-size: 200% 200%;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.3));
}

@keyframes numberPulse {
    0%, 100% { 
        background-position: 0% 50%;
        transform: scale(1);
    }
    50% { 
        background-position: 100% 50%;
        transform: scale(1.05);
    }
}

.stat-card:hover .stat-number {
    animation: none;
    transform: scale(1.15);
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.6));
}

.stat-label {
    color: rgba(224, 231, 248, 0.8);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-label {
    color: #ffffff;
    transform: translateY(-3px);
    letter-spacing: 0.06em;
}

/* Scroll Reveal Animations */
@keyframes scrollReveal {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Platforms Section - Modern Bento Grid */
.platforms-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Animation classes - cards start visible */
.platform-card {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.platform-card:nth-child(1) { transition-delay: 0.1s; }
.platform-card:nth-child(2) { transition-delay: 0.2s; }
.platform-card:nth-child(3) { transition-delay: 0.3s; }
.platform-card:nth-child(4) { transition-delay: 0.4s; }
.platform-card:nth-child(5) { transition-delay: 0.5s; }
.platform-card:nth-child(6) { transition-delay: 0.6s; }

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3.75rem;
    font-weight: 950;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title i {
    color: #3b82f6;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.5));
    font-size: 3rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(224, 231, 248, 0.75);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.platforms-bento {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.platform-card {
    background: transparent;
    backdrop-filter: none;
    border: 1px solid transparent;
    border-radius: 1.5rem;
    padding: 2rem 1.75rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: none;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 1.5rem;
}

.platform-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.5rem;
    padding: 2px;
    background: linear-gradient(135deg, 
                rgba(59, 130, 246, 0.3) 0%, 
                rgba(59, 130, 246, 0.25) 15%,
                rgba(59, 130, 246, 0.2) 30%,
                rgba(59, 130, 246, 0.15) 45%,
                rgba(59, 130, 246, 0.15) 55%,
                rgba(59, 130, 246, 0.2) 70%,
                rgba(59, 130, 246, 0.25) 85%,
                rgba(59, 130, 246, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(59, 130, 246, 0.25);
}

.platform-card:hover::after {
    background: linear-gradient(135deg, 
                rgba(59, 130, 246, 0.5) 0%, 
                rgba(59, 130, 246, 0.45) 15%,
                rgba(59, 130, 246, 0.4) 30%,
                rgba(59, 130, 246, 0.35) 45%,
                rgba(59, 130, 246, 0.35) 55%,
                rgba(59, 130, 246, 0.4) 70%,
                rgba(59, 130, 246, 0.45) 85%,
                rgba(59, 130, 246, 0.5) 100%);
}

.platform-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.platform-icon {
    width: 55px;
    height: 55px;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.platform-card:hover .platform-icon {
    transform: scale(1.08) rotate(5deg);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.platform-badge {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.35);
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(59, 130, 246, 0.9);
    letter-spacing: 0.02em;
}

.platform-info {
    flex: 1;
}

.platform-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
    letter-spacing: -0.01em;
    transition: all 0.3s;
}

.platform-card:hover .platform-name {
    color: #3b82f6;
    transform: translateX(3px);
}

.platform-description {
    font-size: 0.9rem;
    color: rgba(224, 231, 248, 0.65);
    line-height: 1.6;
    transition: all 0.3s;
}

.platform-card:hover .platform-description {
    color: rgba(224, 231, 248, 0.85);
}

.platform-arrow {
    align-self: flex-end;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: rgba(224, 231, 248, 0.5);
    transition: all 0.4s;
    animation: arrowFloat 2s ease-in-out infinite;
}

@keyframes arrowFloat {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(8px);
    }
}

.platform-card:hover .platform-arrow {
    background: rgba(59, 130, 246, 0.8);
    color: white;
    transform: translateX(12px) scale(1.05);
    animation: none;
}

/* Sold Usernames Section - Grid Layout */
.sold-section {
    padding: 8rem 2rem;
    background: transparent;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.sold-container {
    width: 100%;
}

.sold-grid {
    /* Container for marquee: clipped viewport for scrolling track */
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 0;
}

.sold-card {
    background: transparent;
    backdrop-filter: none;
    border: 1px solid transparent;
    border-radius: 1.25rem;
    padding: 1.5rem 1.25rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    /* card sizing inside marquee */
    min-width: 260px;
    flex: 0 0 auto;
}

.sold-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 1.5rem;
}

.sold-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.5rem;
    padding: 2px;
    background: linear-gradient(135deg, 
                rgba(59, 130, 246, 0.3) 0%, 
                rgba(59, 130, 246, 0.25) 15%,
                rgba(59, 130, 246, 0.2) 30%,
                rgba(59, 130, 246, 0.15) 45%,
                rgba(59, 130, 246, 0.15) 55%,
                rgba(59, 130, 246, 0.2) 70%,
                rgba(59, 130, 246, 0.25) 85%,
                rgba(59, 130, 246, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.sold-card:hover::before {
    opacity: 1;
}

.sold-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(59, 130, 246, 0.25);
}

.sold-card:hover::after {
    background: linear-gradient(135deg, 
                rgba(59, 130, 246, 0.5) 0%, 
                rgba(59, 130, 246, 0.45) 15%,
                rgba(59, 130, 246, 0.4) 30%,
                rgba(59, 130, 246, 0.35) 45%,
                rgba(59, 130, 246, 0.35) 55%,
                rgba(59, 130, 246, 0.4) 70%,
                rgba(59, 130, 246, 0.45) 85%,
                rgba(59, 130, 246, 0.5) 100%);
}

.sold-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.sold-platform {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(224, 231, 248, 0.7);
    font-weight: 600;
}

.sold-platform i {
    font-size: 1.1rem;
}

.sold-badge {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    letter-spacing: 0.02em;
}

.sold-username {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
    word-break: break-all;
    position: relative;
    z-index: 1;
    color: white;
}

.sold-price {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

/* Marquee / continuous horizontal scrolling */
.sold-marquee {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    /* animation duration is set dynamically via JS based on content width */
    animation-name: marqueeRight;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.sold-track {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-shrink: 0;
}

@keyframes marqueeRight {
    /* move the combined tracks from -50% to 0 (rightwards) */
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* pause marquee on hover for readability */
.sold-grid:hover .sold-marquee {
    animation-play-state: paused;
}

/* Reviews Section - Grid Layout */
.reviews-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.reviews-grid {
    /* Marquee container: clipped viewport that will hold the scrolling track */
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 0;
}

.reviews-marquee {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
    animation-name: marqueeRight;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
    flex-shrink: 0;
}

/* pause marquee on hover */
.reviews-grid:hover .reviews-marquee {
    animation-play-state: paused;
}

.review-card {
    background: transparent;
    backdrop-filter: none;
    border: 1px solid transparent;
    border-radius: 1.5rem;
    padding: 1.25rem 1rem;
    transition: all 0.28s;
    position: relative;
    overflow: hidden;
}

/* Ensure review cards have stable width inside marquee (smaller footprint) */
.review-card {
    min-width: 280px;
    flex: 0 0 auto;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 1.5rem;
}

.review-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.5rem;
    padding: 2px;
    background: linear-gradient(135deg, 
                rgba(59, 130, 246, 0.3) 0%, 
                rgba(59, 130, 246, 0.25) 15%,
                rgba(59, 130, 246, 0.2) 30%,
                rgba(59, 130, 246, 0.15) 45%,
                rgba(59, 130, 246, 0.15) 55%,
                rgba(59, 130, 246, 0.2) 70%,
                rgba(59, 130, 246, 0.25) 85%,
                rgba(59, 130, 246, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.review-card:hover::before {
    opacity: 1;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(59, 130, 246, 0.25);
}

.review-card:hover::after {
    background: linear-gradient(135deg, 
                rgba(59, 130, 246, 0.5) 0%, 
                rgba(59, 130, 246, 0.45) 15%,
                rgba(59, 130, 246, 0.4) 30%,
                rgba(59, 130, 246, 0.35) 45%,
                rgba(59, 130, 246, 0.35) 55%,
                rgba(59, 130, 246, 0.4) 70%,
                rgba(59, 130, 246, 0.45) 85%,
                rgba(59, 130, 246, 0.5) 100%);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.32);
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.review-date {
    font-size: 0.85rem;
    color: rgba(224, 231, 248, 0.5);
    font-weight: 600;
}

.stars {
    display: flex;
    gap: 0.3rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1rem;
}

review-text {
    color: rgba(224, 231, 248, 0.85);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* Tighter layout on small screens for the reviews marquee */
@media (max-width: 768px) {
    .reviews-grid { padding: 0.5rem 0; }
    /* smaller min-width so more than one review can appear on narrow screens */
    .review-card { min-width: 180px; padding: 1rem 0.6rem; }
    .reviews-marquee, .reviews-track { gap: 1rem; }
    .reviewer-avatar { width: 40px; height: 40px; font-size: 1rem; }
    .reviewer-name { font-size: 0.95rem; }
    .review-text { font-size: 0.9rem; line-height: 1.6; }
}

/* Steps Section - Vertical Timeline */
.steps-section {
    padding: 8rem 2rem;
    background: transparent;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    margin-top: 5rem;
}

.timeline::before {
    display: none;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    grid-template-columns: 1fr auto;
}

.timeline-item:nth-child(even) {
    grid-template-columns: auto 1fr;
}

.timeline-item:nth-child(even) .step-content:first-child {
    order: initial;
}

.timeline-item:nth-child(even) .step-content:last-child {
    text-align: left;
}

.timeline-item:nth-child(odd) .step-content:first-child {
    text-align: right;
}

.step-content {
    background: transparent;
    backdrop-filter: none;
    border: 1px solid transparent;
    border-radius: 1.5rem;
    padding: 2rem 1.75rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 1.5rem;
}

.step-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.5rem;
    padding: 2px;
    background: linear-gradient(135deg, 
                rgba(59, 130, 246, 0.3) 0%, 
                rgba(59, 130, 246, 0.25) 15%,
                rgba(59, 130, 246, 0.2) 30%,
                rgba(59, 130, 246, 0.15) 45%,
                rgba(59, 130, 246, 0.15) 55%,
                rgba(59, 130, 246, 0.2) 70%,
                rgba(59, 130, 246, 0.25) 85%,
                rgba(59, 130, 246, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.step-content:hover::before {
    opacity: 1;
}

.step-content:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 45px rgba(59, 130, 246, 0.25);
}

.step-content:hover::after {
    background: linear-gradient(135deg, 
                rgba(59, 130, 246, 0.5) 0%, 
                rgba(59, 130, 246, 0.45) 15%,
                rgba(59, 130, 246, 0.4) 30%,
                rgba(59, 130, 246, 0.35) 45%,
                rgba(59, 130, 246, 0.35) 55%,
                rgba(59, 130, 246, 0.4) 70%,
                rgba(59, 130, 246, 0.45) 85%,
                rgba(59, 130, 246, 0.5) 100%);
}

.step-icon-wrapper {
    width: clamp(70px, 15vw, 90px);
    height: clamp(70px, 15vw, 90px);
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.5);
    position: relative;
    z-index: 20;
    transition: all 0.4s;
}

.step-icon-wrapper:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.7);
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: clamp(32px, 7vw, 40px);
    height: clamp(32px, 7vw, 40px);
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: 3px solid var(--color-background);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 900;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.5);
}

.step-title {
    font-size: clamp(1.35rem, 3vw, 1.6rem);
    font-weight: 900;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.step-description {
    color: rgba(224, 231, 248, 0.8);
    line-height: 1.8;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* Features Section - Card Grid */
.features-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    background: transparent;
    backdrop-filter: none;
    border: 1px solid transparent;
    border-radius: 1.5rem;
    padding: 2rem 1.75rem;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 1.5rem;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.5rem;
    padding: 2px;
    background: linear-gradient(135deg, 
                rgba(59, 130, 246, 0.3) 0%, 
                rgba(59, 130, 246, 0.25) 15%,
                rgba(59, 130, 246, 0.2) 30%,
                rgba(59, 130, 246, 0.15) 45%,
                rgba(59, 130, 246, 0.15) 55%,
                rgba(59, 130, 246, 0.2) 70%,
                rgba(59, 130, 246, 0.25) 85%,
                rgba(59, 130, 246, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(59, 130, 246, 0.25);
}

.feature-card:hover::after {
    background: linear-gradient(135deg, 
                rgba(59, 130, 246, 0.5) 0%, 
                rgba(59, 130, 246, 0.45) 15%,
                rgba(59, 130, 246, 0.4) 30%,
                rgba(59, 130, 246, 0.35) 45%,
                rgba(59, 130, 246, 0.35) 55%,
                rgba(59, 130, 246, 0.4) 70%,
                rgba(59, 130, 246, 0.45) 85%,
                rgba(59, 130, 246, 0.5) 100%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    transition: all 0.4s;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
    position: relative;
}

.feature-icon i {
    position: relative;
    z-index: 1;
    color: #3b82f6;
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.5));
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(59, 130, 246, 0.15));
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.feature-card:hover .feature-icon i {
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.7));
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.feature-description {
    color: rgba(224, 231, 248, 0.75);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Footer */
footer {
    padding: 4rem 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.15);
    text-align: center;
    background: rgba(13, 18, 32, 0.5);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-text {
    font-size: 0.95rem;
    color: rgba(224, 231, 248, 0.6);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(224, 231, 248, 0.65);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #3b82f6;
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 4.25rem;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 2.5rem;
    }
    
    .timeline-item:nth-child(even) .step-content:first-child {
        order: initial;
    }
    
    .timeline-item .step-content {
        text-align: left !important;
    }
}

@media (max-width: 768px) {
    .logo {
        display: none;
    }
    
    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        margin: 0 !important;
        padding: 0.5rem 1rem !important;
        border-radius: 0 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        border: none !important;
    }
    
    .navbar-container {
        width: 100%;
        padding: 0 !important;
        justify-content: center;
        align-items: center;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        max-width: none !important;
        margin: 0 auto !important;
    }
    
    .nav-links {
        margin: 0.5rem auto 0 !important;
        display: flex;
        justify-content: center;
        gap: 0.4rem;
    }
    
    .navbar-container {
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 0.4rem;
        padding: 0.5rem;
    }
    
    .nav-links a {
        padding: 0.7rem 1.1rem;
        font-size: 0.95rem;
    }
    
    .hero-section {
        padding: 6rem 1.5rem 4rem;
        min-height: auto;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 0.65rem 1.2rem;
    }
    
    .hero-title {
        font-size: 3.2rem;
        line-height: 1.15;
    }
    
    .hero-description {
        font-size: 1.15rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }
    
    /* Show mobile description, hide full description */
    .description-full {
        display: inline;
    }
    
    .description-mobile {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-primary, .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Hide featured username card on mobile */
    .hero-visual {
        display: none;
    }
    
    /* Floating Usernames Animation for Mobile */
    .floating-usernames {
        display: block;
        position: relative;
        width: 100%;
        height: 140px;
        pointer-events: none;
        z-index: 5;
        overflow: hidden;
        margin: 1rem 0 0rem 0;
    }
    
    .floating-username {
        position: absolute;
        display: flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.5rem 0.9rem;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.1));
        backdrop-filter: blur(10px);
        border: 1px solid rgba(59, 130, 246, 0.3);
        border-radius: 12px;
        font-size: 0.85rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.9);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        animation: floatAround 12s infinite ease-in-out;
        opacity: 0;
    }
    
    .floating-username i {
        font-size: 0.9rem;
        opacity: 0.7;
    }
    
    @keyframes floatAround {
        0% {
            opacity: 0;
            transform: translate(0, 0) scale(0.8) rotate(0deg);
        }
        15% {
            opacity: 1;
            transform: translate(0, 0) scale(1) rotate(5deg);
        }
        85% {
            opacity: 1;
            transform: translate(var(--float-x), var(--float-y)) scale(1) rotate(-5deg);
        }
        100% {
            opacity: 0;
            transform: translate(var(--float-x), var(--float-y)) scale(0.8) rotate(0deg);
        }
    }
    
    .section-divider {
        padding: 4rem 1.5rem;
        gap: 1.5rem;
    }
    
    .divider-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
        gap: 0.75rem;
        flex-direction: column;
    }
    
    .section-title i {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .platforms-section {
        padding: 4rem 1.5rem;
    }
    
    .platforms-bento {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .platform-card {
        padding: 1.5rem;
    }
    
    .platform-name {
        font-size: 1.25rem;
    }
    
    .platform-description {
        font-size: 0.85rem;
    }
    
    .sold-section {
        padding: 4rem 1rem;
    }
    
    .sold-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sold-card {
        padding: 1.5rem;
    }
    
    .sold-username {
        font-size: 1.5rem;
    }
    
    .sold-price {
        font-size: 1.75rem;
    }
    
    .reviews-section {
        padding: 4rem 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .reviewer-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .reviewer-name {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .steps-section {
        padding: 4rem 1.5rem;
    }
    
    .timeline {
        margin-top: 3rem;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .step-icon-wrapper {
        margin: 0 auto;
    }
    
    .step-content {
        text-align: center !important;
        padding: 1.5rem;
    }
    
    /* Step title and description now use clamp() for responsive sizing */
    
    .features-section {
        padding: 4rem 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    footer {
        padding: 3rem 1.5rem;
    }
    
    .footer-links {
        gap: 1.5rem;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo {
        display: none;
    }
    
    .navbar {
        margin-top: 0.5rem;
    }
    
    .nav-links a {
        padding: 0.45rem 0.7rem;
        font-size: 0.75rem;
    }
    
    .nav-links a i {
        font-size: 0.75rem;
    }
    
    .hero-section {
        padding: 5.5rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    /* Hide featured username card on mobile */
    .hero-visual {
        display: none;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-title i {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Platform Cards - Mobile Optimized (Compact Layout) */
    .platform-card {
        padding: 1rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }
    
    .platform-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
        min-width: 60px;
    }
    
    .platform-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        border-radius: 0.75rem;
    }
    
    .platform-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
        white-space: nowrap;
    }
    
    .platform-info {
        flex: 1;
        min-width: 0;
    }
    
    .platform-name {
        font-size: 1.1rem;
        margin-bottom: 0.35rem;
    }
    
    .platform-description {
        font-size: 0.8rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .platform-arrow {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    /* Sold Cards - Mobile Optimized (Medium Size) */
    .sold-card {
        padding: 1.2rem 1rem;
    }
    
    .sold-header {
        margin-bottom: 1rem;
    }
    
    .sold-platform {
        font-size: 0.8rem;
    }
    
    .sold-platform i {
        font-size: 1rem;
    }
    
    .sold-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }
    
    /* Username and Price side by side */
    .sold-card .sold-username,
    .sold-card .sold-price {
        display: inline-block;
        margin-bottom: 0;
    }
    
    .sold-username {
        font-size: 1.25rem;
        margin-right: 0.75rem;
    }
    
    .sold-price {
        font-size: 1.4rem;
    }
    
    /* How It Works - Number below content in mobile */
    .timeline-item {
        display: flex;
        flex-direction: column;
    }
    
    .step-icon-wrapper {
        order: 2;
        margin-top: 1.5rem;
    }
    
    .step-content {
        order: 1;
    }
}
