:root {
  --primary-color: #6366f1;
  --secondary-color: #4f46e5;
  --accent-color: #fbbf24;
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --background-light: #ffffff;
  --background-dark: #f3f4f6;
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  --gradient-secondary: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  --gradient-hot: linear-gradient(135deg, #ff0080 0%, #7928ca 100%);
  --spacing-unit: 1rem;
  --border-radius: 12px;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: var(--spacing-unit);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 16px rgba(31, 38, 135, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 54px;
}

.logo {
  display: flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: 10px;
  background: var(--gradient-hot);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
}

.logo:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 0, 128, 0.2);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span {
  font-weight: 700;
  font-size: 1rem;
  color: white;
  letter-spacing: 0.5px;
}

.logo-text small {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  margin-right: auto;
  margin-left: 3rem;
}

@media (min-width: 768px) {
  .nav-links {
    align-items: stretch; 
    justify-content: space-between;
    width: 100%;
  }
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-hot);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .nav-links {
    margin-left: 2rem;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    padding: 0.5rem;
  }

  .auth-buttons {
    display: flex;
    gap: 0.5rem;
  }

  .auth-buttons::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M11 16l-4-4m0 0l4-4m-4 4h14m-5 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h7a3 3 0 013 3v1'/%3E%3C/svg%3E");
    cursor: pointer;
  }

  .auth-buttons::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M18 9v3m0 0v3m0-3h3m-3 0h-3m-2-5a4 4 0 11-8 0 4 4 0 018 0zM3 20a6 6 0 0112 0v1H3v-1z'/%3E%3C/svg%3E");
    cursor: pointer;
  }

  .nav-links {
    position: fixed;
    top: 54px;
    right: -100%;
    width: 70%;
    height: calc(100vh - 54px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-end;
    margin: 0;
  }

  .nav-links.active {
    right: 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
  }

  .pricing-card {
    margin: 0;
    padding: 1.5rem;
  }

  .pricing-card h3 {
    font-size: 1.5rem;
  }

  .pricing-card .price {
    font-size: 2.5rem;
  }

  .pricing-card .features-list li {
    font-size: 1rem;
  }

  .pricing-card.popular {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
    transform: scale(1);
  }

  .logo {
    margin-right: auto;
    width: fit-content;
  }

  .mobile-menu-btn {
    display: block;
    margin-left: 1rem;
  }

  .nav-links a {
    font-size: 1.1rem;
    width: 100%;
    text-align: right;
  }

}

@media (max-width: 480px) {
  .main-nav {
    padding: 0.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

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

  .section-subtitle {
    font-size: 0.9rem;
    padding: 0 1rem;
  }

  .tool-card {
    padding: 1.25rem;
  }

  .pricing-grid {
    padding: 0.5rem;
    gap: 1rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-card h3 {
    font-size: 1.4rem;
  }

  .pricing-card .price {
    font-size: 2.5rem;
  }

  .pricing-card .features-list li {
    font-size: 0.9rem;
  }

  .footer-section {
    padding: 1rem;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 2rem;
  background: 
    radial-gradient(circle at 0% 0%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    linear-gradient(to bottom, #ffffff, #f8fafc);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill='%236366f1' fill-opacity='0.05'%3E%3Cpath d='M0 0h40v40H0V0zm20 20h20v20H20V20zM0 20h20v20H0V20z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  animation: patternFloat 30s linear infinite;
}

@keyframes patternFloat {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

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

.hero-title {
  font-size: 5.5rem;
  line-height: 1;
  margin-bottom: 2rem;
  font-weight: 800;
  position: relative;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #ff0080, #7928ca);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.hero-title .accent-text {
  color: var(--primary-color);
  font-style: italic;
}

.hero-description {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  position: relative;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.primary-cta {
  padding: 1.25rem 2.5rem;
  background: var(--gradient-hot);
  color: white;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1;
}

.primary-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #7928ca, #ff0080);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.primary-cta:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 20px 40px rgba(255, 0, 128, 0.2),
    0 0 20px rgba(121, 40, 202, 0.3);
}

.primary-cta:hover::before {
  opacity: 1;
}

.primary-cta span {
  position: relative;
  z-index: 2;
}

.primary-cta svg {
  position: relative;
  z-index: 2;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
}

.stat-value::after {
  content: '+';
  position: absolute;
  font-size: 1.5rem;
  top: 0;
  right: -1rem;
  color: var(--accent-color);
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 10s infinite linear;
}

.floating-element:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  top: 60%;
  right: 10%;
  animation-delay: -2s;
  background: rgba(255, 0, 128, 0.1);
}

.floating-element:nth-child(3) {
  bottom: 20%;
  left: 15%;
  animation-delay: -4s;
  background: rgba(251, 191, 36, 0.1);
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -50px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

.hero-image {
  flex: 1;
  max-width: 600px;
  position: relative;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 20px rgba(255, 0, 128, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-hot);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.feature-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-hot);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding: 0 2rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pricing-card h3 {
  color: var(--text-primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.pricing-card .price {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: var(--gradient-hot);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-card .price small {
  font-size: 1rem;
  opacity: 0.7;
}

.pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  color: var(--text-primary);
}

.pricing-card .features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
  text-align: left;
}

.pricing-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.1),
    0 0 30px rgba(255, 0, 128, 0.15);
}

.pricing-card.popular {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
}

.pricing-card.popular .price {
  background: var(--gradient-hot);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-card.popular .features-list li {
  color: var(--text-primary);
}

.pricing-card.popular h3,
.pricing-card.popular .price {
  color: var(--primary-color);
}

.pricing-card.popular::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: var(--gradient-hot);
  z-index: -1;
}

.choose-plan-btn {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--gradient-hot);
}

.choose-plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 0, 128, 0.2);
}

.tools-section {
  padding: 8rem 2rem;
  background: var(--background-light);
  position: relative;
  overflow: hidden;
}

.tools-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(79, 70, 229, 0.08) 100%);
  transform: skewY(-6deg);
  transform-origin: 0;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.testimonials {
  padding: 4rem 2rem;
  background: var(--background-dark);
}

footer {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: white;
  padding: 6rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.footer-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}

.footer-section h4 {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-secondary);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gradient-primary);
  transform: translateY(-2px);
}

.coins-container {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.coins-container:hover {
  background: rgba(251, 191, 36, 0.15);
  transform: translateY(-2px);
}

.coins-value {
  font-weight: 600;
  color: var(--text-primary);
}

.add-coins-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: none;
  background: var(--gradient-secondary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.add-coins-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.tools-dropdown {
  position: relative;
  cursor: pointer;
}

.tools-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 16px;
  padding: 1rem;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(99, 102, 241, 0.1);
  backdrop-filter: blur(10px);
}

.tools-dropdown:hover .tools-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.tools-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.tools-menu a:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateX(5px);
}

.tools-menu a svg {
  width: 20px;
  height: 20px;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  background: var(--gradient-hot);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-hot);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (max-width: 362px) {
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem; 
  }

  .tool-card {
    padding: 1rem; 
  }

  .tool-card h3 {
    font-size: 1.4rem; 
  }

  .tool-card p {
    font-size: 0.9rem; 
  }
  .view-tool-btn {
      font-size: .8rem;
      padding: .5rem .8rem;
  }

  .hero {
    padding: 2rem 1rem; /* Further reduce padding */
    min-height: auto; /* Allow hero to shrink vertically */

  }
  .hero-content {
    text-align: center; /* Center content */
  }

  .hero-title {
    font-size: 2.2rem; /* Smaller title */
  }

  .hero-description {
    font-size: 1rem; /* Smaller description */
  }

  .hero-cta {
    flex-direction: column; /* Stack CTA buttons */
    align-items: center; /* Center align buttons */
    gap: 1rem;

  }
  .hero-stats {
      display: none;
  }

  .primary-cta {
    width: 100%; 
    justify-content: center; 
  }

  footer {
    padding: 2rem 1rem; 
  }
  .footer-content {
    grid-template-columns: 1fr; 
    gap: 1.5rem;
  }
  .footer-section h4 {
    font-size: 1.1rem;
  }
  .footer .social-links {
    justify-content: center; 
  }

}


@media (max-width: 1024px) {
  .pricing-grid {
    gap: 1.5rem;
    padding: 0 1.5rem;
  }
  
  .pricing-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
    margin-top: 2rem;
  }

  .pricing-card {
    padding: 2rem;
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
  }

  .pricing-card h3 {
    font-size: 1.6rem;
  }

  .pricing-card .price {
    font-size: 2.5rem;
  }

  .pricing-card .features-list li {
    font-size: 1rem;
  }

  .pricing-card.popular {
    transform: scale(1);
    margin: 0 auto;
  }

  .pricing-card.popular::before {
    display: none;
  }

  .pricing-section {
    padding: 4rem 1rem;
  }

  footer {
    padding: 4rem 1rem; 
  }
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr; 
  }

  .footer-section h4 {
    font-size: 1.1rem;
  }

  .footer .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .pricing-grid {
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-card h3 {
    font-size: 1.4rem;
  }

  .pricing-card .price {
    font-size: 2.2rem;
    margin: 1rem 0;
  }

  .pricing-card .features-list {
    margin: 1.5rem 0;
  }

  .pricing-card .features-list li {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .choose-plan-btn {
    padding: 0.75rem;
    font-size: 1rem;
  }
}