:root {
  --bg:#05090f;
  --panel:#0b1320;
  --text:#eaf2ff;
  --muted:rgba(234,242,255,.72);
  --line:rgba(0,229,255,.22);
  --accent:#00e5ff;
  --gold:#ffd24a;
  --good:#37d67a;
  --bad:#ff4d5e;
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --max: 1100px;
  --font: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

* {
  box-sizing:border-box; 
  margin:0; 
  padding:0;
}

body {
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 30% 20%, rgba(0,229,255,.12), transparent 65%),
    radial-gradient(900px 500px at 75% 25%, rgba(255,210,74,.10), transparent 60%),
    radial-gradient(900px 600px at 50% 90%, rgba(55,214,122,.08), transparent 60%),
    var(--bg);
  overflow-x:hidden;
  position: relative;
  min-height: 100vh;
}

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

/* Animated Background Elements */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.15) 0%, rgba(0,229,255,0) 70%);
  filter: blur(40px);
  animation: float 25s infinite linear;
}

.floating-shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation-duration: 40s;
  background: radial-gradient(circle, rgba(0,229,255,0.2) 0%, rgba(0,229,255,0) 70%);
}

.floating-shape:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 10%;
  animation-duration: 30s;
  animation-delay: -10s;
  background: radial-gradient(circle, rgba(255,210,74,0.15) 0%, rgba(255,210,74,0) 70%);
}

.floating-shape:nth-child(3) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  animation-duration: 35s;
  animation-delay: -5s;
  background: radial-gradient(circle, rgba(55,214,122,0.1) 0%, rgba(55,214,122,0) 70%);
}

.floating-shape:nth-child(4) {
  width: 250px;
  height: 250px;
  top: 20%;
  right: 20%;
  animation-duration: 45s;
  animation-delay: -15s;
  background: radial-gradient(circle, rgba(0,150,255,0.1) 0%, rgba(0,150,255,0) 70%);
}

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

/* Star Animation */
.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.star {
  position: absolute;
  background-color: white;
  border-radius: 50%;
  animation: twinkle 3s infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

/* Glow Animation for Cards */
.glow-effect {
  position: relative;
  overflow: hidden;
}

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

.glow-effect:hover::before {
  left: 100%;
}

.wrap {
  max-width:var(--max); 
  margin:0 auto; 
  padding:22px 16px 60px;
  position: relative;
  z-index: 1;
}

.topbar {
  display:flex; 
  align-items:center; 
  justify-content:space-between;
  gap:12px; 
  padding:10px 12px;
  background:rgba(11,19,32,.65);
  border:1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  animation: slideDown 0.8s ease-out;
}

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

.brand {
  display:flex; 
  align-items:center; 
  gap:10px; 
  min-width: 220px;
  font-weight: 900; 
  letter-spacing:.4px;
}

.brand div:last-child {
  color: var(--text);
  font-weight: 700;
}

.logo {
  width:38px; 
  height:38px; 
  border-radius: 12px;
  background: rgba(0,229,255,.08);
  border:1px solid rgba(0,229,255,.35);
  display:grid; 
  place-items:center;
  box-shadow: 0 10px 25px rgba(0,229,255,.08);
  animation: pulse 2s infinite;
  overflow: hidden;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

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

.logo span {
  font-weight: 1000;
  color: var(--accent);
  font-size: 18px;
  text-shadow: 0 0 18px rgba(0,229,255,.35);
}

/* Navigation Styles - Fixed for better visibility */
.nav {
  display:flex; 
  gap:10px; 
  flex-wrap:wrap; 
  justify-content:flex-end;
  font-size: 14px;
}

.nav a {
  text-decoration:none;
  padding:8px 12px;
  border:1px solid rgba(234,242,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: var(--text) !important;
  font-weight: 600;
}

.nav a i {
  color: var(--accent);
  margin-right: 6px;
  transition: color 0.3s ease;
}

.nav a:hover {
  border-color: rgba(0,229,255,.35);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,229,255,0.2);
  background: rgba(0,229,255,.08);
}

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

.hero {
  margin-top:18px;
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap:16px;
  align-items:stretch;
  animation: fadeIn 1s ease-out 0.3s both;
}

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

.card {
  background: rgba(11,19,32,.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  position:relative;
  overflow:hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

.card:before {
  content:"";
  position:absolute; 
  inset:-2px;
  background: radial-gradient(450px 160px at 20% 0%, rgba(0,229,255,.18), transparent 60%);
  pointer-events:none;
  z-index: -1;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: .2px;
  background: linear-gradient(90deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 62ch;
}

.badges {
  display:flex; 
  flex-wrap:wrap; 
  gap:10px;
  margin: 14px 0 18px;
}

.badge {
  display:inline-flex; 
  align-items:center; 
  gap:8px;
  padding:8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(234,242,255,.12);
  background: rgba(255,255,255,.03);
  font-weight: 800;
  font-size: 13px;
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 5px 15px rgba(0,229,255,0.15);
}

.dot {
  width:8px; 
  height:8px; 
  border-radius:99px; 
  background: var(--accent); 
  box-shadow: 0 0 16px rgba(0,229,255,.45);
  animation: blink 2s infinite;
}

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

.ctaRow {
  display:flex; 
  gap:10px; 
  flex-wrap:wrap; 
  margin-top: 12px
}

.btn {
  border:0; 
  cursor:pointer;
  text-decoration:none;
  display:inline-flex; 
  align-items:center; 
  justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 950;
  letter-spacing: .3px;
  font-size: 14px;
  transition: transform .15s ease, filter .15s ease, border-color .15s ease, box-shadow .3s ease;
  user-select:none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s;
}

.btn:hover::after {
  left: 100%;
}

.btn:active {
  transform: translateY(1px);
}

.btnPrimary {
  background: linear-gradient(135deg, rgba(0,229,255,.22), rgba(0,229,255,.10));
  border: 1px solid rgba(0,229,255,.45);
  color: var(--text);
}

.btnPrimary:hover {
  filter: brightness(1.08);
  box-shadow: 0 10px 25px rgba(0,229,255,0.3);
}

.btnGold {
  background: linear-gradient(135deg, rgba(255,210,74,.95), rgba(255,210,74,.70));
  border: 1px solid rgba(255,210,74,.55);
  color:#10131a;
}

.btnGold:hover {
  box-shadow: 0 10px 25px rgba(255,210,74,0.4);
  filter: brightness(1.1);
}

.btnGhost {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(234,242,255,.16);
  color: var(--text);
}

.btnGhost:hover {
  border-color: rgba(0,229,255,.35);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.panelTitle {
  font-weight: 950;
  letter-spacing: .4px;
  margin: 0 0 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.panelTitle i {
  color: var(--accent);
}

.list {
  margin:0; 
  padding:0; 
  list-style:none;
  display:grid; 
  gap:10px;
}

.li {
  display:flex; 
  gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(234,242,255,.10);
  background: rgba(255,255,255,.02);
  transition: all 0.3s ease;
}

.li:hover {
  transform: translateX(5px);
  border-color: rgba(0,229,255,.3);
  background: rgba(0,229,255,.05);
}

.ic {
  width:34px; 
  height:34px; 
  border-radius: 12px;
  display:grid; 
  place-items:center;
  border:1px solid rgba(0,229,255,.35);
  background: rgba(0,229,255,.08);
  flex: 0 0 auto;
}

.li b {
  display:block; 
  margin-bottom:2px;
}

.li span {
  color: var(--muted); 
  font-size: 13.5px; 
  line-height: 1.35;
}

.section {
  margin-top: 16px;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  animation: fadeIn 1s ease-out 0.5s both;
}

.mini {
  padding: 14px;
}

.faq {
  margin-top: 16px;
  animation: fadeIn 1s ease-out 0.7s both;
}

details {
  border: 1px solid rgba(234,242,255,.10);
  background: rgba(255,255,255,.02);
  border-radius: 14px;
  padding: 12px 12px;
  transition: all 0.3s ease;
}

details:hover {
  border-color: rgba(0,229,255,.3);
  background: rgba(0,229,255,.03);
}

details + details {
  margin-top: 10px;
}

summary {
  cursor:pointer;
  font-weight: 900;
  letter-spacing:.2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::after {
  content: '+';
  font-size: 1.5em;
  color: var(--accent);
  transition: transform 0.3s ease;
}

details[open] summary::after {
  content: '-';
  transform: rotate(180deg);
}

details p {
  color: var(--muted); 
  margin: 10px 0 0; 
  line-height: 1.55;
  animation: slideDown 0.3s ease-out;
}

/* Stats Counter */
.stats {
  display: flex;
  justify-content: space-around;
  margin: 30px 0;
  text-align: center;
}

.stat-item {
  padding: 15px;
}

.stat-number {
  font-size: 2.5em;
  font-weight: 900;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: 0.9em;
  color: var(--muted);
}

/* Download badges */
.download-badges {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 20px 0;
}

.download-badge {
  width: 180px;
  height: auto;
  transition: transform 0.3s ease;
}

.download-badge:hover {
  transform: scale(1.05);
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,229,255,0.2);
  border: 1px solid rgba(0,229,255,0.5);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: rgba(0,229,255,0.3);
  transform: translateY(-3px);
}

/* Loading animation for cards */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  animation: loading 1.5s infinite;
}

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

/* Typing animation for hero text */
.typing-container {
  display: inline-block;
  position: relative;
}

.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background-color: var(--accent);
  margin-left: 2px;
  animation: blink-cursor 0.7s infinite;
  vertical-align: middle;
}

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

/* ====== IMAGE STYLES ====== */

/* Main inspiration image styles */
.inspiration-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.2);
  margin: 20px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inspiration-image:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.hero-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.inspiration-image:hover .hero-img {
  transform: scale(1.05);
}

.image-caption {
  padding: 12px;
  background: rgba(0,0,0,0.3);
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  backdrop-filter: blur(5px);
}

/* Feature card images */
.feature-image {
  margin-top: 20px;
  text-align: center;
}

.image-label {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.feature-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}

.feature-img:hover {
  border-color: var(--accent);
  transform: scale(1.02);
}

/* Inspiration section */
.inspiration-section {
  margin: 16px 0;
}

.inspiration-card {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(11,19,32,.8), rgba(11,19,32,.9));
}

.inspiration-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 250px;
}

.inspiration-text {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inspiration-text p {
  color: var(--muted);
  margin: 10px 0;
  line-height: 1.5;
}

.inspiration-cta {
  margin-top: 10px;
}

.inspiration-cta .btn {
  font-size: 13px;
}

.inspiration-image-container {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inspiration-large-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.inspiration-card:hover .inspiration-large-img {
  transform: scale(1.05);
}

/* Feature description in mini cards */
.feature-description {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
  margin-bottom: 10px;
}

.feature-mini-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  margin-top: 10px;
  transition: all 0.3s ease;
}

.feature-mini-img:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Footer Styles */
.footer {
  margin-top: 18px;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(234,242,255,.10);
  background: rgba(255,255,255,.02);
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  color: var(--muted);
  font-size: 13.5px;
  animation: fadeIn 1s ease-out 0.9s both;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-title {
  font-weight: 900;
  color: var(--text);
  margin-bottom: 3px;
}

.footer-contact {
  margin-top: 4px;
}

.footer-update {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-image {
  margin-bottom: 10px;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}

.footer-image:hover {
  transform: scale(1.1);
  border-color: var(--accent);
}

.footer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-copyright {
  margin-top: 4px;
}

.footer-built {
  margin-top: 4px;
  color: var(--muted);
}

.footer-links {
  margin-top: 8px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.footer-links a {
  font-size: 12px;
}

.footer a {
  color: var(--text); 
  text-decoration:none; 
  border-bottom:1px dashed rgba(234,242,255,.25);
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

/* Image fallback and loading states */
img {
  background: linear-gradient(135deg, rgba(0,229,255,0.1), rgba(255,210,74,0.05));
  transition: opacity 0.3s ease;
}

img[src=""], img:not([src]) {
  opacity: 0;
  visibility: hidden;
}

/* Smooth image loading */
img:not(.loaded) {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img.loaded {
  opacity: 1;
}

/* Accessibility improvements */
img[alt] {
  font-size: 0;
}

/* Mobile menu button styles */
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(11,19,32,0.9);
  border: 1px solid var(--line);
  color: var(--accent);
  font-size: 18px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  place-items: center;
}

/* ====== RESPONSIVE STYLES ====== */

@media (max-width: 900px) {
  /* Hero section */
  .hero {
    grid-template-columns: 1fr;
  }
  
  .hero-img {
    height: 180px;
  }
  
  /* Stats */
  .stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .stat-item {
    padding: 10px;
  }
  
  /* Inspiration section */
  .inspiration-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .inspiration-text {
    padding: 15px;
  }
  
  .inspiration-image-container {
    height: 200px;
  }
  
  /* Feature cards */
  .section {
    grid-template-columns: 1fr;
  }
  
  /* Footer */
  .footer {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-right {
    text-align: center;
    align-items: center;
    margin-top: 20px;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  /* Navigation */
  .nav {
    justify-content: center;
    margin-top: 10px;
  }
  
  .brand {
    min-width: auto;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .inspiration-content {
    grid-template-columns: 1fr;
  }
  
  .inspiration-image {
    margin: 15px 0;
  }
  
  .inspiration-text {
    padding: 20px;
  }
  
  .inspiration-image-container {
    height: 200px;
  }
}

@media (max-width: 600px) {
  /* Topbar */
  .topbar {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .brand {
    flex-direction: column;
    gap: 8px;
  }
  
  /* Mobile menu */
  .mobile-menu-btn {
    display: grid;
  }
  
  .nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 80px;
    right: 20px;
    background: rgba(11,19,32,0.95);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 15px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    width: 200px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }
  
  .nav.active {
    display: flex;
  }
  
  .nav a {
    text-align: center;
    margin: 5px 0;
    background: rgba(255,255,255,.05);
  }
  
  /* Hero text */
  .hero h1 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 14px;
  }
  
  /* Buttons */
  .ctaRow {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Download badges */
  .download-badges {
    flex-direction: column;
    width: 100%;
  }
  
  .download-badges .btn {
    width: 100%;
  }
  
  /* Badges */
  .badges {
    flex-direction: column;
  }
  
  .badge {
    justify-content: center;
  }
  
  /* Cards */
  .card {
    padding: 15px;
  }
  
  /* List items */
  .li {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .ic {
    margin: 0 auto;
  }
  
  /* Footer image */
  .footer-image {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 400px) {
  /* Smaller screens */
  .hero-img {
    height: 150px;
  }
  
  .feature-img {
    height: 120px;
  }
  
  .inspiration-image-container {
    height: 150px;
  }
  
  .feature-mini-img {
    height: 100px;
  }
  
  .footer-image {
    width: 50px;
    height: 50px;
  }
  
  .nav {
    flex-direction: column;
    width: 100%;
  }
  
  .nav a {
    text-align: center;
  }
}

/* Touch-friendly hover states for mobile */
@media (hover: none) {
  .card:hover,
  .btn:hover,
  .nav a:hover,
  .li:hover,
  .badge:hover,
  .inspiration-image:hover,
  .feature-img:hover,
  .feature-mini-img:hover,
  .footer-image:hover,
  .scroll-top:hover {
    transform: none !important;
  }
  
  .glow-effect::before,
  .btn::after {
    display: none;
  }
  
  .card:hover {
    box-shadow: var(--shadow);
  }
}