/* =========================================
   GankAI Landing Page - gankai.gg
   ========================================= */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #0f1428;
    --bg-card: rgba(15, 20, 40, 0.7);
    --bg-glass: rgba(20, 30, 60, 0.4);
    --accent: #3cb8ff;
    --accent-glow: rgba(60, 184, 255, 0.3);
    --accent-dim: rgba(60, 184, 255, 0.1);
    --gold: #ffd700;
    --gold-glow: rgba(255, 215, 0, 0.3);
    --text-primary: #e8eaf0;
    --text-secondary: #8b92a8;
    --text-muted: #5a6178;
    --border: rgba(60, 184, 255, 0.12);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --success: #4ade80;
    --danger: #f87171;
    --warning: #fbbf24;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
.logo-gank {
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.logo-ai {
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.text-accent {
    color: var(--accent);
}

.text-gold {
    color: var(--gold);
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.3s ease;
    background: transparent;
}

.nav.scrolled {
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

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

.nav-links .nav-cta {
    background: var(--accent);
    color: #000;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-links .nav-cta:hover {
    background: #5cc8ff;
    color: #000;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 0;
    gap: 8px;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-menu a {
    padding: 12px 0;
    font-size: 1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu.open {
    display: flex;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    font-family: var(--font);
}

.btn-primary {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow), 0 4px 12px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    background: #5cc8ff;
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--accent-glow), 0 8px 24px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(60, 184, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.btn-glow {
    animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 20px var(--accent-glow), 0 4px 12px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 0 35px var(--accent-glow), 0 4px 20px rgba(0,0,0,0.3); }
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(60, 184, 255, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(60, 184, 255, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-20vh) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(4rem, 12vw, 7rem);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

.hero-tagline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
    50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

/* --- Sections --- */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Features --- */
.features {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    background: rgba(20, 30, 60, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- How It Works --- */
.steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 640px;
    margin: 0 auto;
    gap: 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    width: 100%;
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #1a8cd8);
    color: #000;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 24px var(--accent-glow);
}

.step-content {
    padding-top: 4px;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-connector {
    width: 2px;
    height: 48px;
    background: linear-gradient(180deg, var(--accent), transparent);
    margin-left: 27px;
    opacity: 0.3;
}

/* --- Stats --- */
.stats {
    background:
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(60, 184, 255, 0.05) 0%, transparent 60%),
        var(--bg-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--border);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

.stat-text {
    color: var(--gold);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.stat-detail {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- Post-Game Analysis --- */
.post-game {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.postgame-showcase {
    max-width: 680px;
    margin: 0 auto;
    perspective: 1000px;
}

.postgame-card {
    background: linear-gradient(165deg, rgba(20, 28, 55, 0.95), rgba(12, 16, 32, 0.98));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
    box-shadow:
        0 0 40px rgba(60, 184, 255, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.4);
}

.postgame-header {
    padding: 28px 32px 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.postgame-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.postgame-label {
    font-size: 1.1rem;
    font-weight: 700;
}

.postgame-result {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

.postgame-win {
    background: rgba(74, 222, 128, 0.15);
    color: var(--success);
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.postgame-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.postgame-dot {
    color: var(--text-muted);
}

.postgame-grade-section {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    border-bottom: 1px solid var(--border-subtle);
}

.postgame-grade-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #1a8cd8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 24px var(--accent-glow);
}

.postgame-grade {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
}

.postgame-grade-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.postgame-grade-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.postgame-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-bottom: 1px solid var(--border-subtle);
}

.postgame-stat {
    padding: 20px;
    text-align: center;
    border-right: 1px solid var(--border-subtle);
}

.postgame-stat:last-child {
    border-right: none;
}

.postgame-stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.postgame-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.postgame-breakdown {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-subtle);
}

.postgame-breakdown-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.postgame-bar-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.postgame-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.postgame-bar-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    width: 120px;
    flex-shrink: 0;
}

.postgame-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    overflow: hidden;
}

.postgame-bar-fill {
    height: 100%;
    width: var(--bar-width);
    background: linear-gradient(90deg, var(--accent), #1a8cd8);
    border-radius: 100px;
    transition: width 1.5s ease-out;
}

.postgame-bar-grade {
    font-size: 0.85rem;
    font-weight: 700;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.grade-s { color: var(--gold); }
.grade-a { color: var(--success); }
.grade-b { color: var(--accent); }
.grade-c { color: var(--warning); }

.postgame-tips {
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.postgame-tip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.tip-icon {
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 4px;
    font-weight: 700;
}

.tip-positive { color: var(--success); }
.tip-negative { color: var(--danger); }
.tip-neutral { color: var(--text-muted); }

/* --- Early Access CTA --- */
.early-access {
    background:
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(60, 184, 255, 0.06) 0%, transparent 60%),
        var(--bg-primary);
}

.cta-card {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 64px 48px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.5;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    letter-spacing: -0.03em;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    position: relative;
    line-height: 1.7;
}

.cta-form {
    position: relative;
    margin-bottom: 32px;
}

.cta-input-group {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.cta-input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font);
    outline: none;
    transition: all 0.2s ease;
}

.cta-input::placeholder {
    color: var(--text-muted);
}

.cta-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.cta-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    position: relative;
}

.cta-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.cta-link:hover {
    color: var(--accent);
}

.cta-link svg {
    opacity: 0.8;
}

/* --- Footer --- */
.footer {
    padding: 48px 0 32px;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.feature-grid .fade-in:nth-child(1) { transition-delay: 0ms; }
.feature-grid .fade-in:nth-child(2) { transition-delay: 80ms; }
.feature-grid .fade-in:nth-child(3) { transition-delay: 160ms; }
.feature-grid .fade-in:nth-child(4) { transition-delay: 240ms; }
.feature-grid .fade-in:nth-child(5) { transition-delay: 320ms; }
.feature-grid .fade-in:nth-child(6) { transition-delay: 400ms; }

.stats-grid .fade-in:nth-child(1) { transition-delay: 0ms; }
.stats-grid .fade-in:nth-child(2) { transition-delay: 100ms; }
.stats-grid .fade-in:nth-child(3) { transition-delay: 200ms; }
.stats-grid .fade-in:nth-child(4) { transition-delay: 300ms; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .section {
        padding: 80px 0;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-title {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 28px 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .postgame-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .postgame-stat:nth-child(2) {
        border-right: none;
    }

    .postgame-grade-section {
        flex-direction: column;
        text-align: center;
    }

    .postgame-bar-label {
        width: 90px;
        font-size: 0.8rem;
    }

    .postgame-header,
    .postgame-grade-section,
    .postgame-breakdown,
    .postgame-tips {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cta-card {
        padding: 48px 24px;
    }

    .cta-input-group {
        flex-direction: column;
    }

    .cta-links {
        flex-direction: column;
        gap: 16px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .step {
        gap: 20px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .step-connector {
        margin-left: 23px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .postgame-stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* --- Utility --- */
@media (prefers-reduced-motion: reduce) {
    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .particle {
        animation: none !important;
    }

    .scroll-arrow {
        animation: none;
    }

    .btn-glow {
        animation: none;
    }
}
