/* RemoveRed Premium Landing Page - Jaw-Dropping Design */

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

:root {
    --primary-red: #ff0040;
    --dark-red: #cc0033;
    --blood-red: #8b0000;
    --neon-red: #ff073a;
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --glass-white: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
}

/* Custom Fonts */
@font-face {
    font-family: 'ClashDisplay';
    src: url('/assets/landing-page/Fonts/ClashDisplayVariable.ttf') format('truetype');
    font-weight: 200 700;
    font-display: swap;
}

@font-face {
    font-family: 'ClashDisplayBold';
    src: url('/assets/landing-page/Fonts/ClashDisplayBold.otf');
    font-display: swap;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'ClashDisplay', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--black);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(ellipse at top left, rgba(255, 0, 64, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
        var(--black);
}

/* Animated Gradient Orbs */
.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    animation: float 20s infinite ease-in-out;
    pointer-events: none;
    z-index: -3;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-red);
    top: 20%;
    left: -200px;
    animation-duration: 25s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--neon-red);
    bottom: 10%;
    right: -150px;
    animation-duration: 30s;
    animation-delay: -5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--dark-red);
    top: 60%;
    left: 70%;
    animation-duration: 35s;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(100px, -100px) scale(1.1);
    }
    50% {
        transform: translate(-100px, 100px) scale(0.9);
    }
    75% {
        transform: translate(50px, 50px) scale(1.05);
    }
}

/* Particle Network Background */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

/* Glass Morphism Container */
.glass-container {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px 0 rgba(255, 0, 64, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background: rgba(10, 10, 10, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 0, 64, 0.3);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(255, 0, 64, 0.3));
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 4px 12px rgba(255, 0, 64, 0.5));
    transform: scale(1.05);
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--neon-red));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-red);
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px 0 rgba(255, 0, 64, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

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

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px 0 rgba(255, 0, 64, 0.4);
}

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

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

.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 0, 64, 0.1);
    border: 1px solid rgba(255, 0, 64, 0.3);
    border-radius: 30px;
    font-size: 0.875rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #ff0040 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

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

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(255, 0, 64, 0.3),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(255, 0, 64, 0.4),
        inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}

/* Floating Elements */
.floating-element {
    position: fixed;
    opacity: 0.05;
    animation: float-random 30s infinite ease-in-out;
    pointer-events: none;
    z-index: -1;
}

.float-1 {
    top: 30%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.float-2 {
    top: 70%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: var(--dark-red);
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    animation-delay: -10s;
}

.float-3 {
    bottom: 30%;
    left: 85%;
    width: 50px;
    height: 50px;
    background: var(--neon-red);
    border-radius: 50%;
    animation-delay: -20s;
}

@keyframes float-random {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -50px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 30px) rotate(180deg);
    }
    75% {
        transform: translate(40px, 20px) rotate(270deg);
    }
}

/* Features Section */
.features-section {
    padding: 6rem 2rem;
    position: relative;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 0, 64, 0.1);
    border: 1px solid rgba(255, 0, 64, 0.3);
    border-radius: 30px;
    font-size: 0.875rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-red), var(--neon-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 3rem;
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 64, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 64, 0.3);
    box-shadow: 
        0 20px 40px rgba(255, 0, 64, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(255, 0, 64, 0.3);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(255, 0, 64, 0.05), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-red), var(--neon-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 2rem;
    position: relative;
}

.pricing-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.pricing-card {
    padding: 4rem;
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--neon-red), var(--primary-red));
    background-size: 200% 100%;
    animation: gradient-slide 3s linear infinite;
}

@keyframes gradient-slide {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.price-label {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-red), var(--neon-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 2rem;
}

.price-currency {
    font-size: 2rem;
    vertical-align: top;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
}

.payment-icon {
    width: 60px;
    height: 60px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 64, 0.3);
    box-shadow: 0 10px 20px rgba(255, 0, 64, 0.2);
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 0, 64, 0.3);
    box-shadow: 0 10px 30px rgba(255, 0, 64, 0.2);
    background: rgba(255, 0, 64, 0.1);
}

.contact-icon {
    width: 40px;
    height: 40px;
}

.contact-text {
    font-weight: 500;
}

.contact-username {
    color: var(--primary-red);
}

/* Footer */
footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu {
    display: none;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.1s;
}

.fade-in-delay-2 {
    animation-delay: 0.2s;
}

.fade-in-delay-3 {
    animation-delay: 0.3s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: all 0.3s ease;
        z-index: 999;
        visibility: hidden;
        opacity: 0;
    }
    
    .mobile-menu.active {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }
    
    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .mobile-menu .nav-link {
        font-size: 1.5rem;
    }
    
    .mobile-close {
        position: absolute;
        top: 2rem;
        right: 2rem;
        background: none;
        border: none;
        color: var(--text-primary);
        font-size: 2rem;
        cursor: pointer;
    }
    
    .hero-section {
        padding: 6rem 1rem 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        padding: 3rem 2rem;
    }
    
    .price-amount {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
}

/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-red);
}

/* Selection */
::selection {
    background: var(--primary-red);
    color: white;
}

::-moz-selection {
    background: var(--primary-red);
    color: white;
}
/* Interactive Demo Section - BREATHTAKING ANIMATIONS */
.demo-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 0, 64, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 64, 0.05) 0%, transparent 50%);
    pointer-events: none;
    transform: translateZ(0);
}

/* Disable heavy animations on mobile for performance */
@media (max-width: 768px) {
    .demo-section::before {
        display: none;
    }
    
    .gradient-orb,
    .floating-element,
    .pricing-glow {
        display: none !important;
    }
    
    .domain-card,
    .timeline-item,
    .metric-card {
        transition: opacity 0.3s ease !important;
    }
    
    .loader-bar {
        animation: loading 3s ease-in-out infinite !important;
    }
    
    #particles-canvas {
        display: none;
    }
    
    .pricing-card-modern {
        transform: none !important;
    }
}

.max-w-7xl {
    max-width: 1280px;
    margin: 0 auto;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
}

.demo-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.demo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--neon-red), var(--primary-red));
}

.demo-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Domain Status Card */
.domain-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(15, 15, 15, 0.9) 100%);
    border: 2px solid #ff4444;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.domain-card.flagged {
    border-color: #ff4444;
    box-shadow: 0 0 30px rgba(255, 68, 68, 0.3);
}

.domain-card.clean {
    border-color: #00ff88;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.domain-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.domain-icon {
    font-size: 2.5rem;
}

.domain-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.domain-status {
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s ease;
}

.status-indicators {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.status-indicator.active {
    background: rgba(255, 0, 64, 0.1);
    border-color: var(--primary-red);
    transform: scale(1.02);
}

.indicator-icon {
    font-size: 1.5rem;
    min-width: 1.5rem;
}

.indicator-text {
    flex: 1;
}

.indicator-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.indicator-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    transition: all 0.3s ease;
}

/* Animated Loaders */
.indicator-loader {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-bar {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), var(--neon-red));
    border-radius: 2px;
    transform: translateX(-100%);
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0%); }
    100% { transform: translateX(100%); }
}

.indicator-progress {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), var(--neon-red));
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated Checkmark */
.indicator-checkmark {
    width: 24px;
    height: 24px;
}

.checkmark {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    stroke-width: 2;
    stroke: #00ff88;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #00ff88;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #00ff88;
    animation: stroke-circle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke-check 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke-circle {
    0% { stroke-dashoffset: 166; }
    100% { stroke-dashoffset: 0; }
}

@keyframes stroke-check {
    0% { stroke-dashoffset: 48; }
    100% { stroke-dashoffset: 0; }
}

/* Timeline */
.timeline-container {
    position: relative;
    padding-left: 2rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-red), rgba(255, 0, 64, 0.2));
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    opacity: 0.4;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.active {
    opacity: 1;
    transform: translateX(8px);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.25rem;
    width: 12px;
    height: 12px;
    background: var(--primary-red);
    border-radius: 50%;
    border: 2px solid var(--black);
    transition: all 0.4s ease;
}

.timeline-item.active::before {
    background: var(--neon-red);
    box-shadow: 0 0 20px var(--primary-red);
    transform: scale(1.2);
}

.timeline-icon {
    font-size: 1.5rem;
    min-width: 1.5rem;
}

.timeline-content {
    flex: 1;
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.timeline-time {
    font-size: 0.8rem;
    color: var(--primary-red);
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.replay-button {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-red), var(--neon-red));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.replay-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 0, 64, 0.4);
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.metric-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--neon-red));
}

.metric-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.metric-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), var(--neon-red));
    border-radius: 3px;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern Pricing - SPECTACULAR DESIGN */
.pricing-section-modern {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 50%, var(--dark-gray) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 64, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse-glow 4s ease-in-out infinite;
}

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

.pricing-card-modern {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(40px);
    border: 2px solid rgba(255, 0, 64, 0.4);
    border-radius: 32px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(255, 0, 64, 0.1),
        inset 0 0 50px rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card-modern:hover {
    transform: translateY(-10px) rotateX(2deg);
    border-color: rgba(255, 0, 64, 0.6);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.6),
        0 0 150px rgba(255, 0, 64, 0.2),
        inset 0 0 60px rgba(255, 255, 255, 0.08);
}

.pricing-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent,
        rgba(255, 0, 64, 0.3),
        transparent,
        rgba(255, 0, 64, 0.3),
        transparent
    );
    animation: rotate-glow 10s linear infinite;
    opacity: 0.5;
}

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

.pricing-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, 
        var(--primary-red) 0%, 
        var(--neon-red) 25%, 
        var(--primary-red) 50%, 
        var(--neon-red) 75%, 
        var(--primary-red) 100%);
    background-size: 200% 100%;
    animation: gradient-slide 3s linear infinite;
}

.pricing-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-red), var(--neon-red));
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(255, 0, 64, 0.4);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 5px 20px rgba(255, 0, 64, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 8px 30px rgba(255, 0, 64, 0.6); }
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.pricing-currency {
    font-size: 2.5rem;
    color: var(--primary-red);
    font-weight: 700;
    animation: currency-glow 2s ease-in-out infinite;
}

@keyframes currency-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 0, 64, 0.5); }
    50% { text-shadow: 0 0 40px rgba(255, 0, 64, 0.8); }
}

.pricing-number {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-red) 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0.5rem;
    animation: gradient-shift 3s ease infinite;
}

.pricing-period {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.pricing-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

.pricing-features {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 64, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover {
    border-color: rgba(255, 0, 64, 0.3);
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05);
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item i {
    color: var(--primary-red);
    font-size: 1.2rem;
    min-width: 1.8rem;
}

.feature-item.feature-new {
    border: 1px solid rgba(255, 0, 64, 0.3);
    background: rgba(255, 0, 64, 0.05);
}

.new-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--neon-red);
    color: white;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: new-pulse 1.5s ease-in-out infinite;
}

@keyframes new-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.feature-time {
    margin-left: auto;
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.8;
}

.feature-more {
    position: relative;
    display: inline-block;
    margin-top: 1rem;
}

.more-features-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.more-features-text:hover {
    color: var(--neon-red);
    transform: translateX(5px);
}

.feature-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 350px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.feature-more:hover .feature-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.tooltip-content {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(15, 15, 15, 0.98) 100%);
    border: 2px solid rgba(255, 0, 64, 0.4);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
}

.tooltip-content h4 {
    color: var(--primary-red);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tooltip-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tooltip-content li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tooltip-content li:last-child {
    border-bottom: none;
}

.tooltip-content li i {
    color: var(--primary-red);
    font-size: 1rem;
    min-width: 1rem;
}

.payment-methods-modern {
    text-align: center;
    margin: 2rem 0 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.payment-methods-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 64, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
}

.payment-label {
    display: block;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.crypto-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.crypto-icon-wrapper {
    position: relative;
    padding: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.crypto-icon-wrapper::before {
    content: attr(data-crypto);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.crypto-icon-wrapper:hover {
    background: rgba(255, 0, 64, 0.1);
    transform: translateY(-5px);
}

.crypto-icon-wrapper:hover::before {
    opacity: 1;
    bottom: -30px;
}

.crypto-icon {
    width: 32px;
    height: 32px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.crypto-icon-wrapper:hover .crypto-icon {
    opacity: 1;
    transform: scale(1.1);
}

.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1.75rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-red), var(--neon-red));
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(255, 0, 64, 0.4),
        inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

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

.pricing-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(255, 0, 64, 0.5),
        inset 0 0 0 2px rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: white;
}

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

.pricing-guarantee {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
}

.pricing-guarantee i {
    color: #00ff88;
    font-size: 1.2rem;
}

/* EPIC CONTACT SECTION - COMMAND CENTER */
.contact-section-epic {
    padding: 120px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

/* Grid background */
.contact-bg-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(rgba(255, 0, 64, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 64, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: -1px -1px;
    opacity: 0.3;
}

.contact-bg-grid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

/* Cyber badge */
.cyber-badge {
    background: linear-gradient(135deg, var(--primary-red), var(--neon-red));
    border: 2px solid var(--primary-red);
    color: white !important;
    font-weight: 700;
    box-shadow: 
        0 0 20px rgba(255, 0, 64, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: cyber-pulse 2s ease-in-out infinite;
}

@keyframes cyber-pulse {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(255, 0, 64, 0.5),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 40px rgba(255, 0, 64, 0.8),
            inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

/* Glitch text effect */
.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 0.5s infinite;
    color: var(--primary-red);
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite;
    color: var(--neon-red);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(20% 0 60% 0); transform: translate(-2px, 2px); }
    40% { clip-path: inset(50% 0 20% 0); transform: translate(2px, -2px); }
    60% { clip-path: inset(80% 0 10% 0); transform: translate(-2px, -2px); }
    80% { clip-path: inset(10% 0 80% 0); transform: translate(2px, 2px); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(80% 0 10% 0); transform: translate(2px, -2px); }
    40% { clip-path: inset(10% 0 80% 0); transform: translate(-2px, 2px); }
    60% { clip-path: inset(20% 0 60% 0); transform: translate(2px, 2px); }
    80% { clip-path: inset(50% 0 20% 0); transform: translate(-2px, -2px); }
}

.cyber-glow {
    text-shadow: 
        0 0 20px var(--primary-red),
        0 0 40px var(--primary-red),
        0 0 60px var(--neon-red);
}

/* Terminal window */
.contact-terminal {
    max-width: 1000px;
    margin: 0 auto 4rem;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    border: 2px solid rgba(255, 0, 64, 0.4);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.9),
        0 0 120px rgba(255, 0, 64, 0.15),
        inset 0 0 60px rgba(255, 0, 64, 0.03);
    position: relative;
    z-index: 10;
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-terminal:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    border-color: rgba(255, 0, 64, 0.6);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 1),
        0 0 150px rgba(255, 0, 64, 0.2),
        inset 0 0 80px rgba(255, 0, 64, 0.05);
}

.terminal-header {
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.9), rgba(20, 20, 20, 0.9));
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 0, 64, 0.2);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.terminal-btn.red { background: #ff5f56; }
.terminal-btn.yellow { background: #ffbd2e; }
.terminal-btn.green { background: #27c93f; }

.terminal-title {
    flex: 1;
    text-align: center;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.terminal-body {
    padding: 2rem 1.5rem 2rem 1.5rem;
    font-family: 'Courier New', monospace;
    min-height: auto;
    position: relative;
    background: transparent;
    border-radius: 0 0 16px 16px;
}

/* Terminal Robot */
.terminal-robot {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    opacity: 0.8;
}

.robot-ascii {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    line-height: 1.1;
    color: var(--primary-red);
    margin: 0;
    animation: robot-wave 3s ease-in-out infinite;
}

@keyframes robot-wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.terminal-line {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminal-prompt {
    color: var(--primary-red);
    font-weight: 700;
}

.terminal-text {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.status-online {
    color: #00ff88;
    font-weight: 700;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.typing-animation {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 2s steps(30, end);
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

/* Contact channels */
.contact-channels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0 2rem 0;
}

.channel-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(255, 0, 64, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.channel-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 
        0 20px 40px rgba(255, 0, 64, 0.3),
        inset 0 0 30px rgba(255, 0, 64, 0.1);
}

.channel-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 0, 64, 0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.channel-card:hover .channel-glow {
    opacity: 1;
    animation: rotate-glow 20s linear infinite;
}

.channel-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.channel-icon {
    position: relative;
}

.channel-icon img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 20px rgba(255, 0, 64, 0.5));
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    animation: pulse-ring 2s ease-in-out infinite;
}

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

.channel-info {
    flex: 1;
}

.channel-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.channel-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.channel-handle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Courier New', monospace;
}

.handle-prefix {
    color: var(--primary-red);
    font-weight: 700;
}

.handle-text {
    color: var(--text-primary);
    font-weight: 700;
}

.handle-status {
    color: #00ff88;
    font-size: 0.8rem;
    margin-left: auto;
}

.channel-connect {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-red), var(--neon-red));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 64, 0.3);
    position: relative;
    overflow: hidden;
}

.channel-connect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.channel-connect:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 0, 64, 0.5);
    text-decoration: none;
    color: white;
}

.channel-connect:hover::before {
    left: 100%;
}

.channel-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Typing cursor */
.terminal-cursor {
    display: inline-block;
    width: 10px;
    height: 20px;
    background: var(--primary-red);
    animation: cursor-blink 1s ease-in-out infinite;
}

@keyframes cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Matrix rain background */
.contact-matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

#matrix-rain {
    width: 100%;
    height: 100%;
}

.contact-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-handle {
    font-size: 0.9rem;
    color: var(--primary-red);
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.contact-arrow {
    margin-left: auto;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.contact-card-modern:hover .contact-arrow {
    color: var(--primary-red);
    transform: translateX(5px);
}

/* Mobile Responsive for Demo */
@media (max-width: 768px) {
    .demo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Epic contact section mobile */
    .contact-bg-grid {
        opacity: 0.1;
    }
    
    .contact-channels {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .terminal-header {
        padding: 0.75rem 1rem;
    }
    
    .terminal-body {
        padding: 1.5rem 1rem;
        min-height: auto;
    }
    
    .channel-card {
        padding: 1.5rem;
    }
    
    .channel-content {
        flex-direction: column;
        text-align: center;
    }
    
    .channel-stats {
        justify-content: center;
    }
    
    #matrix-rain {
        display: none;
    }
    
    .glitch-text::before,
    .glitch-text::after {
        display: none;
    }
    
    .pricing-card-modern {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .pricing-number {
        font-size: 3rem;
    }
    
    .demo-section {
        padding: 80px 0;
    }
    
    .demo-card {
        padding: 1.5rem;
    }
}
EOF < /dev/null
