/* Inherit from your main style */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 80%;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: 'Arial', sans-serif;
  background-image: url("bg.png");
  color: white;
  padding-top: 5.0rem; /* 80px */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3.75rem; /* 60px */
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem; /* 40px */
  z-index: 10;
}

.navbar-left {
  font-size: 1.3rem;
  font-weight: bold;
}

.btn {
  padding: 1.07rem 1.79rem; /* 12px 20px */
  background-color: white;
  color: black;
  font-weight: bold;
  border-radius: 0.375rem; /* 6px */
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #ddd;
}

.navbar-center a {
  margin: 0 0.94rem; /* 15px */
  font-weight: 500;
}

.navbar-right .btn,
.navbar-right .btn-outline {
  margin-left: 0.625rem; /* 10px */
}

.examples-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem; /* 40px */
  margin: 3.13rem 0; /* 50px 0 */
  max-width: 75rem; /* 1200px */
  padding: 1.25rem; /* 20px */
}

.example-box {
  width: 30rem; /* 480px */
  background: #1a1a1a;
  border-radius: 0.75rem; /* 12px */
  overflow: hidden;
  box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, 0.4); /* 6px 16px */
  animation: fadeInUp 0.6s ease;
  transition: transform 0.3s ease;
}

.example-box:hover {
  transform: translateY(-0.5rem); /* -8px */
}

.example-box img {
  width: 100%;
  height: 16.25rem; /* 260px */
  object-fit: cover;
}

.example-info {
  padding: 1.25rem; /* 20px */
}

.example-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.625rem; /* 10px */
  background: linear-gradient(90deg, rgb(68, 255, 243), rgb(51, 51, 255));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.example-info p {
  color: #bbb;
  margin-bottom: 1.25rem; /* 20px */
  line-height: 1.6;
}

.btn.gradient {
  padding: 1.07rem 1.79rem; /* 12px 20px */
  background: linear-gradient(90deg, rgb(68, 255, 243), rgb(51, 51, 255));
  color: white;
  font-weight: bold;
  border-radius: 0.375rem; /* 6px */
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn.gradient:hover {
  background: #4ea3ff;
}

.whatsapp-rectangle {
  position: fixed;
  right: 0;
  bottom: 6.25rem; /* 100px */
  background: #25D366;
  color: white;
  padding: 0.75rem 1.25rem; /* 12px 20px */
  border-radius: 0.625rem 0 0 0.625rem; /* 10px */
  font-weight: bold;
  font-size: 1rem;
  z-index: 999;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.3); /* 4px 12px */
  text-decoration: none;
}

.whatsapp-rectangle:hover {
  background: #1ebe5b;
}

/* Responsive */
@media (max-width: 64rem) { /* 1024px */
  .examples-container {
    flex-direction: column;
    align-items: center;
  }

  .example-box {
    width: 90%;
  }

  .navbar {
    padding: 0 1.25rem; /* 20px */
    height: 3.125rem; /* 50px */
  }

  .navbar-left {
    font-size: 1rem;
    display: none;
  }

  .navbar-center a {
    margin: 0.625rem 1.25rem; /* 10px 20px */
    font-size: 0.9rem;
  }

  .buttons {
    flex-direction: column;
    gap: 0.625rem; /* 10px */
  }

  .btn {
    width: 100%; /* Full width buttons on mobile */
    text-align: center;
    display: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(1.7rem); /* 30px */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
