/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Glass Morphism Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(255, 0, 64, 0.4),
        0 0 30px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(255, 0, 64, 0.4), rgba(138, 43, 226, 0.3), rgba(0, 0, 0, 0.6)),
        url('https://images.pexels.com/photos/442576/pexels-photo-442576.jpeg') center/cover;
    opacity: 0.8;
    z-index: 1;
    filter: contrast(1.3) saturate(1.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(255, 0, 64, 0.3) 25%,
        rgba(138, 43, 226, 0.3) 50%, 
        rgba(255, 0, 64, 0.2) 75%,
        rgba(255, 107, 0, 0.2) 100%);
    z-index: 2;
    animation: colorShift 8s ease-in-out infinite;
}

.hero-section .container-fluid {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    background: linear-gradient(45deg, #ff0040, #000000, #ff0040, #cc0033);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 1.5rem; 
    text-shadow: 0 0 50px rgba(255, 0, 64, 0.8), 0 0 100px rgba(0, 0, 0, 0.8);
    filter: drop-shadow(0 0 20px rgba(255, 0, 64, 0.8));
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #ccc;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* CTA Buttons */
.btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff0040, #8a2be2, #ff0040);
    background-size: 300% 300%;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 0, 64, 0.6);
    box-shadow: 
        0 0 40px rgba(255, 0, 64, 0.6), 
        0 0 60px rgba(138, 43, 226, 0.4),
        inset 0 0 30px rgba(138, 43, 226, 0.3);
    position: relative;
    overflow: hidden;
    animation: buttonGlow 2s ease-in-out infinite alternate;
}

.btn-cta:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 
        0 0 60px rgba(255, 0, 64, 0.8), 
        0 0 80px rgba(0, 0, 0, 0.9),
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 40px rgba(255, 0, 64, 0.4);
    color: white;
    animation: none;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

/* Features Section */
.features-section {
    background: linear-gradient(135deg,
        rgba(255, 0, 64, 0.08) 0%,
        rgba(0, 0, 0, 0.3) 25%,
        rgba(255, 0, 64, 0.08) 50%,
        rgba(0, 0, 0, 0.2) 75%,
        rgba(255, 0, 64, 0.08) 100%);
    background-size: 400% 400%;
    animation: sectionShift 10s ease-in-out infinite;
    padding: 100px 0;
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    position: relative;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    animation: bounce 0.6s ease-in-out;
}

.red-gradient {
    background: linear-gradient(45deg, #ff0040, #000000, #ff0040);
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 0, 64, 0.6);
}

.purple-gradient {
    background: linear-gradient(45deg, #000000, #ff0040, #000000);
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite reverse;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.orange-gradient {
    background: linear-gradient(45deg, #cc0033, #000000, #cc0033);
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(204, 0, 51, 0.6);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.feature-desc {
    color: #ccc;
    font-size: 1.1rem;
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.5);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff0040, #000000, #cc0033, #ff0040);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    animation: gradientShift 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 0, 64, 0.8));
}

.comparison-card {
    padding: 40px;
    height: 100%;
}

.before-card {
    border-color: rgba(255, 0, 64, 0.3);
    background: rgba(255, 0, 64, 0.05);
}

.after-card {
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.05);
}

.comparison-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.before-card .comparison-title {
    color: #ff4444;
}

.after-card .comparison-title {
    color: #ff0040;
}

.progress-container {
    margin-top: 20px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #ccc;
}

.progress-bar-custom {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

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

.before-progress {
    background: linear-gradient(90deg, #ff0040, #ff6b00, #ff0040);
    background-size: 200% 100%;
    animation: progressGlow 2s ease-in-out infinite;
    width: 85%;
    box-shadow: 0 0 20px rgba(255, 0, 64, 0.6);
}

.after-progress {
    background: linear-gradient(90deg, #ff0040, #000000, #ff0040);
    background-size: 200% 100%;
    animation: progressGlow 2s ease-in-out infinite reverse;
    width: 35%;
    box-shadow: 0 0 20px rgba(255, 0, 64, 0.6);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.08) 0%, 
        rgba(255, 107, 0, 0.05) 25%,
        rgba(138, 43, 226, 0.08) 50%,
        rgba(255, 0, 64, 0.05) 75%,
        rgba(138, 43, 226, 0.08) 100%);
    background-size: 400% 400%;
    animation: sectionShift 12s ease-in-out infinite reverse;
}

.testimonial-card {
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(255, 0, 64, 0.1));
    z-index: -1;
}

.testimonial-avatar {
    font-size: 4rem;
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    font-style: normal;
}

.testimonial-author {
    color: #ff0040;
    font-size: 1.2rem;
    font-weight: 600;
    font-style: normal;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

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

.dot.active,
.dot:hover {
    background: #ff0040;
    transform: scale(1.2);
}

/* Footer */
.footer-section {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff0040, #8a2be2, #ff0040);
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    color: #ccc;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #ff0040;
    transform: translateY(-5px) scale(1.1);
    text-shadow: 0 0 15px rgba(255, 0, 64, 0.8);
}

.footer-text {
    color: #888;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-link {
    color: #888;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ccc;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-btn {
    padding: 12px 25px;
    font-size: 1rem;
    animation: pulse 2s infinite;
}

/* Gaming Showcase Styles */
.gaming-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
    padding: 20px 0;
}

.gaming-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 220px;
    transition: all 0.4s ease;
    background: linear-gradient(45deg, rgba(255, 0, 64, 0.1), rgba(0, 0, 0, 0.3));
    border: 2px solid rgba(255, 0, 64, 0.3);
    box-shadow: 
        0 10px 30px rgba(255, 0, 64, 0.3),
        0 0 20px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.gaming-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 30px 60px rgba(255, 0, 64, 0.6),
        0 0 50px rgba(0, 0, 0, 0.8),
        0 0 80px rgba(255, 0, 64, 0.4),
        inset 0 0 30px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 0, 64, 0.8);
}

.gaming-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.8) contrast(1.2) saturate(1.3);
}

.gaming-item:hover .gaming-showcase-img {
    transform: scale(1.15);
    filter: brightness(1.1) contrast(1.4) saturate(1.5);
}

.gaming-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 20px 20px;
    color: white;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.gaming-item:hover .gaming-overlay {
    transform: translateY(0);
}

.gaming-overlay h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(45deg, #ff0040, #8a2be2, #ff0040);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 0, 64, 0.8);
}

/* Gaming Gallery Styles */
.gaming-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.gaming-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    transition: all 0.3s ease;
}

.gaming-image-container:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(255, 0, 64, 0.5),
        0 0 40px rgba(138, 43, 226, 0.4),
        0 0 60px rgba(138, 43, 226, 0.3);
    border: 2px solid rgba(138, 43, 226, 0.5);
}

.gaming-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gaming-image-container:hover .gaming-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gaming-image-container:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

/* Performance Showcase Styles */
.performance-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    max-width: 800px;
    margin: 0 auto;
    border: 3px solid rgba(255, 0, 64, 0.5);
    box-shadow: 
        0 20px 40px rgba(255, 0, 64, 0.4),
        0 0 30px rgba(138, 43, 226, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.performance-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.4) saturate(1.5);
}

.performance-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 0, 64, 0.3), 
        rgba(138, 43, 226, 0.2), 
        rgba(138, 43, 226, 0.3),
        rgba(255, 107, 0, 0.2));
    background-size: 400% 400%;
    animation: overlayShift 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.performance-stats {
    display: flex;
    gap: 50px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 
        0 0 20px rgba(255, 0, 64, 0.8),
        0 0 40px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(255, 0, 64, 0.6);
    font-family: 'Orbitron', monospace;
    animation: statGlow 2s ease-in-out infinite alternate;
}

.stat-label {
    font-size: 1rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

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

@keyframes colorShift {
    0%, 100% { 
        background: linear-gradient(135deg, 
            rgba(0, 0, 0, 0.7) 0%, 
            rgba(255, 0, 64, 0.3) 25%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(255, 0, 64, 0.2) 75%,
            rgba(0, 0, 0, 0.4) 100%);
    }
    25% { 
        background: linear-gradient(135deg, 
            rgba(0, 0, 0, 0.7) 0%, 
            rgba(0, 0, 0, 0.5) 25%,
            rgba(255, 0, 64, 0.3) 50%,
            rgba(255, 0, 64, 0.2) 75%,
            rgba(0, 0, 0, 0.4) 100%);
    }
    50% { 
        background: linear-gradient(135deg, 
            rgba(0, 0, 0, 0.7) 0%, 
            rgba(0, 0, 0, 0.5) 25%,
            rgba(255, 0, 64, 0.3) 50%, 
            rgba(0, 0, 0, 0.4) 75%,
            rgba(255, 0, 64, 0.2) 100%);
    }
    75% { 
        background: linear-gradient(135deg, 
            rgba(0, 0, 0, 0.7) 0%, 
            rgba(255, 0, 64, 0.3) 25%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.4) 75%,
            rgba(255, 0, 64, 0.2) 100%);
    }
}

@keyframes buttonGlow {
    0% { 
        box-shadow: 
            0 0 40px rgba(255, 0, 64, 0.6), 
            0 0 60px rgba(138, 43, 226, 0.4),
            inset 0 0 30px rgba(138, 43, 226, 0.3);
    }
    100% { 
        box-shadow: 
            0 0 60px rgba(255, 0, 64, 0.8), 
            0 0 80px rgba(138, 43, 226, 0.6),
            inset 0 0 40px rgba(138, 43, 226, 0.4);
    }
}

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

@keyframes statGlow {
    0% { 
        text-shadow: 
            0 0 20px rgba(255, 0, 64, 0.8),
            0 0 40px rgba(138, 43, 226, 0.6),
            0 0 60px rgba(138, 43, 226, 0.4);
    }
    100% { 
        text-shadow: 
            0 0 30px rgba(255, 0, 64, 1),
            0 0 50px rgba(138, 43, 226, 0.8),
            0 0 70px rgba(138, 43, 226, 0.6);
    }
}

@keyframes overlayShift {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 25% 25%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 75% 75%; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes pulse {
    0% { 
        box-shadow: 
            0 0 30px rgba(255, 0, 64, 0.4),
            0 0 50px rgba(0, 0, 0, 0.6);
    }
    50% { 
        box-shadow: 
            0 0 50px rgba(255, 0, 64, 0.8),
            0 0 70px rgba(0, 0, 0, 0.8);
    }
    100% { 
        box-shadow: 
            0 0 30px rgba(255, 0, 64, 0.4),
            0 0 50px rgba(0, 0, 0, 0.6);
    }
}

@keyframes sectionShift {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 25% 25%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 75% 75%; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .gaming-showcase {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gaming-item {
        height: 180px;
    }
    
    .gaming-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gaming-image-container {
        height: 200px;
    }
    
    .performance-showcase {
        height: 250px;
    }
    
    .performance-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .comparison-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .testimonial-card {
        padding: 40px 20px;
    }
    
    .testimonial-text {
        font-size: 1.4rem;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .footer-links {
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .gaming-showcase {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gaming-item {
        height: 160px;
    }
    
    .performance-stats {
        gap: 20px;
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 10px;
    }
    
    .btn-cta {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .comparison-title {
        font-size: 1.5rem;
    }
}