/* ============================================================================
   RIGSYNC GAMING FONT SYSTEM
   ============================================================================ */

/* Base font for excellent readability throughout the site */
* {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

body {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 400;
    letter-spacing: 0.025em;
    line-height: 1.6;
}

/* ============================================================================
   GAMING/TECH HEADERS - Orbitron for that futuristic tech aesthetic
   ============================================================================ */

.hero-title,
.section-title,
.category-title,
.cta-title,
.component-detail-title,
.compare-title,
.nav-brand,
.logo-enhanced-text {
    font-family: 'Orbitron', 'Quicksand', monospace;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

/* Special styling for main hero titles - MERGED: Kept last definition with responsive sizing */
.hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    color: white;
    letter-spacing: 0.08em;
    text-shadow: 
        0 0 10px rgba(0, 191, 255, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ============================================================================
   READABLE HEADINGS - Quicksand for content hierarchy
   ============================================================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: 0.025em;
    line-height: 1.3;
}

/* Content-specific headings */
.feature-card h3,
.testimonial-author h4,
.path-header h3,
.filter-header h3,
.spec-group-title,
.pricing-title,
.features-title {
    font-family: 'Quicksand', system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* ============================================================================
   UI ELEMENTS - Quicksand for interface consistency
   ============================================================================ */

.btn,
.nav-link,
.breadcrumb-item,
.form-control,
.form-select,
.pagination .page-link {
    font-family: 'Quicksand', system-ui, sans-serif;
    font-weight: 500;
    letter-spacing: 0.025em;
}

/* Enhanced button styling */
.btn {
    font-weight: 600;
    letter-spacing: 0.05em;
}

.btn-primary-glow {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============================================================================
   COMPONENT/TECH SPECIFIC ELEMENTS - Gaming aesthetic
   ============================================================================ */

/* MERGED: Removed duplicate .stat-number, .performance-score, .price-current */
.component-name,
.component-brand,
.metric-value {
    font-family: 'Quicksand', system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* Tech specifications and data */
.component-specs,
.spec-value,
.performance-fill,
.compare-cell {
    font-family: 'Quicksand', system-ui, sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Gaming-specific elements with Orbitron accent - MERGED: Kept last values */
.stat-number {
    font-family: 'Orbitron', 'Quicksand', monospace;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: #00BFFF;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.performance-score,
.price-current {
    font-family: 'Orbitron', 'Quicksand', monospace;
    font-weight: 700;
    letter-spacing: 0.03em;
}

/* ============================================================================
   NAVIGATION & BRANDING
   ============================================================================ */

.navbar-brand,
.nav-link {
    font-family: 'Quicksand', system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* Logo gets the tech treatment */
.navbar-brand {
    font-family: 'Orbitron', 'Quicksand', monospace;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================================================
   RESPONSIVE FONT ADJUSTMENTS
   ============================================================================ */

@media (max-width: 768px) {
    .hero-title {
        letter-spacing: 0.05em;
    }
    
    .section-title,
    .category-title {
        letter-spacing: 0.03em;
    }
    
    .btn-primary-glow {
        letter-spacing: 0.05em;
    }
}

@media (max-width: 576px) {
    .hero-title {
        letter-spacing: 0.03em;
    }
    
    .stat-number {
        letter-spacing: 0.02em;
    }
}

/* ============================================================================
   LAYOUT STYLES
   ============================================================================ */

/* Builder Page Specific Styles */
.builder-container {
    background: #0f0f0f;
    color: white;
    min-height: 100vh;
}

/* Hero Landing Styles */
.hero-landing {
    position: relative;
    min-height: clamp(80vh, 90vh, 100vh);
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
    padding: 2rem 0;
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 0;
}

/* Glass Panel Effect */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    transition: all 0.3s ease;
}

.glass-panel:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 191, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 191, 255, 0.2);
}

#menu-bar {
    background-color: rgba(15, 15, 15, 0.9);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 100%;
}

.text-gradient {
    background: linear-gradient(135deg, #00BFFF, #1E90FF, #0080FF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero-stats {
    display: flex;
    gap: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: clamp(2rem, 5vw, 3rem);
    flex-wrap: wrap;
    justify-content: start;
}

.stat-item {
    text-align: center;
    padding: clamp(1rem, 3vw, 1.5rem);
    min-width: clamp(120px, 25vw, 180px);
    flex: 1 1 auto;
    max-width: 200px;
}

.stat-label {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-cta .btn {
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    font-size: clamp(0.9rem, 2vw, 1rem);
    border-radius: 50px;
    transition: all 0.3s ease;
    flex: 1 1 auto;
    min-width: 200px;
    max-width: 300px;
}

/* MERGED: PC Showcase - Kept last definition with responsive clamp values */
.pc-showcase {
    width: clamp(200px, 30vw, 300px);
    height: clamp(250px, 35vw, 400px);
    margin: 0 auto;
    position: relative;
    padding: clamp(1rem, 3vw, 2rem);
}

/* MERGED: PC Glow - Kept last definition with responsive clamp values */
.pc-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(150px, 25vw, 200px);
    height: clamp(200px, 30vw, 300px);
    background: linear-gradient(135deg, #00BFFF, #1E90FF);
    border-radius: 10px;
    opacity: 0.3;
    animation: pcGlow 3s ease-in-out infinite alternate;
}

.hero-content .container {
    max-width: 100%;
    padding-left: clamp(1rem, 3vw, 2rem);
    padding-right: clamp(1rem, 3vw, 2rem);
}

.hero-visual {
    position: relative;
}

/* ============================================================================
   SECTION LAYOUTS
   ============================================================================ */

/* Home Features Section */
.features-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f010a 0%, #080004 100%);
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 191, 255, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(30, 144, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card {
    padding: 2.5rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2);
}

.feature-card h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.feature-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #00BFFF, #0080FF);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: auto;
}

/* Build Paths Section */
.build-paths-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #080004 0%, #0f010a 100%);
    overflow: hidden;
}

.build-paths-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(0, 191, 255, 0.03) 0%, transparent 50%), radial-gradient(circle at 70% 60%, rgba(0, 128, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* MERGED: Build Path Card - Removed duplicate definition */
.build-path-card {
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.build-path-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.1), transparent);
    transition: left 0.5s;
}

.build-path-card:hover::before {
    left: 100%;
}

.build-path-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.3);
    border-color: rgba(0, 191, 255, 0.5);
}

.path-header {
    text-align: center;
    margin-bottom: 2rem;
}

.path-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00BFFF, #0080FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.path-header h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.path-preview {
    margin-bottom: 2rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.game-tile {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.more-games {
    background: linear-gradient(135deg, #00BFFF, #0080FF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.path-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: center;
}

.path-features {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* MERGED: Feature Badge - Kept last definition with gradient background */
.feature-badge {
    background: linear-gradient(135deg, #00BFFF, #1E90FF);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

/* MERGED: Path CTA - Kept last definition with gap and no-decoration */
.path-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00BFFF;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 0.5rem;
}

.path-cta:hover {
    color: #1E90FF;
    transform: translateX(5px);
}

.path-cta i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.build-path-card:hover .path-cta i {
    transform: translateX(5px);
}

.component-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.component-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: white;
}

.component-item i {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.cpu-item i {
    color: #ff6b6b;
}

.gpu-item i {
    color: #1E90FF;
}

.ram-item i {
    color: #45b7d1;
}

.mb-item i {
    color: #96ceb4;
}

.need-option {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

.need-option i {
    color: #00BFFF;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* ============================================================================
   TESTIMONIALS AND CTA SECTIONS
   ============================================================================ */

.testimonials-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f010a 0%, #080004 100%);
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 20%, rgba(0, 191, 255, 0.04) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(30, 144, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial-card {
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 191, 255, 0.15);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00BFFF, #0080FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.author-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.cta-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #080004 0%, #0f010a 100%);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 191, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    padding: 3rem;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-xl {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.cta-guarantee {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

/* ============================================================================
   ANIMATIONS AND EFFECTS
   ============================================================================ */

.background-texture {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image: radial-gradient(circle at 25% 25%, #00BFFF 0%, transparent 50%), radial-gradient(circle at 75% 75%, #1E90FF 0%, transparent 50%), radial-gradient(circle at 50% 50%, #0080FF 0%, transparent 30%);
    background-size: 400px 400px, 600px 600px, 300px 300px;
    background-position: 0 0, 200px 200px, 400px 100px;
    animation: textureMove 20s linear infinite;
}

@keyframes pcGlow {
    0% {
        box-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 40px rgba(0, 191, 255, 0.8);
    }
}

.component-highlight {
    position: absolute;
    width: 40px;
    height: 20px;
    border-radius: 5px;
    animation: componentPulse 2s ease-in-out infinite;
}

.cpu-highlight {
    top: 30%;
    left: 40%;
    background: #ff6b6b;
    animation-delay: 0s;
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.6);
}

.gpu-highlight {
    top: 50%;
    left: 35%;
    width: 60px;
    height: 30px;
    background: #1E90FF;
    animation-delay: 0.5s;
    box-shadow: 0 0 15px rgba(30, 144, 255, 0.6);
}

.ram-highlight {
    top: 20%;
    right: 30%;
    width: 15px;
    height: 60px;
    background: #45b7d1;
    animation-delay: 1s;
    box-shadow: 0 0 15px rgba(69, 183, 209, 0.6);
}

@keyframes componentPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.noise-texture {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.06;
    background: repeating-linear-gradient( 45deg, transparent, transparent 4px, rgba(0, 191, 255, 0.05) 4px, rgba(0, 191, 255, 0.05) 8px ), repeating-linear-gradient( -45deg, transparent, transparent 4px, rgba(30, 144, 255, 0.03) 4px, rgba(30, 144, 255, 0.03) 8px );
    animation: noiseShimmer 8s ease-in-out infinite alternate;
}

.tech-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-image: repeating-linear-gradient( 0deg, transparent, transparent 16px, rgba(0, 191, 255, 0.3) 16px, rgba(0, 191, 255, 0.3) 18px, transparent 18px, transparent 40px ), repeating-linear-gradient( 90deg, transparent, transparent 24px, rgba(30, 144, 255, 0.2) 24px, rgba(30, 144, 255, 0.2) 26px, transparent 26px, transparent 70px );
    animation: techPulse 12s ease-in-out infinite alternate;
}

.circuit-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-image: linear-gradient(90deg, transparent 95%, #00BFFF 95%), linear-gradient(0deg, transparent 95%, #1E90FF 95%);
    background-size: 80px 80px;
    animation: circuitPulse 15s ease-in-out infinite alternate;
}

@keyframes circuitPulse {
    0% {
        opacity: 0.03;
    }
    100% {
        opacity: 0.05;
    }
}

.rgb-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.rgb-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00BFFF, transparent);
    animation: rgbMove 3s linear infinite;
    opacity: 0.7;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.rgb-line-1 {
    top: 20%;
    width: 200px;
    animation-delay: 0s;
}

.rgb-line-2 {
    top: 60%;
    width: 200px;
    animation-delay: 2s;
    background: linear-gradient(90deg, transparent, #ff6b6b, transparent);
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.rgb-line-3 {
    top: 80%;
    width: 250px;
    animation-delay: 4s;
    background: linear-gradient(90deg, transparent, #1E90FF, transparent);
    box-shadow: 0 0 10px rgba(30, 144, 255, 0.5);
}

@keyframes rgbMove {
    0% {
        left: -200px;
    }
    100% {
        left: 100%;
    }
}

.particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00BFFF;
    border-radius: 50%;
    animation: particleFloat 6s linear infinite;
    opacity: 0;
    box-shadow: 0 0 4px rgba(0, 191, 255, 0.8);
}

/* MERGED: ParticleFloat Animation - Kept last definition */
@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    50% {
        transform: translateY(-100px) translateX(50px);
        opacity: 1;
    }
}

.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border: 1px solid rgba(0, 191, 255, 0.2);
    animation: shapeFloat 10s linear infinite;
}

.shape-1 {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00BFFF, transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.shape-2 {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #1E90FF, transparent);
    top: 30%;
    right: 15%;
    opacity: 0.1;
    animation-delay: 2s;
    border-radius: 50%;
}

.shape-3 {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #0080FF, transparent);
    top: 70%;
    left: 20%;
    opacity: 0.1;
    animation-delay: 4s;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.shape-4 {
    width: 36px;
    height: 36px;
    background: linear-gradient(45deg, #00BFFF, transparent);
    top: 50%;
    right: 25%;
    opacity: 0.1;
    animation-delay: 6s;
    transform: rotate(45deg);
}

.shape-5 {
    width: 32px;
    height: 32px;
    background: linear-gradient(45deg, #1E90FF, transparent);
    top: 15%;
    left: 70%;
    opacity: 0.1;
    animation-delay: 1s;
    border-radius: 50%;
}

.shape-6 {
    width: 44px;
    height: 44px;
    background: linear-gradient(45deg, #0080FF, transparent);
    top: 85%;
    right: 10%;
    opacity: 0.1;
    animation-delay: 3s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

@keyframes shapeRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.05;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.15;
    }
}

.connection-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.3), transparent);
}

.connection-1 {
    top: 25%;
    left: 10%;
    width: 30%;
    transform: rotate(15deg);
}

.connection-2 {
    top: 70%;
    right: 15%;
    width: 25%;
    transform: rotate(-10deg);
}

.connection-3 {
    bottom: 30%;
    left: 40%;
    width: 20%;
    transform: rotate(25deg);
}

/* ============================================================================
   CATEGORY AND FILTERING SECTIONS
   ============================================================================ */

.component-category-hero {
    min-height: 10vh;
    position: relative;
}

.component-category-hero .hero-content {
    padding-top: 20px;
    padding-bottom: 20px;
}

.component-category-grid {
    min-height: 400px;
}

.category-breadcrumb .breadcrumb {
    padding: 0.75rem 1.5rem;
    margin: 0;    
}

.category-breadcrumb .breadcrumb-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.category-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: rgba(0, 191, 255, 0.8);
    font-weight: 600;
    font-size: 1rem;
    padding: 0 0.75rem;
    text-shadow: 0 0 8px rgba(0, 191, 255, 0.6);
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
}

.breadcrumb-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00BFFF, #1E90FF);
    transition: width 0.3s ease;
}

.breadcrumb-link:hover {
    color: #00BFFF;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.8);
    text-decoration: none;
    transform: translateY(-1px);
}

.breadcrumb-link:hover::after {
    width: 100%;
}

.category-breadcrumb .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.category-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-top: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.category-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 800px;
}

.category-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-stats .stat-item {
    padding: 1rem 1.5rem;
    text-align: center;
    min-width: 120px;
}

.filtering-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
    padding: 3rem 0;
    min-height: calc(100vh - 60vh);
}

.filters-sidebar {
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-header h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-title {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.filter-checkbox .form-check-input {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    margin: 0;
    margin-right: 8px;
    flex-shrink: 0;
}

.filter-checkbox .form-check-input:checked {
    background-color: #00BFFF;
    border-color: #00BFFF;
}

.filter-checkbox .form-check-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
    margin: 0;
    line-height: 1;
}

.filter-checkbox .form-check-label:hover {
    color: white;
}

.controls-bar {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.search-container {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding-left: 2.5rem;
    border-radius: 25px;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00BFFF;
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(0, 191, 255, 0.25);
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-end;
}

.sort-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.sort-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    max-width: 200px;
}

.sort-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00BFFF;
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(0, 191, 255, 0.25);
}

.sort-select option {
    background: #0f0f0f;
    color: white;
}

.results-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ============================================================================
   COMPONENT CARDS AND PRODUCT DISPLAY
   ============================================================================ */

.component-card {
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.component-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
}

.component-card-inner {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.component-image {
    position: relative;
    text-align: center;
    margin-bottom: 1rem;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.component-image img {
    max-height: 120px;
    max-width: 100%;
    object-fit: contain;
}

.out-of-stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.out-of-stock-overlay span {
    color: #ff4757;
    font-weight: 600;
    font-size: 0.9rem;
}

.component-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.component-header {
    margin-bottom: 1rem;
}

/* MERGED: Component Name - Kept last definition with box-orient properties */
.component-name {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* MERGED: Component Brand - Kept last definition with letter-spacing */
.component-brand {
    color: #00BFFF;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.component-specs {
    margin-bottom: 1rem;
    flex: 1;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.spec-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.spec-value {
    color: white;
    font-weight: 600;
    text-align: right;
}

.performance-indicator {
    margin-bottom: 1rem;
}

.performance-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.performance-label span:first-child {
    color: rgba(255, 255, 255, 0.7);
}

.performance-score {
    color: #00BFFF;
    font-weight: 600;
}

.performance-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.performance-fill {
    height: 100%;
    background: linear-gradient(90deg, #00BFFF, #1E90FF);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.component-footer {
    margin-top: auto;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    gap: 0.75rem;
}

.price-current {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex: 0 0 auto;
}

.price-stores {
    flex: 1 1 100%;
    order: 3;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.price-unavailable {
    color: #ff4757;
    font-size: 1.1rem;
    font-weight: 600;
}

.loading-state, .no-results {
    color: rgba(255, 255, 255, 0.8);
}

.loading-state .spinner-border {
    width: 3rem;
    height: 3rem;
}

.no-results i {
    color: rgba(255, 255, 255, 0.3);
}

.no-results h4 {
    color: white;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ============================================================================
   BUTTON STYLES
   ============================================================================ */

.btn-primary-glow {
    background: linear-gradient(135deg, #00BFFF, #1E90FF);
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.6);
    background: linear-gradient(135deg, #1E90FF, #00BFFF);
    color: white;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-secondary {
    border: 2px solid rgba(108, 117, 125, 0.5);
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background: rgba(108, 117, 125, 0.2);
    border-color: rgba(108, 117, 125, 0.7);
    color: white;
    transform: translateY(-2px);
}

.rgb-glow {
    color: #00BFFF;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

/* ============================================================================
   BUILDER COMPONENTS
   ============================================================================ */

.builder-intro {
    /* Similar to hero-text in Home but adapted for builder */
}

.builder-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.builder-controls {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.builder-visual {
    position: relative;
}

.build-preview {
    padding: 2rem;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.compatibility-indicator {
    display: flex;
    align-items: center;
}

.component-slots {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.component-slot {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.component-slot.filled {
    border-color: rgba(0, 191, 255, 0.5);
    background: rgba(0, 191, 255, 0.05);
}

.component-slot.empty {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.slot-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.cpu-slot .slot-icon {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
}

.gpu-slot .slot-icon {
    background: linear-gradient(135deg, #1E90FF, #0080FF);
    color: white;
}

.ram-slot .slot-icon {
    background: linear-gradient(135deg, #45b7d1, #4fc3f7);
    color: white;
}

.mb-slot .slot-icon {
    background: linear-gradient(135deg, #96ceb4, #81c784);
    color: white;
}

.slot-info {
    display: flex;
    flex-direction: column;
}

.slot-name {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.slot-status {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.component-selector-card {
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.component-selector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.1), transparent);
    transition: left 0.5s;
}

.component-selector-card:hover::before {
    left: 100%;
}

.component-selector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.3);
    border-color: rgba(0, 191, 255, 0.5);
}

.component-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.8rem;
}

.cpu-icon {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
}

.gpu-icon {
    background: linear-gradient(135deg, #1E90FF, #0080FF);
    color: white;
}

.ram-icon {
    background: linear-gradient(135deg, #45b7d1, #4fc3f7);
    color: white;
}

.mb-icon {
    background: linear-gradient(135deg, #96ceb4, #81c784);
    color: white;
}

.component-header h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.component-preview {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.selected-component {
    text-align: center;
}

.select-prompt {
    text-align: center;
}

.select-prompt p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.select-prompt i {
    font-size: 1.5rem;
}

.component-actions {
    display: flex;
    gap: 0.5rem;
}

.component-actions .btn {
    flex: 1;
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
}

.component-actions .btn-primary {
    background: linear-gradient(135deg, #00BFFF, #1E90FF);
    border: none;
    color: white;
}

.component-actions .btn-primary:hover {
    background: linear-gradient(135deg, #1E90FF, #00BFFF);
    color: white;
}

.component-actions .btn-outline-primary {
    border: 1px solid #00BFFF;
    color: #00BFFF;
    background: transparent;
}

.component-actions .btn-outline-primary:hover {
    background: #00BFFF;
    color: white;
}

/* ============================================================================
   PAGINATION AND COMPARISON
   ============================================================================ */

.pagination-nav {
    display: flex;
    justify-content: center;
}

.pagination-wrapper {
    padding: 1rem 2rem;
    border-radius: 25px;
}

.pagination .page-link {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0.25rem;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: rgba(0, 191, 255, 0.2);
    border-color: #00BFFF;
    color: white;
}

.pagination .page-item.active .page-link {
    background: #00BFFF;
    border-color: #00BFFF;
    color: white;
}

.pagination .page-item.disabled .page-link {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
}

.compare-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    backdrop-filter: blur(35px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-items {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.compare-label {
    color: white;
    font-weight: 600;
    margin-right: 0.5rem;
}

.compare-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 0.25rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.compare-item-name {
    color: white;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compare-item .btn {
    padding: 0.1rem 0.3rem;
    line-height: 1;
    border-radius: 50%;
}

/* ============================================================================
   BUILD SUMMARY AND INFO
   ============================================================================ */

.build-summary-card {
    min-height: 400px;
}

.component-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.component-row {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.component-type {
    color: #00BFFF;
    font-weight: 600;
    min-width: 100px;
    font-size: 0.9rem;
}

.component-price {
    color: #00BFFF;
    font-weight: 600;
    min-width: 80px;
    text-align: right;
    font-size: 0.9rem;
}

.empty-build {
    text-align: center;
    padding: 3rem 2rem;
}

.build-info-card {
    position: sticky;
    top: 2rem;
}

.performance-metrics {
    margin-bottom: 2rem;
}

.metric {
    margin-bottom: 1.5rem;
}

.metric-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.metric-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(135deg, #00BFFF, #1E90FF);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.metric-value {
    color: #00BFFF;
    font-weight: 600;
    font-size: 0.8rem;
}

.build-total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.price-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.price-amount {
    color: #00BFFF;
    font-size: 1.5rem;
    font-weight: 700;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 768px) {
    .hero-title {
        letter-spacing: 0.05em;
    }
    
    .section-title,
    .category-title {
        letter-spacing: 0.03em;
    }
    
    .btn-primary-glow {
        letter-spacing: 0.05em;
    }

    .builder-controls {
        flex-direction: column;
    }

        .builder-controls .btn {
            width: 100%;
            margin-bottom: 1rem;
        }

    .component-selector-card {
        margin-bottom: 2rem;
    }

    .component-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .component-type,
    .component-price {
        min-width: auto;
    }

    .build-info-card {
        position: static;
        margin-top: 2rem;
    }

    /* Simplify animations on mobile */
    .background-texture,
    .circuit-pattern,
    .hexagon-pattern,
    .noise-texture,
    .tech-overlay {
        animation: none;
    }

    .category-title {
        font-size: 2.5rem;
    }

    .category-stats {
        justify-content: center;
    }

        .category-stats .stat-item {
            min-width: 100px;
            padding: 0.75rem 1rem;
        }

    .filters-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .controls-bar .row {
        flex-direction: column;
        gap: 1rem;
    }

    .sort-controls {
        justify-content: flex-start;
    }

    .component-actions {
        flex-direction: column;
    }

    .compare-panel {
        padding: 0.75rem 0;
    }

    .compare-items {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .hero-visual {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        letter-spacing: 0.03em;
    }
    
    .stat-number {
        letter-spacing: 0.02em;
    }

    .builder-stats {
        flex-direction: column;
        align-items: center;
    }

    .component-slots {
        gap: 0.5rem;
    }

    .component-slot {
        padding: 0.8rem;
    }

    .slot-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .category-title {
        font-size: 2rem;
    }

    .price-inputs {
        flex-direction: column;
        gap: 0.25rem;
    }

    .price-separator {
        text-align: center;
    }

    .component-card-inner {
        padding: 1rem;
    }

    .spec-item {
        flex-direction: column;
        gap: 0.25rem;
    }

    .spec-value {
        text-align: left;
        color: #00BFFF;
    }

    .path-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        display: none;
    }
}
