/*
Theme Name: AIXploria
Theme URI: https://www.aixploria.com
Author: AIXploria
Author URI: https://www.aixploria.com
Description: A cutting-edge AI tools directory theme with a sleek, futuristic aesthetic. Perfect for showcasing AI tools, resources, and tech content.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aixploria
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, dark, tech, ai, directory
*/

/* === DESIGN TOKENS === */
:root {
  --color-bg:        #07080f;
  --color-surface:   #0e1120;
  --color-surface2:  #131729;
  --color-border:    #1e2340;
  --color-accent:    #5b6af0;
  --color-accent2:   #8b5cf6;
  --color-accent3:   #06d6a0;
  --color-text:      #e8eaf6;
  --color-muted:     #7a7f9a;
  --color-card-bg:   #10132040;
  --gradient-hero:   linear-gradient(135deg, #07080f 0%, #0e1120 50%, #131535 100%);
  --gradient-accent: linear-gradient(135deg, #5b6af0, #8b5cf6);
  --gradient-glow:   radial-gradient(ellipse 60% 50% at 50% -10%, #5b6af020 0%, transparent 70%);
  --font-display:    'Syne', sans-serif;
  --font-body:       'DM Sans', sans-serif;
  --font-mono:       'JetBrains Mono', monospace;
  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --shadow-card:     0 4px 32px rgba(0,0,0,0.4), 0 1px 4px rgba(0,0,0,0.3);
  --shadow-glow:     0 0 40px rgba(91,106,240,0.15);
  --transition:      all 0.2s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  background-image:
    var(--gradient-glow),
    radial-gradient(ellipse 40% 30% at 80% 80%, #8b5cf608 0%, transparent 60%);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: var(--color-muted); }
p:last-child { margin-bottom: 0; }

a { color: var(--color-accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-accent2); }

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

/* === LAYOUT === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.container--narrow { max-width: 860px; }
.container--wide   { max-width: 1540px; }

/* === HEADER === */
#masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,8,15,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
}

.site-branding { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

.site-logo { height: 36px; width: auto; }

.site-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-title a { color: inherit; text-decoration: none; background: inherit;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* NAV */
.main-navigation ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-navigation a {
  display: block;
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: var(--color-text);
  background: var(--color-surface2);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(91,106,240,0.3);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(91,106,240,0.4);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--color-muted);
  border: 1px solid var(--color-border);
}
.btn--ghost:hover { color: var(--color-text); border-color: var(--color-accent); background: var(--color-surface2); }

.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}
.btn--outline:hover { background: var(--color-accent); color: #fff; }

/* === HERO === */
.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 6rem);
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(91,106,240,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(139,92,246,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(91,106,240,0.12);
  border: 1px solid rgba(91,106,240,0.25);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__title {
  max-width: 16ch;
  margin: 0 auto 1.25rem;
  color: var(--color-text);
}

.hero__title span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  max-width: 56ch;
  margin: 0 auto 2.5rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-muted);
}

.hero__search {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  display: flex;
  gap: 0.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.35rem 0.35rem 0.35rem 1.25rem;
  transition: var(--transition);
}

.hero__search:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(91,106,240,0.12);
}

.hero__search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  padding: 0.4rem 0;
}

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

.hero__search button {
  flex-shrink: 0;
  padding: 0.55rem 1.3rem;
  border-radius: calc(var(--radius-md) - 4px);
  background: var(--gradient-accent);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.hero__search button:hover { opacity: 0.9; transform: scale(1.02); }

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero__stat { text-align: center; }
.hero__stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__stat-label { font-size: 0.8rem; color: var(--color-muted); font-weight: 500; margin: 0; }

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
}

/* === SECTION HEADERS === */
.section-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-header__text {}
.section-header__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.section-header h2 { color: var(--color-text); margin: 0; }
.section-header p { margin: 0.5rem 0 0; }

/* === CATEGORY PILLS === */
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-muted);
  transition: var(--transition);
  text-decoration: none;
}

.pill:hover, .pill.active {
  background: rgba(91,106,240,0.12);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.pill.active { background: rgba(91,106,240,0.18); }

/* === TOOL CARDS === */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.tool-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.tool-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tool-card:hover {
  border-color: rgba(91,106,240,0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.tool-card:hover::before { opacity: 0.04; }

.tool-card__header { display: flex; align-items: flex-start; gap: 1rem; }

.tool-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  overflow: hidden;
}

.tool-card__icon img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }

.tool-card__meta { flex: 1; min-width: 0; }

.tool-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin: 0 0 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tool-card__badges { display: flex; flex-wrap: wrap; gap: 0.35rem; }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge--free    { background: rgba(6,214,160,0.12); color: #06d6a0; border: 1px solid rgba(6,214,160,0.25); }
.badge--paid    { background: rgba(251,191,36,0.1);  color: #fbbf24; border: 1px solid rgba(251,191,36,0.25); }
.badge--freemium{ background: rgba(91,106,240,0.12); color: var(--color-accent); border: 1px solid rgba(91,106,240,0.25); }
.badge--new     { background: rgba(139,92,246,0.12); color: #a78bfa; border: 1px solid rgba(139,92,246,0.25); }
.badge--popular { background: rgba(249,115,22,0.12); color: #fb923c; border: 1px solid rgba(249,115,22,0.25); }

.tool-card__description {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--color-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.tool-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
  gap: 0.5rem;
}

.tool-card__category {
  font-size: 0.75rem;
  color: var(--color-muted);
  font-weight: 500;
}

.tool-card__action {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Featured card */
.tool-card--featured {
  border-color: rgba(91,106,240,0.35);
  background: linear-gradient(135deg, var(--color-surface) 0%, rgba(91,106,240,0.05) 100%);
}

.tool-card--featured::after {
  content: '⭐ Featured';
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(91,106,240,0.12);
  border: 1px solid rgba(91,106,240,0.25);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  letter-spacing: 0.03em;
}

/* === FEATURED BANNER === */
.featured-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}

.featured-banner {
  background: linear-gradient(135deg, #0e1120 0%, #131535 50%, #0f1225 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.featured-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91,106,240,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.featured-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent3);
  margin-bottom: 1rem;
}

.featured-banner__title {
  color: var(--color-text);
  margin-bottom: 1rem;
}

.featured-banner__desc { color: var(--color-muted); margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.7; }

.featured-banner__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.featured-banner__visual {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.featured-banner__img {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--color-surface2);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* === SECTIONS === */
section { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }

.section--alt { background: var(--color-surface); }

/* === NEWSLETTER === */
.newsletter-section {
  background: linear-gradient(135deg, rgba(91,106,240,0.08) 0%, rgba(139,92,246,0.08) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.newsletter-section .section-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.3rem 0.3rem 1rem;
}

.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
}

.newsletter-form input::placeholder { color: var(--color-muted); }

/* === FOOTER === */
#colophon {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .site-title { font-size: 1.15rem; margin-bottom: 0.75rem; display: block; }
.footer-brand p { font-size: 0.875rem; line-height: 1.6; color: var(--color-muted); max-width: 28ch; }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }

.footer-col a {
  font-size: 0.875rem;
  color: var(--color-muted);
  transition: var(--transition);
}

.footer-col a:hover { color: var(--color-text); }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.8rem; color: var(--color-muted); margin: 0; }

.footer-social { display: flex; gap: 0.5rem; }

.social-link {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--color-muted);
  transition: var(--transition);
}

.social-link:hover { color: var(--color-text); border-color: var(--color-accent); background: rgba(91,106,240,0.1); }

/* === SIDEBAR === */
.content-area { display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; align-items: start; }

.widget { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.5rem; margin-bottom: 1.5rem; }

.widget-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

/* === SINGLE TOOL PAGE === */
.tool-single__header {
  padding: 3rem 0;
  border-bottom: 1px solid var(--color-border);
}

.tool-single__hero { display: flex; align-items: flex-start; gap: 2rem; }

.tool-single__icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  flex-shrink: 0;
  overflow: hidden;
}

.tool-single__title { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--color-text); margin-bottom: 0.5rem; }
.tool-single__subtitle { font-size: 1rem; color: var(--color-muted); margin-bottom: 1rem; }

/* === BREADCRUMBS === */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-muted);
  padding: 1rem 0;
}

.breadcrumbs a { color: var(--color-muted); }
.breadcrumbs a:hover { color: var(--color-text); }
.breadcrumbs span.sep { opacity: 0.4; }
.breadcrumbs .current { color: var(--color-text); }

/* === PAGINATION === */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 0;
}

.page-numbers {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-muted);
  transition: var(--transition);
  text-decoration: none;
}

.page-numbers:hover, .page-numbers.current {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

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

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent3);
  box-shadow: 0 0 8px var(--color-accent3);
}

/* === HAMBURGER === */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  color: var(--color-muted);
  font-size: 1.2rem;
  transition: var(--transition);
}

.menu-toggle:hover { color: var(--color-text); border-color: var(--color-accent); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-area { grid-template-columns: 1fr; }
  .featured-banner { grid-template-columns: 1fr; }
  .featured-banner__visual { display: none; }
}

@media (max-width: 768px) {
  .main-navigation { display: none; }
  .main-navigation.toggled { display: block; }
  .main-navigation.toggled ul { flex-direction: column; padding: 1rem 0; }
  .menu-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.25rem; }
  .hero__stat-divider { display: none; }
}

@media (max-width: 480px) {
  .hero__search { flex-direction: column; padding: 0.5rem; }
  .hero__search button { width: 100%; justify-content: center; padding: 0.7rem; }
}

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

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

.animate-fadeup {
  animation: fadeInUp 0.6s cubic-bezier(0.4,0,0.2,1) both;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, var(--color-surface) 25%, var(--color-surface2) 50%, var(--color-surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
