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

:root {
    --primary-red: #ff0040;
    --primary-violet: #8b5cf6;
    --accent-cyan: #00ffff;
    --dark-bg: #0a0a0a;
    --card-bg: rgba(20, 20, 20, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --glow-red: rgba(255, 0, 64, 0.5);
    --glow-violet: rgba(139, 92, 246, 0.5);
    --glow-cyan: rgba(0, 255, 255, 0.3);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Glow Effects */
.text-glow {
    color: var(--primary-red);
    text-shadow: 
        0 0 10px var(--glow-red),
        0 0 20px var(--glow-red),
        0 0 30px var(--glow-red);
}

.text-accent {
    color: var(--primary-violet);
    text-shadow: 
        0 0 10px var(--glow-violet),
        0 0 20px var(--glow-violet);
}

/* Glass Morphism Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 
        0 15px 40px rgba(255, 0, 64, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn-primary-gx {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-violet));
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 64, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-gx:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 64, 0.5);
    color: white;
}

.btn-gx-download {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-violet));
    border: none;
    color: white;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 64, 0.3);
}

.btn-gx-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 64, 0.5);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top right, rgba(255, 0, 64, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        var(--dark-bg);
    z-index: -2;
}

.hero-content {
    z-index: 2;
    padding: 2rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* Gaming Setup Animation */
.gaming-setup {
    position: relative;
    width: 400px;
    height: 300px;
}

.monitor-frame {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 120px;
    border: 3px solid var(--primary-red);
    border-radius: 10px;
    background: var(--dark-bg);
}

.screen-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-violet));
    border-radius: 15px;
    opacity: 0.3;
    animation: screenPulse 2s ease-in-out infinite alternate;
}

.setup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 200px;
    background: radial-gradient(ellipse, var(--glow-red) 0%, transparent 70%);
    animation: setupGlow 3s ease-in-out infinite alternate;
}

.keyboard-glow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 40px;
    background: var(--primary-violet);
    border-radius: 5px;
    opacity: 0.6;
    animation: keyboardGlow 2.5s ease-in-out infinite alternate;
}

.mouse-glow {
    position: absolute;
    bottom: 30px;
    right: 50px;
    width: 30px;
    height: 50px;
    background: var(--accent-cyan);
    border-radius: 15px;
    opacity: 0.7;
    animation: mouseGlow 1.8s ease-in-out infinite alternate;
}

/* Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 1s; background: var(--primary-violet); }
.particle:nth-child(3) { top: 30%; left: 80%; animation-delay: 2s; background: var(--accent-cyan); }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 3s; }
.particle:nth-child(5) { top: 50%; left: 90%; animation-delay: 4s; background: var(--primary-violet); }

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.05) 100%);
}

.feature-card {
    text-align: center;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--glow-red);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* Feature Animations */
.feature-animation {
    margin-top: auto;
}

.cpu-bars {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: end;
    height: 60px;
}

.cpu-bars .bar {
    width: 12px;
    background: linear-gradient(to top, var(--primary-red), var(--primary-violet));
    border-radius: 6px;
    animation: cpuPulse 1.5s ease-in-out infinite alternate;
}

.cpu-bars .bar:nth-child(2) { animation-delay: 0.2s; }
.cpu-bars .bar:nth-child(3) { animation-delay: 0.4s; }
.cpu-bars .bar:nth-child(4) { animation-delay: 0.6s; }

.network-indicator {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: end;
    height: 60px;
}

.signal-bar {
    width: 10px;
    background: var(--accent-cyan);
    border-radius: 5px;
    animation: signalPulse 1s ease-in-out infinite;
}

.signal-bar:nth-child(1) { height: 20px; }
.signal-bar:nth-child(2) { height: 35px; animation-delay: 0.2s; }
.signal-bar:nth-child(3) { height: 50px; animation-delay: 0.4s; }
.signal-bar:nth-child(4) { height: 65px; animation-delay: 0.6s; }

.game-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.game-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-violet));
    border-radius: 10px;
    animation: gameIconFloat 2s ease-in-out infinite alternate;
}

.game-icon:nth-child(2) { animation-delay: 0.5s; }
.game-icon:nth-child(3) { animation-delay: 1s; }

/* Performance Section */
.performance-section {
    background: rgba(255, 0, 64, 0.02);
    padding: 5rem 0;
}

.performance-card h3 {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.performance-item {
    margin-bottom: 2rem;
}

.performance-item label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.progress-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress {
    flex: 1;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 6px;
    transition: width 2s ease-in-out;
}

.percentage {
    font-weight: 700;
    min-width: 40px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.05) 100%);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0.7;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
}

.avatar {
    flex-shrink: 0;
}

.avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-red);
    box-shadow: 0 0 20px var(--glow-red);
}

.testimonial-content {
    flex: 1;
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-content h4 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.testimonial-content span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

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

.dot.active {
    background: var(--primary-red);
    transform: scale(1.2);
}

/* Footer */
.footer-section {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

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

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

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
    transform: translateY(-3px);
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Animations */
@keyframes screenPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

@keyframes setupGlow {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes keyboardGlow {
    0% { opacity: 0.6; box-shadow: 0 0 20px var(--glow-violet); }
    100% { opacity: 0.9; box-shadow: 0 0 40px var(--glow-violet); }
}

@keyframes mouseGlow {
    0% { opacity: 0.7; box-shadow: 0 0 15px var(--glow-cyan); }
    100% { opacity: 1; box-shadow: 0 0 30px var(--glow-cyan); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

@keyframes cpuPulse {
    0% { height: 20px; }
    100% { height: var(--height, 60px); }
}

@keyframes signalPulse {
    0%, 100% { opacity: 0.5; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

@keyframes gameIconFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(5deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        text-align: center;
    }
    
    .hero-visual {
        margin-top: 2rem;
    }
    
    .gaming-setup {
        width: 300px;
        height: 200px;
    }
    
    .monitor-frame {
        width: 150px;
        height: 90px;
    }
    
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }
    
    .avatar {
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-links {
        text-align: center;
        margin: 1rem 0;
    }
    
    .sticky-cta {
        top: auto;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .glass-card {
        padding: 1.5rem;
    }
    
    .feature-card {
        min-height: 350px;
    }
    
    .performance-card {
        margin-bottom: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}