:root {
  --white: #ffffff;
  --white-soft: #f8f9fa;
  --white-mute: rgba(255, 255, 255, 0.9);
  --gray-light: #e8eaed;
  --gray: #9aa0a6;
  --gray-dark: #5f6368;
  --black: #202124;
  --primary: #4285f4;
  --primary-light: rgba(66, 133, 244, 0.1);
  --accent: #34a853;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(255, 255, 255, 0.3);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(66, 133, 244, 0.08) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(52, 168, 83, 0.08) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(251, 188, 5, 0.05) 0%,
      transparent 30%
    );
  z-index: -1;
}

/* Floating background elements */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.floating-bg {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(66, 133, 244, 0.1) 0%,
    transparent 70%
  );
  animation: float 20s ease-in-out infinite;
  z-index: -1;
  opacity: 0.6;
}

.floating-bg:nth-child(1) {
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.floating-bg:nth-child(2) {
  bottom: -200px;
  right: -200px;
  background: radial-gradient(
    circle,
    rgba(52, 168, 83, 0.1) 0%,
    transparent 70%
  );
  animation-delay: 5s;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cyber Border Effect */
.cyber-border {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cyber-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-md);
  padding: 2px;
  background: linear-gradient(
    45deg,
    #4285f4,
    #34a853,
    #fbbc05,
    #ea4335,
    #4285f4
  );
  background-size: 400% 400%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: cyber-glow 3s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes cyber-glow {
  0% {
    background-position: 0% 50%;
    opacity: 0.7;
  }

  100% {
    background-position: 100% 50%;
    opacity: 1;
  }
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo.img-logo {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #4285f4, #34a853);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.logo.img-logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.titles h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}

.titles p {
  font-size: 0.85rem;
  color: var(--gray-dark);
}

/* Hero Section */
.hero {
  padding: 140px 0 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--black);
  position: relative;
  display: inline-block;
}

.hero h1 span {
  background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: var(--gray-dark);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Search */
.search-wrap {
  margin-bottom: 30px;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#search {
  width: 100%;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 2px solid var(--gray-light);
  background: var(--white);
  color: var(--black);
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

#search:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.2);
}

#search::placeholder {
  color: var(--gray);
}

/* RTP Button */
.rtp-button {
  display: block;
  width: 100%;
  max-width: 600px;
  padding: 18px;
  text-align: center;
  border-radius: var(--radius-md);
  font-weight: 700;
  background: linear-gradient(135deg, #22c55e, #3b82f6);
  color: white;
  text-decoration: none;
  margin: 30px auto;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.rtp-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
}

.rtp-button:hover::before {
  left: 100%;
}

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

/* Categories */
.categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  justify-content: center;
}

.category-btn {
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--white);
  border: 2px solid var(--gray-light);
  color: var(--gray-dark);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.category-btn i {
  font-size: 1.1rem;
}

.category-btn.active,
.category-btn:hover {
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Apps Grid Section */
.apps-grid-section {
  padding: 40px 0 60px;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--black);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title span {
  background: linear-gradient(90deg, #4285f4, #34a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* INTERACTIVE APPS GRID */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  transition: grid-template-columns 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* CARD STYLES - Minimal saat normal */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 180px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: 2px solid transparent;
}

/* Hover effect untuk card */
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

/* Card yang sedang aktif/fokus */
.card.active {
  grid-column: span 2;
  grid-row: span 1;
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
  z-index: 10;
  min-height: 200px;
}

/* Konten minimal saat normal */
.card-normal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  transition: opacity 0.3s ease;
}

.card.active .card-normal {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

/* Konten lengkap saat aktif */
.card-details {
  display: none;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card.active .card-details {
  display: block;
  opacity: 1;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Icon wrapper */
.icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 15px;
  position: relative;
  border: 1px solid var(--gray-light);
}

.icon-wrap img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

/* Title minimal */
.app-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
  line-height: 1.3;
}

/* Layout untuk card aktif */
.card-content {
  display: flex;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
}

.card.active .icon-wrap {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.app-info {
  flex: 1;
}

.app-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.app-url {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-clicks {
  font-size: 0.9rem;
  color: var(--gray-dark);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.action-btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.action-btn.primary {
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
}

.action-btn.secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Message Popup */
.msg-popup {
  position: fixed;
  top: 80px;
  right: 20px;
  width: 90%;
  max-width: 400px;
  background: var(--glass-bg);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 25px;
  z-index: 1001;
  display: none;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--primary);
}

.msg-popup.active {
  display: block;
  animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

.msg-item {
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 15px;
  border-left: 4px solid var(--primary);
}

.msg-title {
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.msg-detail {
  color: var(--gray-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.msg-detail.active {
  max-height: 500px;
  margin-top: 15px;
}

.msg-link {
  color: var(--primary);
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  transition: var(--transition);
}

.msg-link:hover {
  color: #3367d6;
  transform: translateX(5px);
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 80px;
  left: 0;
  width: 250px;
  height: calc(100% - 80px);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid var(--glass-border);
  padding: 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar nav a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.5);
  color: var(--gray-dark);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.sidebar nav a:hover,
.sidebar nav a.active {
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
}

/* Floating WA Button */
.cs-wa-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
  transition: var(--transition);
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}

.cs-wa-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* Footer */
footer {
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  padding: 40px 0 20px;
  margin-top: 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--black);
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #4285f4, #34a853);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray-dark);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--white-soft);
  border-radius: 50%;
  color: var(--gray-dark);
  transition: var(--transition);
  font-size: 1.1rem;
}

.social-links a:hover {
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: var(--white);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--gray-light);
  color: var(--gray);
  font-size: 0.9rem;
}

.copyright a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.copyright a:hover {
  text-decoration: underline;
}

/* Actions */
.actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.msg-btn {
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.msg-btn:hover {
  background: var(--primary);
  color: white;
  transform: rotate(15deg);
}

.msg-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: linear-gradient(135deg, #fbbc05, #ea4335);
  color: white;
  font-size: 0.8rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.btn {
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Article Box */
.article-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
}

.article-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05);
}

.article-content h1,
.article-content h2 {
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.3;
}

.article-content h1 {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #4285f4, #34a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
}

.article-content h2 {
  font-size: 1.8rem;
  margin-top: 35px;
  font-weight: 700;
  color: var(--black);
  position: relative;
  padding-bottom: 10px;
}

.article-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4285f4, #34a853);
  border-radius: 2px;
}

.article-content p {
  color: var(--gray-dark);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.article-content ul {
  color: var(--gray-dark);
  margin-left: 25px;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.article-content li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 10px;
}

.article-content li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
  position: absolute;
  left: -20px;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  margin-top: 20px;
}

.read-more-btn i {
  transition: transform 0.3s ease;
}

.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.read-more-btn:hover i {
  transform: translateY(2px);
}

/* Category Bar */
.category-bar {
  display: flex;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.category-bar a {
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--white);
  border: 2px solid var(--gray-light);
  color: var(--gray-dark);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.category-bar a:hover {
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .apps-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .card.active {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

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

  .apps-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
  }

  .header-container {
    padding: 12px 0;
  }

  .logo {
    font-size: 1.5rem;
  }

  .titles h1 {
    font-size: 1.2rem;
  }

  .titles p {
    font-size: 0.8rem;
  }

  .cs-wa-btn {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
  }

  .card {
    padding: 15px;
    min-height: 160px;
  }

  .icon-wrap {
    width: 60px;
    height: 60px;
  }

  .app-title {
    font-size: 1rem;
  }

  .card.active {
    grid-column: span 2;
  }

  .card.active .icon-wrap {
    width: 70px;
    height: 70px;
  }

  .app-info h3 {
    font-size: 1.2rem;
  }

  .article-box {
    padding: 25px;
  }

  .article-content h1 {
    font-size: 1.8rem;
  }

  .article-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

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

  .apps-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
  }

  .card.active {
    grid-column: 1 / -1;
  }

  .msg-popup {
    width: calc(100% - 40px);
    right: 10px;
    top: 70px;
  }

  .floating-bg {
    display: none;
  }

  .hero {
    padding: 120px 0 30px;
  }

  .card-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .card.active .icon-wrap {
    margin-bottom: 0;
  }
}
