/* Premium Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0066ff;
    --accent-cyan: #00d9ff;
    --dark-bg: #0a0a0a;
    --pure-white: #ffffff;
    --soft-grey: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-grey: #666666;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Animation Keyframes for New Sections */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Idle Animation Keyframes */
@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.3), 0 0 40px rgba(0, 255, 136, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.5), 0 0 60px rgba(0, 255, 136, 0.2);
    }
}

@keyframes subtleRotate {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 102, 255, 0.3), inset 0 0 20px rgba(0, 217, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 217, 255, 0.6), inset 0 0 30px rgba(0, 217, 255, 0.3);
    }
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--pure-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Performance Optimizations */
* {
    -webkit-tap-highlight-color: transparent;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* Navigation - Premium Glass Effect */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.2rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0066ff 0%, #00d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
}

.logo img {
    width: 75px;
    height: 75px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.25);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: var(--text-grey);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-menu a:hover::after {
    width: 100%;
}

.signin-button {
    padding: 0.9rem 2rem;
    background: transparent;
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signin-button:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.profile-button {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #0066ff 0%, #00d9ff 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.profile-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 217, 255, 0.4);
}

.profile-button svg {
    transition: transform 0.3s ease;
}

.profile-button:hover svg {
    transform: scale(1.1);
}

.cta-button {
    padding: 0.9rem 2rem;
    background: var(--primary-blue);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.cta-button:hover {
    background: var(--accent-cyan);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 217, 255, 0.4);
}

/* Hero Section - Ultra Premium */
.hero-main {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
    padding: 2rem 0;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.1);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

#topoCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content-main {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.95) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 32px;
    box-shadow: 
        0 25px 80px rgba(0, 102, 255, 0.2),
        0 0 0 1px rgba(0, 102, 255, 0.1),
        0 0 40px rgba(0, 217, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border: 2px solid rgba(0, 102, 255, 0.2);
    overflow: hidden;
}



/* Animated #1 PC Optimizer */
.hero-number-one {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    background: linear-gradient(90deg, #0066ff 0%, #00d9ff 25%, #0066ff 50%, #00d9ff 75%, #0066ff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
    animation: shimmer 8s linear infinite;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 102, 255, 0.3));
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.hero-main-title {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.05);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero-cta-btn {
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4), 0 4px 12px rgba(0, 102, 255, 0.3);
    animation: fadeInUp 0.8s ease 0.4s backwards, pulse 2s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4), 0 4px 12px rgba(0, 102, 255, 0.3);
    }
    50% {
        box-shadow: 0 12px 40px rgba(0, 217, 255, 0.5), 0 6px 20px rgba(0, 217, 255, 0.4);
    }
}

.hero-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.5);
}

/* Premium Product Section */
.premium-product-section {
    padding: 3rem 0;
    background: var(--soft-grey);
}

.section-header-center {
    text-align: center;
    margin-bottom: 2rem;
}

.section-pre-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-top: 1.5rem;
    line-height: 1.8;
    font-weight: 500;
}

.premium-product-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    box-shadow: 
        0 20px 60px -15px rgba(0, 102, 255, 0.12),
        0 0 0 1px rgba(0, 102, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.3s ease;
}

.premium-product-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 
        0 30px 80px -15px rgba(0, 102, 255, 0.18),
        0 0 0 1px rgba(0, 102, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.premium-badge {
    position: absolute;
    top: -16px;
    right: 50px;
    background: linear-gradient(135deg, #0066ff, #00d9ff);
    color: white;
    padding: 0.75rem 3rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    box-shadow: 
        0 8px 24px -8px rgba(0, 102, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.premium-product-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.premium-price {
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    animation: priceEntrance 1s ease-out;
}

@keyframes priceEntrance {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.price-amount {
    font-size: 5.5rem;
    font-weight: 900;
    color: #0066ff;
    letter-spacing: -4px;
    display: inline-block;
    background: linear-gradient(135deg, #0066ff 0%, #00d9ff 50%, #0066ff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    filter: drop-shadow(0 2px 12px rgba(0, 102, 255, 0.15));
    animation: 
        priceGradientShift 4s ease-in-out infinite,
        pricePulseScale 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

@keyframes priceGradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

@keyframes pricePulseScale {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 2px 12px rgba(0, 102, 255, 0.15));
    }
    50% {
        transform: scale(1.03);
        filter: drop-shadow(0 4px 20px rgba(0, 217, 255, 0.25));
    }
}

.price-amount:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 24px rgba(0, 217, 255, 0.35));
    animation: none;
}

.premium-payment-type {
    font-size: 1.05rem;
    color: #6b7280;
    margin-bottom: 3rem;
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 0.85;
        transform: translateY(0);
    }
}

.premium-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.premium-feature-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: rgba(248, 250, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1f2937;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(0, 102, 255, 0.25);
    cursor: pointer;
    opacity: 1;
    animation: slideInRight 0.6s ease-out backwards;
}

.premium-feature-item:nth-child(1) { animation-delay: 0.1s; }
.premium-feature-item:nth-child(2) { animation-delay: 0.2s; }
.premium-feature-item:nth-child(3) { animation-delay: 0.3s; }
.premium-feature-item:nth-child(4) { animation-delay: 0.4s; }
.premium-feature-item:nth-child(5) { animation-delay: 0.5s; }
.premium-feature-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.premium-feature-item:hover {
    background: rgba(0, 102, 255, 0.08);
    transform: translateX(8px) scale(1.02);
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: 0 8px 24px -4px rgba(0, 102, 255, 0.18);
}

.check-icon {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #0066ff, #00d9ff);
    border-radius: 50%;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0, 102, 255, 0.2));
    position: relative;
    animation: checkIconSpin 3s linear infinite;
}

@keyframes checkIconSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.premium-feature-item:hover .check-icon {
    filter: drop-shadow(0 4px 12px rgba(0, 217, 255, 0.4));
    animation: checkIconSpinFast 1s linear infinite;
}

@keyframes checkIconSpinFast {
    0% {
        transform: rotate(0deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1.1);
    }
}

.check-icon path {
    fill: white;
}

.premium-purchase-btn {
    width: 100%;
    padding: 1.4rem 2rem;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #0066ff 0%, #00d9ff 100%);
    color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px -5px rgba(0, 102, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.premium-purchase-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -5px rgba(0, 102, 255, 0.4);
}

.cart-icon {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
}

.premium-note {
    margin-top: 1.5rem;
    font-size: 0.925rem;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.75;
    opacity: 0;
    animation: fadeInSoft 1s ease-out 1.3s forwards;
}

@keyframes fadeInSoft {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

/* Features Showcase */
.features-showcase {
    margin-top: 5rem;
}

.features-showcase-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #0066ff 0%, #00d9ff 50%, #0066ff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradientShift 4s ease-in-out infinite, titleFadeIn 1s ease-out;
    filter: drop-shadow(0 4px 12px rgba(0, 102, 255, 0.2));
}

@keyframes titleGradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 2000px;
    margin: 0 auto;
}

.feature-showcase-item {
    background: white;
    padding: 2rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 3px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 400px;
}

.feature-showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.3);
}

.feature-showcase-item img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.feature-showcase-item h4 {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    color: var(--primary-blue);
}

.feature-showcase-item p {
    color: var(--text-grey);
    line-height: 1.8;
    font-weight: 500;
    font-size: 0.95rem;
}

/* FPS Card - Large Image */
.fps-horizontal {
    flex-direction: column;
    text-align: center;
    grid-column: span 3;
}

.fps-horizontal img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.fps-horizontal img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: imageShine 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes imageShine {
    0% {
        left: -100%;
    }
    20% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

.fps-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.fps-text-content h4 {
    font-size: 2rem;
}

.fps-text-content p {
    font-size: 1.15rem;
    line-height: 1.9;
}

/* Performance Card - Same as FPS */
.performance-horizontal {
    flex-direction: column;
    text-align: center;
    grid-column: span 3;
}

.performance-horizontal img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.performance-horizontal img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: imageShine 4s ease-in-out infinite 2s;
    pointer-events: none;
}

.performance-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.performance-text-content h4 {
    font-size: 2rem;
}

.performance-text-content p {
    font-size: 1.15rem;
    line-height: 1.9;
}

/* Low Latency Card - Same as FPS/Performance */
.latency-horizontal {
    flex-direction: column;
    text-align: center;
    grid-column: span 3;
}

.latency-horizontal img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.latency-horizontal img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: imageShine 4s ease-in-out infinite 1s;
    pointer-events: none;
}

.latency-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.latency-text-content h4 {
    font-size: 2rem;
}

.latency-text-content p {
    font-size: 1.15rem;
    line-height: 1.9;
}

/* System Smoothness Card - Same as FPS/Performance/Latency */
.smoothness-horizontal {
    flex-direction: column;
    text-align: center;
    grid-column: span 3;
}

.smoothness-horizontal img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.smoothness-horizontal img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: imageShine 4s ease-in-out infinite 3s;
    pointer-events: none;
}

.smoothness-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.smoothness-text-content h4 {
    font-size: 2rem;
}

.smoothness-text-content p {
    font-size: 1.15rem;
    line-height: 1.9;
}

/* PC Optimization Card - Same as others but BIGGER TEXT */
.pc-optimization-horizontal {
    flex-direction: column;
    text-align: center;
    grid-column: span 3;
}

.pc-optimization-horizontal img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.pc-optimization-horizontal img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: imageShine 4s ease-in-out infinite 0.5s;
    pointer-events: none;
}

.pc-optimization-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.pc-optimization-text-content h4 {
    font-size: 2.5rem;
}

.pc-optimization-text-content p {
    font-size: 1.5rem;
    line-height: 1.9;
}

/* Internet Tweaks Card - Same as FPS/Performance/Latency/Smoothness */
.internet-horizontal {
    flex-direction: column;
    text-align: center;
    grid-column: span 3;
}

.internet-horizontal img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.internet-horizontal img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: imageShine 4s ease-in-out infinite 1.5s;
    pointer-events: none;
}

.internet-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.internet-text-content h4 {
    font-size: 2rem;
}

.internet-text-content p {
    font-size: 1.15rem;
    line-height: 1.9;
}

/* CTA Potential Section - Modern Stats Cards */
.cta-potential-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-main-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    background: linear-gradient(135deg, #0066ff 0%, #00d9ff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: titleGradient 3s ease-in-out infinite;
}

@keyframes titleGradient {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.stats-description {
    font-size: 1.2rem;
    color: var(--text-grey);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.modern-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066ff, #00d9ff);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 102, 255, 0.3);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.stat-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-before,
.stat-after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
}

.stat-highlight {
    background: linear-gradient(135deg, #0066ff 0%, #00d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: valuePulse 2s ease-in-out infinite;
}

@keyframes valuePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.stat-arrow {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-blue);
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(5px); }
}

.stat-improvement {
    text-align: center;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    border: 2px solid rgba(0, 102, 255, 0.2);
}

.fps-card:hover .stat-icon { animation: iconSpin 0.6s ease-in-out; }
.ping-card:hover .stat-icon { animation: iconBounce 0.6s ease-in-out; }
.latency-card:hover .stat-icon { animation: iconShake 0.6s ease-in-out; }

@keyframes iconSpin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(360deg); }
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    25%, 75% { transform: translateY(-10px); }
    50% { transform: translateY(-20px); }
}

@keyframes iconShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
    75% { transform: translateX(-10px); }
}

.cta-potential-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.cta-potential-graph {
    background: linear-gradient(135deg, #0f1117 0%, #1a1d29 50%, #0f1117 100%);
    padding: 4rem 3rem;
    border-radius: 32px;
    box-shadow: 
        0 30px 90px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-potential-graph::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.5), transparent);
    animation: scanline 3s linear infinite;
}

@keyframes scanline {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.performance-horizontal-chart {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.metric-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-name {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.bar-label {
    font-size: 1.15rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    min-width: 90px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bar-track {
    flex: 1;
    height: 55px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.5),
        0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bar-fill {
    height: 100%;
    border-radius: 50px;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* FPS Bars - Sleek Sci-Fi Design */
.fps-before {
    width: 54%;
    background: linear-gradient(90deg, 
        rgba(255, 0, 0, 0.6) 0%, 
        rgba(255, 0, 0, 0.85) 50%, 
        rgba(255, 0, 0, 0.6) 100%);
    position: relative;
    overflow: hidden;
    border: 3px solid rgb(255, 0, 0);
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.8),
        inset 0 0 30px rgba(255, 0, 0, 0.4);
}

.fps-before::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.8), 
        transparent);
    animation: sciFiScan 2s linear infinite;
}

.fps-after {
    width: 56%;
    background: linear-gradient(90deg, 
        rgba(0, 100, 255, 0.6) 0%, 
        rgba(0, 100, 255, 0.85) 50%, 
        rgba(0, 100, 255, 0.6) 100%);
    position: relative;
    overflow: hidden;
    border: 3px solid rgb(0, 100, 255);
    box-shadow: 
        0 0 30px rgba(0, 100, 255, 0.8),
        inset 0 0 30px rgba(0, 100, 255, 0.4);
}

.fps-after::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.8), 
        transparent);
    animation: sciFiScan 2s linear infinite 0.5s;
}

/* PING Bars - Sleek Sci-Fi Design */
.ping-before {
    width: 43%;
    background: linear-gradient(90deg, 
        rgba(255, 0, 128, 0.6) 0%, 
        rgba(255, 0, 128, 0.85) 50%, 
        rgba(255, 0, 128, 0.6) 100%);
    position: relative;
    overflow: hidden;
    border: 3px solid rgb(255, 0, 128);
    box-shadow: 
        0 0 30px rgba(255, 0, 128, 0.8),
        inset 0 0 30px rgba(255, 0, 128, 0.4);
}

.ping-before::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.8), 
        transparent);
    animation: sciFiScan 2s linear infinite 1s;
}

.ping-after {
    width: 33%;
    background: linear-gradient(90deg, 
        rgba(200, 0, 255, 0.6) 0%, 
        rgba(200, 0, 255, 0.85) 50%, 
        rgba(200, 0, 255, 0.6) 100%);
    position: relative;
    overflow: hidden;
    border: 3px solid rgb(200, 0, 255);
    box-shadow: 
        0 0 30px rgba(200, 0, 255, 0.8),
        inset 0 0 30px rgba(200, 0, 255, 0.4);
}

.ping-after::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.8), 
        transparent);
    animation: sciFiScan 2s linear infinite 1.5s;
}

/* Sci-Fi Scan Animation */
@keyframes sciFiScan {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

/* Latency Bars - Sleek Sci-Fi Design */
.latency-before {
    width: 75%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 0, 0.6) 0%, 
        rgba(255, 255, 0, 0.85) 50%, 
        rgba(255, 255, 0, 0.6) 100%);
    position: relative;
    overflow: hidden;
    border: 3px solid rgb(255, 255, 0);
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.8),
        inset 0 0 30px rgba(255, 255, 0, 0.4);
}

.latency-before::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.8), 
        transparent);
    animation: sciFiScan 2s linear infinite 2s;
}

.latency-after {
    width: 45%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 0, 0.6) 0%, 
        rgba(0, 255, 0, 0.85) 50%, 
        rgba(0, 255, 0, 0.6) 100%);
    position: relative;
    overflow: hidden;
    border: 3px solid rgb(0, 255, 0);
    box-shadow: 
        0 0 30px rgba(0, 255, 0, 0.8),
        inset 0 0 30px rgba(0, 255, 0, 0.4);
}

.latency-after::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.8), 
        transparent);
    animation: sciFiScan 2s linear infinite 2.5s;
}

.bar-number {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    min-width: 130px;
    text-align: right;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
    animation: numberGlow 2s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% {
        text-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
    }
    50% {
        text-shadow: 0 0 20px currentColor, 0 0 40px currentColor, 0 0 60px currentColor;
    }
}

.cta-potential-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.cta-potential-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    line-height: 1.15;
}

.cta-potential-description {
    font-size: 1.2rem;
    color: var(--text-grey);
    line-height: 1.9;
    margin-bottom: 3rem;
    font-weight: 500;
}

.hardware-info-box {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: blueGlow 3s ease-in-out infinite;
}

@keyframes blueGlow {
    0%, 100% {
        box-shadow: 
            0 8px 24px rgba(0, 102, 255, 0.3),
            0 0 20px rgba(0, 102, 255, 0.2),
            inset 0 0 20px rgba(0, 217, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 12px 40px rgba(0, 102, 255, 0.6),
            0 0 40px rgba(0, 217, 255, 0.5),
            inset 0 0 30px rgba(0, 217, 255, 0.3);
    }
}

.hardware-info-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shimmerGlow 4s linear infinite;
    pointer-events: none;
}

@keyframes shimmerGlow {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.hardware-info-box p {
    color: white;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.cta-potential-btn {
    padding: 1.5rem 3.5rem;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(0, 102, 255, 0.3);
}

.cta-potential-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.5);
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background: var(--soft-grey);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.testimonial-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-header strong {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 800;
}

.testimonial-header span {
    font-size: 0.9rem;
    color: var(--text-grey);
    font-weight: 600;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-dark);
    font-weight: 500;
}

/* Support Section */
.support-section {
    padding: 5rem 0;
    background: white;
}

.support-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.support-pre-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.support-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 2rem;
}

.support-description {
    font-size: 1.2rem;
    color: var(--text-grey);
    line-height: 1.9;
    margin-bottom: 4rem;
    font-weight: 500;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 3rem;
    background: var(--soft-grey);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.support-link:hover {
    background: rgba(0, 102, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.2);
}

.support-icon {
    font-size: 1.8rem;
}

/* Discord Button Styling */
.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 3.5rem;
    background: #5865F2;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discord-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(88, 101, 242, 0.6);
    background: #4752C4;
    border-color: rgba(255, 255, 255, 0.4);
}

.discord-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.discord-button:hover .discord-logo {
    transform: rotate(5deg) scale(1.1);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--soft-grey);
}

.faq-grid {
    display: grid;
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
    box-shadow: 0 15px 50px rgba(0, 102, 255, 0.12);
    transform: translateY(-5px);
}

.faq-question {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.faq-answer {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-grey);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 5rem 0 2rem;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-social a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: rgba(0, 102, 255, 0.1);
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    cursor: pointer;
    padding: 0.6rem;
    z-index: 1001;
    position: relative;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 102, 255, 0.2);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Responsive Design */

/* Tablet and smaller devices */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 2rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .signin-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
    }

    .features-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .cta-potential-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .premium-features-list {
        grid-template-columns: 1fr;
    }

    .support-links {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-main {
        padding: 2rem 0;
    }

    .feature-showcase-item {
        padding: 1.5rem;
    }

    .feature-showcase-item img {
        max-width: 400px;
    }

    .fps-horizontal img {
        max-width: 100%;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .performance-horizontal img {
        max-width: 100%;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .latency-horizontal img {
        max-width: 100%;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .smoothness-horizontal img {
        max-width: 100%;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .pc-optimization-horizontal img {
        max-width: 100%;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .internet-horizontal img {
        max-width: 100%;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
}

/* Mobile devices */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    .navbar {
        padding: 1rem 0;
    }

    .logo {
        font-size: 1.1rem;
        gap: 0.8rem;
    }

    .logo img {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.7rem;
    }

    .hero-main {
        margin-top: 70px;
        min-height: 90vh;
    }

    section {
        padding: 3rem 0;
    }

    /* Performance Graph Mobile Styles */
    .cta-potential-section {
        padding: 3rem 0;
    }

    .cta-potential-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-potential-graph {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .performance-horizontal-chart {
        gap: 2.5rem;
    }

    .metric-name {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .bar-row {
        gap: 0.75rem;
    }

    .bar-label {
        font-size: 0.9rem;
        min-width: 60px;
    }

    .bar-track {
        height: 40px;
    }

    .bar-number {
        font-size: 1.3rem;
        min-width: 80px;
    }

    .cta-potential-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .cta-potential-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .premium-product-section,
    .testimonials-section,
    .faq-section {
        padding: 4rem 0;
    }

    .premium-product-card {
        padding: 2rem 1.5rem;
    }

    .section-header-center {
        margin-bottom: 3rem;
    }

    .features-showcase {
        margin-top: 4rem;
    }

    .feature-showcase-item {
        padding: 1.5rem 1rem;
    }

    .feature-showcase-item img {
        max-width: 100%;
    }

    .feature-showcase-item h4 {
        font-size: 1.2rem;
    }

    .feature-showcase-item p {
        font-size: 0.9rem;
    }

    .fps-horizontal {
        grid-column: span 1;
    }

    .fps-horizontal img {
        max-width: 100%;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        margin-bottom: 1.5rem;
    }

    .fps-text-content h4 {
        font-size: 1.3rem;
    }

    .fps-text-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .performance-horizontal {
        grid-column: span 1;
    }

    .performance-horizontal img {
        max-width: 100%;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        margin-bottom: 1.5rem;
    }

    .performance-text-content h4 {
        font-size: 1.3rem;
    }

    .performance-text-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .latency-horizontal {
        grid-column: span 1;
    }

    .latency-horizontal img {
        max-width: 100%;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        margin-bottom: 1.5rem;
    }

    .latency-text-content h4 {
        font-size: 1.3rem;
    }

    .latency-text-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .smoothness-horizontal {
        grid-column: span 1;
    }

    .smoothness-horizontal img {
        max-width: 100%;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        margin-bottom: 1.5rem;
    }

    .smoothness-text-content h4 {
        font-size: 1.3rem;
    }

    .smoothness-text-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .pc-optimization-horizontal {
        grid-column: span 1;
    }

    .pc-optimization-horizontal img {
        max-width: 100%;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        margin-bottom: 1.5rem;
    }

    .pc-optimization-text-content h4 {
        font-size: 1.5rem;
    }

    .pc-optimization-text-content p {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .internet-horizontal {
        grid-column: span 1;
    }

    .internet-horizontal img {
        max-width: 100%;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        margin-bottom: 1.5rem;
    }

    .internet-text-content h4 {
        font-size: 1.3rem;
    }

    .internet-text-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* Very small mobile devices */
@media (max-width: 480px) {
    .logo {
        font-size: 0.75rem;
        gap: 0.5rem;
        max-width: 200px;
    }
    
    .logo span {
        display: none; /* Hide text on very small screens */
    }

    .logo img {
        width: 40px;
        height: 40px;
    }

    .cta-button {
        display: none;
    }

    .hero-cta-btn {
        padding: 1.2rem 2.5rem;
        font-size: 0.95rem;
    }

    .support-link {
        padding: 1rem 2rem;
    }
    
    .mobile-menu-toggle {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }
}

/* Force hamburger on all mobile/tablet */
@media (max-width: 968px) {
    .logo span {
        font-size: 0.85rem;
    }
    
    .logo img {
        width: 45px;
        height: 45px;
    }
}

/* Landscape mobile devices */
@media (max-width: 968px) and (orientation: landscape) {
    .hero-main {
        min-height: auto;
        padding: 3rem 0;
    }
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--soft-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* Selection */
::selection {
    background: var(--primary-blue);
    color: white;
}

/* Floating Card */
.floating-card {
    position: fixed;
    right: -400px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    animation: slideInRight 1s ease-out 0.5s forwards, floatAnimation 3s ease-in-out infinite 1.5s;
    transition: opacity 0.3s ease;
    will-change: transform, opacity;
}

.floating-card img {
    max-width: 700px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(0, 102, 255, 0.4);
    display: block;
}

@media (max-width: 1200px) {
    .floating-card {
        display: none; /* Hide on tablets and mobile to prevent overflow */
    }
}

@keyframes slideInRight {
    to {
        right: 30px;
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(-15px);
    }
}

/* Particle Background - Mobile Only */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    #particles-js {
        display: block; /* Show on mobile */
    }
    
    #topoCanvas {
        display: none; /* Hide stars on mobile, show particles instead */
    }
}

.no-scroll {
    overflow: hidden;
}

/* Custom Modal */
.custom-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.custom-modal-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.custom-modal {
    background: white;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.custom-modal-header {
    background: linear-gradient(135deg, #0066ff 0%, #00d9ff 100%);
    padding: 2rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-modal-header h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.custom-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.custom-modal-body {
    padding: 2.5rem;
}

.custom-modal-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

.custom-modal-footer {
    padding: 0 2.5rem 2.5rem;
    display: flex;
    justify-content: flex-end;
}

.custom-modal-btn {
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #0066ff 0%, #00d9ff 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.custom-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 217, 255, 0.4);
}

@media (max-width: 640px) {
    .custom-modal {
        max-width: 95%;
    }
    
    .custom-modal-header {
        padding: 1.5rem;
    }
    
    .custom-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .custom-modal-body {
        padding: 2rem 1.5rem;
    }
    
    .custom-modal-body p {
        font-size: 1rem;
    }
    
    .custom-modal-footer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .custom-modal-btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
}
