/**
 * CHANGELOG
 * - 2025-12-26: Initial creation
 * - 2025-12-26: Complete redesign
 *   - Premium dark theme with glow effects
 *   - 3D rotating phone carousel
 *   - Enhanced animations
 *   - Luxury aesthetic
 * - 2025-12-27: Added contact section styling for privacy page
 */

/* =============================================================================
   CSS Variables - Premium Dark Theme
   ============================================================================= */
:root {
    /* Brand Gradient */
    --gradient-start: #38BDF8;
    --gradient-end: #3B82F6;
    --gradient-accent: #818CF8;

    /* Dark Background Palette */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a24;
    --bg-card-hover: #222230;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);
    --text-muted: rgba(255, 255, 255, 0.3);

    /* Glow Colors */
    --glow-blue: rgba(56, 189, 248, 0.5);
    --glow-purple: rgba(129, 140, 248, 0.3);
    --glow-soft: rgba(56, 189, 248, 0.15);

    /* Semantic */
    --color-error: #EF4444;
    --color-success: #10B981;

    /* Input */
    --input-bg: rgba(255, 255, 255, 0.05);
    --input-border: rgba(255, 255, 255, 0.1);
    --input-border-focus: var(--gradient-start);

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 16px;
    --spacing-xl: 24px;
    --spacing-2xl: 32px;
    --spacing-3xl: 48px;
    --spacing-4xl: 64px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================================================
   Background Effects
   ============================================================================= */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: var(--glow-blue);
    top: -200px;
    left: -100px;
    animation: float 20s ease-in-out infinite;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: var(--glow-purple);
    top: 40%;
    right: -150px;
    animation: float 25s ease-in-out infinite reverse;
}

.glow-3 {
    width: 400px;
    height: 400px;
    background: var(--glow-blue);
    bottom: -100px;
    left: 30%;
    animation: float 22s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* =============================================================================
   Layout
   ============================================================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    position: relative;
    z-index: 1;
}

/* =============================================================================
   Hero Section
   ============================================================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-4xl) 0;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Logo */
.logo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto var(--spacing-2xl);
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
    animation: logoReveal 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    transform: scale(0.5) rotateY(-30deg);
}

@keyframes logoReveal {
    to {
        opacity: 1;
        transform: scale(1) rotateY(0);
    }
}


/* Badge */
.badge {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    margin-top: var(--spacing-lg);
}

.form-wrapper .badge {
    width: 100%;
    text-align: center;
}

/* Tagline */
.tagline {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-xl);
}

.tagline-line {
    display: block;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.tagline-line:nth-child(1) { animation-delay: 0.3s; }
.tagline-line:nth-child(2) { animation-delay: 0.4s; }
.tagline-line:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtext {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

/* =============================================================================
   Signup Form
   ============================================================================= */
.signup-form {
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

.form-wrapper {
    max-width: 440px;
    margin: 0 auto;
}

.input-group {
    position: relative;
    margin-bottom: var(--spacing-md);
}

.form-row-inline {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.input-half {
    flex: 1;
    margin-bottom: 0;
}

input[type="email"],
input[type="text"],
select {
    width: 100%;
    height: 56px;
    padding: 0 var(--spacing-lg);
    font-size: 16px;
    color: var(--text-primary);
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    -webkit-appearance: none;
    appearance: none;
}

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

input:focus,
select:focus {
    outline: none;
    border-color: var(--input-border-focus);
    background: rgba(56, 189, 248, 0.05);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
}

input.error {
    border-color: var(--color-error);
    animation: shake 0.4s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.5)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.error-message {
    display: block;
    font-size: 14px;
    color: var(--color-error);
    margin-top: var(--spacing-sm);
    text-align: left;
    min-height: 20px;
}

/* Primary Button */
.btn-primary {
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow:
        0 0 20px rgba(56, 189, 248, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 30px rgba(56, 189, 248, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.btn-loading { display: none; }
.btn-primary.loading .btn-text { visibility: hidden; }
.btn-primary.loading .btn-loading {
    display: flex;
    position: absolute;
}

.spinner {
    animation: spin 1s linear infinite;
}

.spinner circle {
    stroke-dasharray: 50;
    stroke-dashoffset: 20;
}

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

/* Success Message */
.success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-2xl);
    background: var(--bg-card);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-message.show { display: flex; }
.signup-form.hidden { display: none; }

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-success), #059669);
    border-radius: 50%;
    color: white;
}

.success-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.success-text {
    font-size: 15px;
    color: var(--text-secondary);
}

/* =============================================================================
   Showcase Section
   ============================================================================= */
.showcase {
    padding: var(--spacing-4xl) 0;
    position: relative;
}

.section-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    letter-spacing: -0.02em;
}

/* =============================================================================
   3D Carousel
   ============================================================================= */
.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    perspective: 1200px;
}

.carousel {
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-track {
    position: relative;
    width: 240px;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.phone-slide {
    position: absolute;
    width: 240px;
    left: 50%;
    top: 50%;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

/* 3D positions for 4 slides */
.phone-slide[data-position="center"] {
    transform: translate(-50%, -50%) translateZ(100px) scale(1);
    opacity: 1;
    z-index: 4;
}

.phone-slide[data-position="left"] {
    transform: translate(-50%, -50%) translateX(-180px) translateZ(-50px) rotateY(25deg) scale(0.85);
    opacity: 0.6;
    z-index: 2;
}

.phone-slide[data-position="right"] {
    transform: translate(-50%, -50%) translateX(180px) translateZ(-50px) rotateY(-25deg) scale(0.85);
    opacity: 0.6;
    z-index: 2;
}

.phone-slide[data-position="back"] {
    transform: translate(-50%, -50%) translateZ(-200px) scale(0.6);
    opacity: 0;
    z-index: 1;
}

/* Phone Frame */
.phone-frame {
    background: linear-gradient(145deg, #2a2a3a, #1a1a24);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.phone-frame img {
    width: 100%;
    border-radius: 28px;
    display: block;
}

.phone-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%,
        transparent 100%
    );
    border-radius: 28px;
    pointer-events: none;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.carousel-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.carousel-btn:hover {
    background: var(--bg-card);
    border-color: var(--gradient-start);
    color: var(--gradient-start);
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    gap: var(--spacing-sm);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--input-border);
    transition: all var(--transition-base);
}

.carousel-dot.active {
    background: var(--gradient-start);
    box-shadow: 0 0 10px var(--glow-blue);
    transform: scale(1.2);
}

.carousel-dot:hover:not(.active) {
    background: var(--text-muted);
}

/* =============================================================================
   Features Section
   ============================================================================= */
.features {
    padding: var(--spacing-3xl) 0 var(--spacing-4xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--input-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(56, 189, 248, 0.2);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: var(--radius-md);
    color: #000;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-tertiary);
    line-height: 1.5;
}

/* =============================================================================
   Final CTA
   ============================================================================= */
.final-cta {
    padding: var(--spacing-4xl) 0;
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse at center, var(--glow-soft) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: 16px;
    font-weight: 600;
    color: var(--gradient-start);
    background: transparent;
    border: 2px solid var(--gradient-start);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    background: rgba(56, 189, 248, 0.1);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
    transform: translateY(-2px);
}

.btn-secondary svg {
    transition: transform var(--transition-base);
}

.btn-secondary:hover svg {
    transform: translateX(4px);
}

/* =============================================================================
   Footer
   ============================================================================= */
.footer {
    padding: var(--spacing-2xl) 0;
    border-top: 1px solid var(--input-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    text-align: center;
}

.footer-content .social-links {
    order: 0;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-tertiary);
    transition: color var(--transition-base);
}

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

.footer-contact {
    font-size: 14px;
    color: var(--text-tertiary);
    margin: 0;
}

.footer-contact a {
    color: var(--gradient-start);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-contact a:hover {
    color: var(--gradient-end);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.social-links a:hover {
    color: var(--gradient-start);
    border-color: var(--gradient-start);
    transform: translateY(-2px);
}

.copyright {
    font-size: 13px;
    color: var(--text-muted);
}

/* =============================================================================
   Privacy Page
   ============================================================================= */
.privacy-section {
    min-height: auto;
    padding: 80px 0;
}

.privacy-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--gradient-start);
    margin-bottom: var(--spacing-xl);
    transition: opacity var(--transition-base);
}

.back-link:hover {
    opacity: 0.8;
}

.privacy-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
}

.privacy-date {
    color: var(--text-tertiary);
    margin-bottom: var(--spacing-2xl);
}

.privacy-body {
    color: var(--text-secondary);
    line-height: 1.8;
}

.privacy-body h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: var(--spacing-2xl) 0 var(--spacing-md);
}

.privacy-body p {
    margin-bottom: var(--spacing-lg);
}

.privacy-body ul {
    margin-left: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.privacy-body li {
    margin-bottom: var(--spacing-xs);
}

.contact-section {
    margin-top: var(--spacing-3xl);
    padding: var(--spacing-2xl);
    background: var(--bg-card);
    border: 1px solid var(--input-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.contact-section:hover {
    background: var(--bg-card-hover);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 8px 24px -8px rgba(56, 189, 248, 0.2);
}

.contact-label {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: var(--spacing-md);
}

.contact-email {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: var(--gradient-start);
    transition: all var(--transition-base);
}

.contact-email:hover {
    color: var(--gradient-end);
    transform: translateY(-2px);
}

/* =============================================================================
   Responsive
   ============================================================================= */
@media (min-width: 640px) {
    .carousel {
        height: 550px;
    }

    .carousel-track {
        width: 280px;
    }

    .phone-slide {
        width: 280px;
    }

    .phone-slide[data-position="left"] {
        transform: translate(-50%, -50%) translateX(-220px) translateZ(-50px) rotateY(25deg) scale(0.85);
    }

    .phone-slide[data-position="right"] {
        transform: translate(-50%, -50%) translateX(220px) translateZ(-50px) rotateY(-25deg) scale(0.85);
    }
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .footer-content .footer-links {
        order: -1;
        flex: 1;
    }

    .footer-content .social-links {
        order: 0;
        flex: 1;
        justify-content: center;
    }

    .footer-content .copyright {
        flex: 1;
        text-align: right;
    }

    .carousel {
        height: 600px;
    }

    .carousel-track {
        width: 300px;
    }

    .phone-slide {
        width: 300px;
    }

    .phone-slide[data-position="left"] {
        transform: translate(-50%, -50%) translateX(-280px) translateZ(-80px) rotateY(30deg) scale(0.8);
    }

    .phone-slide[data-position="right"] {
        transform: translate(-50%, -50%) translateX(280px) translateZ(-80px) rotateY(-30deg) scale(0.8);
    }
}

@media (min-width: 1024px) {
    .phone-slide[data-position="left"] {
        transform: translate(-50%, -50%) translateX(-340px) translateZ(-100px) rotateY(35deg) scale(0.75);
        opacity: 0.7;
    }

    .phone-slide[data-position="right"] {
        transform: translate(-50%, -50%) translateX(340px) translateZ(-100px) rotateY(-35deg) scale(0.75);
        opacity: 0.7;
    }
}

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

    html {
        scroll-behavior: auto;
    }

    .glow {
        animation: none;
    }
}
