/* ============================================
   VYROX - Precision. Performance. Dominance.
   Premium Gaming Software Design System
   ============================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --bg-primary: #07070A;
    --bg-secondary: #0B0B10;
    --bg-tertiary: #111119;
    --bg-card: rgba(17, 17, 25, 0.6);
    --bg-card-hover: rgba(17, 17, 25, 0.8);
    --accent: #7C3AED;
    --accent-light: #A78BFA;
    --accent-dark: #5B21B6;
    --accent-glow: rgba(124, 58, 237, 0.2);
    --accent-glow-subtle: rgba(124, 58, 237, 0.08);
    --blue-accent: #3B82F6;
    --blue-soft: #60A5FA;
    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    --text-dim: #4B5563;
    --status-online: #22C55E;
    --status-warning: #EAB308;
    --status-offline: #EF4444;
    --border-glass: rgba(255, 255, 255, 0.06);
    --border-glass-hover: rgba(124, 58, 237, 0.25);
    --border-active: rgba(124, 58, 237, 0.4);
    --shadow-glow: 0 8px 32px rgba(124, 58, 237, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --glass-blur: blur(24px);
    --font-primary: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --section-padding: 6rem 2rem;
    --container-max: 1280px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--accent) var(--bg-primary); }

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-light); }

/* ===== BACKGROUND GRID ===== */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    z-index: 0;
}

/* ===== AMBIENT GLOW ===== */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}
.ambient-glow-1 {
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent 70%);
}
.ambient-glow-2 {
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 70%);
}

/* ===== PARTICLE CANVAS ===== */
#particleCanvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0; opacity: 0.4;
}

/* ===== UTILITY CLASSES ===== */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 2rem; }
.section { padding: var(--section-padding); position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 4rem; }

/* Section Tag Badge */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 100px;
    color: var(--accent-light);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-light) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: var(--glass-blur);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--accent);
    color: var(--accent-light);
}
.btn-outline:hover {
    background: rgba(124, 58, 237, 0.1);
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.2);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: none;
}
.btn-ghost:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

.btn-discord {
    background: #5865F2;
    color: #fff;
}
.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.3);
}

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.8125rem; border-radius: var(--radius-sm); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.0625rem; border-radius: var(--radius-lg); }

.btn-icon {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-secondary);
    transition: all var(--transition-base);
}
.btn-icon:hover {
    color: var(--text-primary);
    border-color: var(--accent);
    background: rgba(124, 58, 237, 0.08);
    transform: translateY(-2px);
}

/* ===== GLASS CARD ===== */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
    border-radius: inherit;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(124, 58, 237, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.glass-card:hover {
    border-color: var(--border-glass-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}
.glass-card:hover::before { opacity: 1; }
.glass-card:hover::after { opacity: 1; }

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--transition-base);
}
.navbar.scrolled {
    background: rgba(7, 7, 10, 0.85);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
    padding: 0.75rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1.375rem;
    font-family: var(--font-display);
    letter-spacing: 1px;
}
.nav-logo .logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.25);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}
.nav-links li a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
}
.nav-links li a:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.04);
}
.nav-links li a.active {
    color: var(--accent-light);
    background: rgba(124, 58, 237, 0.08);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Cart Badge */
.cart-btn {
    position: relative;
}
.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
    color: #fff;
    border: 2px solid var(--bg-primary);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}
.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.main-content {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 200px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content { max-width: 600px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.125rem;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 100px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}
.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--status-online);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
.hero-badge-text {
    color: var(--accent-light);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-display);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.02;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* Hero Visual - Holographic Dashboard */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.15s both;
}

.holo-dashboard {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(59, 130, 246, 0.04));
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 0 0 60px rgba(124, 58, 237, 0.08), inset 0 1px 0 rgba(255,255,255,0.05);
}

.holo-dashboard::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(124, 58, 237, 0.1), transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(59, 130, 246, 0.06), transparent 50%);
    pointer-events: none;
}

.holo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}
.holo-dots {
    display: flex;
    gap: 6px;
}
.holo-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-dim);
}
.holo-dots span:nth-child(1) { background: #EF4444; }
.holo-dots span:nth-child(2) { background: #EAB308; }
.holo-dots span:nth-child(3) { background: #22C55E; }
.holo-status {
    font-size: 0.75rem;
    color: var(--accent-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}
.holo-status::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--status-online);
    animation: pulse-dot 2s ease-in-out infinite;
}

.holo-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    position: relative;
}

.holo-metric {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    padding: 1rem;
    transition: all var(--transition-fast);
}
.holo-metric:hover { background: rgba(124, 58, 237, 0.04); }
.holo-metric-label {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.375rem;
}
.holo-metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-display);
}
.holo-metric-bar {
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    margin-top: 0.5rem;
    overflow: hidden;
}
.holo-metric-bar-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    width: 0%;
    animation: bar-fill 2s ease 1s forwards;
}

.holo-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
}
.holo-bottom-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
}
.holo-bottom-icon {
    color: var(--accent-light);
    font-size: 0.875rem;
    animation: float 3s ease-in-out infinite;
}

/* Floating elements */
.holo-float {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent-light);
    animation: float 4s ease-in-out infinite;
    pointer-events: none;
}
.holo-float-1 { top: -12px; right: -12px; animation-delay: 0s; }
.holo-float-2 { bottom: 10%; left: -16px; animation-delay: 1.5s; width: 32px; height: 32px; font-size: 0.8125rem; }
.holo-float-3 { top: 30%; right: -20px; animation-delay: 3s; width: 36px; height: 36px; font-size: 0.875rem; }

/* ===== FEATURES SECTION ===== */
.features { padding: var(--section-padding); position: relative; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
}
.feature-card.large { grid-column: span 2; display: flex; align-items: center; text-align: left; gap: 1.5rem; padding: 2rem; }

.feature-icon-wrap {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(59, 130, 246, 0.06));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.25rem;
    color: var(--accent-light);
    border: 1px solid rgba(124, 58, 237, 0.15);
    transition: all var(--transition-base);
}
.feature-card.large .feature-icon-wrap { margin: 0 0 0 0; flex-shrink: 0; }
.feature-card:hover .feature-icon-wrap {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
    transform: scale(1.05) translateY(-2px);
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}
.feature-card.large h3 { font-size: 1.125rem; }
.feature-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}
.feature-card.large p { max-width: 400px; }

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 4rem 2rem;
    position: relative;
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.03), transparent);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
}
.stat-item {
    text-align: center;
    padding: 2rem;
}
.stat-number {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-display);
    letter-spacing: -1px;
    margin-bottom: 0.375rem;
}
.stat-number .accent { color: var(--accent-light); }
.stat-label {
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: 500;
}
.stat-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(124, 58, 237, 0.3), transparent);
    margin: 0 auto;
}

/* ===== PRODUCTS SECTION ===== */
.products-section { padding: var(--section-padding); position: relative; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.product-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: 0;
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    transition: all var(--transition-base);
    position: relative;
}
.product-card:hover {
    border-color: var(--border-glass-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}

.product-card-header {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-tertiary), rgba(124, 58, 237, 0.05));
}
.product-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.06), transparent 50%);
    animation: rotate-slow 20s linear infinite;
}
.product-card-header .game-icon {
    font-size: 3rem;
    color: rgba(124, 58, 237, 0.3);
    position: relative;
    z-index: 1;
}

.product-status {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}
.product-status.supported {
    background: rgba(34, 197, 94, 0.15);
    color: var(--status-online);
    border: 1px solid rgba(34, 197, 94, 0.2);
}
.product-status.undetected {
    background: rgba(124, 58, 237, 0.15);
    color: var(--accent-light);
    border: 1px solid rgba(124, 58, 237, 0.2);
}
.product-status.maintenance {
    background: rgba(234, 179, 8, 0.15);
    color: var(--status-warning);
    border: 1px solid rgba(234, 179, 8, 0.2);
}

.product-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}
.product-card-body h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
    font-family: var(--font-display);
}
.product-card-body .product-desc {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.product-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.product-spec {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}
.product-spec i { color: var(--accent-light); font-size: 0.625rem; }

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-glass);
}
.product-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-light);
    font-family: var(--font-display);
}

/* ===== WHY VYROX SECTION ===== */
.why-vyrox { padding: var(--section-padding); position: relative; }

.why-grid {
    display: grid;
    gap: 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.why-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
}
.why-row.reverse { direction: rtl; }
.why-row.reverse .why-content { direction: ltr; }
.why-row.reverse .why-visual { direction: ltr; }

.why-content { max-width: 540px; }
.why-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--accent-light);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.why-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
    letter-spacing: -0.5px;
}
.why-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.why-features {
    list-style: none;
}
.why-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}
.why-features li i {
    width: 20px;
    color: var(--accent-light);
    font-size: 0.75rem;
}

.why-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.why-visual-box {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.04), rgba(59, 130, 246, 0.02));
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.6;
    position: relative;
    overflow: hidden;
}
.why-visual-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.1), transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    overflow: hidden;
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
}
.testimonials-inner {
    display: flex;
    gap: 1.5rem;
    animation: scroll-testimonials 30s linear infinite;
    padding: 1rem 0;
}
.testimonials:hover .testimonials-inner {
    animation-play-state: paused;
}

.testimonial-card {
    min-width: 320px;
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    flex-shrink: 0;
}
.testimonial-card:hover {
    border-color: var(--border-glass-hover);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.testimonial-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
}
.testimonial-info .stars {
    color: #EAB308;
    font-size: 0.75rem;
    letter-spacing: 2px;
}
.testimonial-quote {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
    font-style: italic;
}

/* ===== FAQ SECTION ===== */
.faq-section { padding: var(--section-padding); position: relative; }
.faq-container {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-glass);
    padding: 0.25rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--border-glass); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
    font-family: var(--font-primary);
}
.faq-question:hover { color: var(--accent-light); }
.faq-question .faq-icon {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}
.faq-item.active .faq-question .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), opacity var(--transition-base), padding var(--transition-base);
    opacity: 0;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    padding-bottom: 1.25rem;
}
.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(124, 58, 237, 0.06);
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 1;
}
.footer-container { max-width: var(--container-max); margin: 0 auto; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-display);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.footer-brand .footer-logo i {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #fff;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 0.625rem;
}
.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}
.social-link:hover {
    background: rgba(124, 58, 237, 0.08);
    border-color: var(--accent);
    color: var(--accent-light);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    font-family: var(--font-display);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-links li a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
    text-align: center;
    padding: 8rem 2rem 0;
    position: relative;
    z-index: 1;
}
.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    font-family: var(--font-display);
    margin-bottom: 0.75rem;
}
.page-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 480px;
    margin: 0 auto;
}

/* ===== PRODUCTS PAGE ===== */
.products-page { padding: 2rem 2rem 4rem; }
.products-page .products-grid { margin-top: 2rem; }

/* ===== STATUS PAGE ===== */
.status-page { padding: 2rem 2rem 4rem; }
.status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: var(--container-max);
    margin: 2rem auto 0;
}
.status-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
}
.status-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    position: relative;
}
.status-indicator.online { background: var(--status-online); box-shadow: 0 0 20px rgba(34, 197, 94, 0.3); }
.status-indicator.operational { background: var(--accent); box-shadow: 0 0 20px rgba(124, 58, 237, 0.3); }
.status-indicator.available { background: var(--blue-accent); box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }

.status-indicator::after {
    content: '';
    position: absolute;
    top: -4px; left: -4px; right: -4px; bottom: -4px;
    border-radius: 50%;
    border: 2px solid currentColor;
    animation: ping 2s ease-in-out infinite;
    opacity: 0.2;
}
.status-indicator.online::after { border-color: var(--status-online); }
.status-indicator.operational::after { border-color: var(--accent); }
.status-indicator.available::after { border-color: var(--blue-accent); }

.status-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
    font-family: var(--font-display);
}
.status-card .status-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.status-card .status-label.online-label { color: var(--status-online); }
.status-card .status-label.operational-label { color: var(--accent-light); }
.status-card .status-label.available-label { color: var(--blue-soft); }
.status-card .status-response {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== CHANGELOG PAGE ===== */
.changelog-page { padding: 2rem 2rem 4rem; }
.timeline {
    max-width: 680px;
    margin: 2rem auto 0;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), rgba(124, 58, 237, 0.05));
}
.timeline-entry {
    position: relative;
    padding-left: 72px;
    margin-bottom: 2rem;
}
.timeline-dot {
    position: absolute;
    left: 20px;
    top: 8px;
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
}
.timeline-card {
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
}
.timeline-card .version {
    font-size: 1.125rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--accent-light);
    margin-bottom: 0.25rem;
}
.timeline-card .date {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.timeline-card ul { list-style: none; }
.timeline-card ul li {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    padding: 0.375rem 0;
    padding-left: 1.5rem;
    position: relative;
}
.timeline-card ul li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--accent-light);
}

/* ===== SUPPORT PAGE ===== */
.support-page { padding: 2rem 2rem 4rem; }
.support-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: var(--container-max);
    margin: 2rem auto 0;
    align-items: start;
}
.support-info h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}
.support-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.support-methods { display: flex; flex-direction: column; gap: 0.75rem; }

.support-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}
.support-method:hover {
    border-color: var(--border-glass-hover);
    background: rgba(124, 58, 237, 0.04);
    transform: translateX(4px);
}
.support-method .method-icon {
    width: 42px;
    height: 42px;
    background: rgba(124, 58, 237, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1rem;
    flex-shrink: 0;
}
.support-method .method-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
}
.support-method .method-info span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.contact-form {
    padding: 2.5rem;
    border-radius: var(--radius-xl);
}
.contact-form h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.125rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.1);
    background: rgba(255,255,255,0.05);
}
.form-group textarea { height: 140px; resize: vertical; }

.form-message {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}
.form-message.success {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: var(--status-online);
}
.form-message.error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--status-offline);
}

/* ===== LOGIN PAGE ===== */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
}
.login-container {
    width: 100%;
    max-width: 420px;
}
.login-card {
    padding: 2.5rem 2.5rem;
    border-radius: var(--radius-xl);
}
.login-header { text-align: center; margin-bottom: 2rem; }
.login-header .login-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.25rem;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
}
.login-header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.375rem;
    font-family: var(--font-display);
}
.login-header p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}
.login-form .btn { width: 100%; justify-content: center; padding: 1rem; margin-top: 0.5rem; }

.login-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem 0;
    color: var(--text-muted);
    font-size: 0.8125rem;
}
.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-glass);
}

.login-footer-text {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 1.5rem;
}
.login-footer-text a {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 600;
}
.login-footer-text a:hover { text-decoration: underline; }

.login-error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--status-offline);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: none;
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.25);
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

/* ===== KEYFRAMES ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes ping {
    0% { transform: scale(1); opacity: 0.2; }
    100% { transform: scale(2); opacity: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

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

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bar-fill {
    from { width: 0%; }
    to { width: 82%; }
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { max-width: 420px; margin: 0 auto; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .stat-divider:nth-child(4) { display: none; }
    
    .why-row { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .why-row.reverse { direction: ltr; }
    .why-content { max-width: 100%; }
    .why-features li { justify-content: center; }
    .why-visual-box { max-width: 300px; }
    
    .support-container { grid-template-columns: 1fr; gap: 2rem; }
    .support-info { order: 2; }
    .contact-form { order: 1; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .status-grid { grid-template-columns: 1fr; max-width: 400px; }
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
    .feature-card.large { grid-column: span 1; flex-direction: column; text-align: center; }
    .feature-card.large .feature-icon-wrap { margin: 0 auto 1.25rem; }
    .feature-card.large p { max-width: 100%; }
    
    .section { padding: 4rem 1.5rem; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(7, 7, 10, 0.96);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 0.25rem;
        transition: right var(--transition-base);
        z-index: 999;
        border-left: 1px solid rgba(124, 58, 237, 0.08);
    }
    .nav-links.active { right: 0; }
    .nav-links li a { padding: 0.75rem 1rem; font-size: 0.9375rem; width: 100%; }
    .nav-toggle { display: flex; }
    .nav-overlay { display: block; }
    .nav-actions .btn span { display: none; }
    
    .hero { padding: 6rem 1.5rem 4rem; }
    .products-grid { grid-template-columns: 1fr; }
    .timeline-entry { padding-left: 56px; }
    .timeline::before { left: 20px; }
    .timeline-dot { left: 12px; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .login-card { padding: 2rem 1.5rem; }
    .testimonial-card { min-width: 280px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .products-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

