:root {
  --green: #00b67a;
  --black: #111;
  --gray: #555;
  --light-gray: #f6f6f6;
  --white: #fff;
  --light: #f8f8f8;
}
#muspanel {
background-size: 100% auto!important; }
.headerxblack {
  text-align: center;
  min-height: 65vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.headerxblack-main {
  flex: 1;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3rem;
}

.n8n-banner {
  width: 200px;
  background: linear-gradient(135deg, #2E3440 0%, #1A1F2E 100%);
  padding: 1.5rem 1rem;
  border-radius: 12px;
  color: var(--white);
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.n8n-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.05), transparent);
  transform: rotate(45deg);
}

.n8n-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.2);
}

.n8n-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.n8n-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.n8n-desc {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-bottom: 0.8rem;
}

.n8n-discount {
  background: #FF6D6D;
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.n8n-action {
  font-size: 0.8rem;
  opacity: 0.9;
  font-weight: 600;
}

.badge {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.highlight {
  background-color: var(--green);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.5rem;
}

p {
  max-width: 600px;
  margin: 0 auto 1.8rem;
  color: var(--gray);
  font-size: 1.05rem;
}

.btn {
  display: inline-block;
  background-color: var(--green);
  color: var(--white);
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  margin: 0.3rem;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
}

.btn:hover {
  background-color: #009e6b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 182, 122, 0.3);
}

.price-list-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  color: var(--gray);
  padding: 0.7rem 1.5rem;
  border: 1px solid #ddd;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  margin-top: 1rem;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
}

.price-list-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background-color: rgba(0, 182, 122, 0.05);
}

.price-list-badge {
  background: var(--light-gray);
  color: var(--gray);
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.price-list-btn:hover .price-list-badge {
  background: var(--green);
  color: var(--white);
}

.search-form-container {
  width: 97%;
  margin: 2rem auto 0;
  padding: 0 1rem;
}

.search-form {
  padding: 0;
  border-radius: 0;
  border: none;
}

.search-input-wrapper {
  display: flex;
  gap: 0;
  margin-bottom: 1.5rem;
  background: var(--white);
  padding: 0;
  border-radius: 60px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
  border-color: var(--green);
  box-shadow: 0 10px 40px rgba(0, 182, 122, 0.2);
}

.search-input {
  flex: 1;
  padding: 1.4rem 2.2rem;
  border: none;
  border-radius: 60px 0 0 60px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  background: var(--white);
  font-weight: 500;
}

.search-input:focus {
  outline: none;
}

.search-input::placeholder {
  color: #aaa;
  font-weight: 400;
}

.search-btn {
  padding: 1.4rem 3.2rem;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 0 60px 60px 0;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-btn:hover {
  background: #009e6b;
  transform: scale(1.02);
}

.popular-extensions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gray);
  align-items: center;
}

.popular-extensions > span:first-child {
  font-weight: 600;
  color: var(--black);
}

.ext-tag {
  background: var(--light-gray);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  font-weight: 600;
  color: var(--gray);
}

.ext-tag:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-2px);
}

.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  color: var(--gray);
  font-size: 0.9rem;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.plan {
  background-color: var(--white);
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
}

.plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.plan .discount-badge {
  background: var(--green);
  color: var(--white);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.plan h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
}

.old-price {
  text-decoration: line-through;
  color: var(--gray);
  font-size: 0.9rem;
}

.features-section {
  background-color: var(--white);
  padding: 3rem 1rem;
  text-align: center;
}

.features-line {
  max-width: 90%;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--gray);
  line-height: 2;
}

.features-line span {
  display: inline;
  color: var(--gray);
}

.pricing-minimal {
  padding: 3rem 1rem;
  background: var(--light);
  min-height: 200px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.pricing-minimal::before {
  content: 'com .net .org .io .ai .co .uk .us .tr .ca .de .fr .in .au .jp .es .it .nl .br .ru .cn .eu .xyz .online .store .shop .app .dev .tech .cloud .digital .biz .info .me .tv .pro .live .site .blog .space .world .media .design .solutions .agency .studio .group .systems .network .software .services .consulting .finance .education .academy .school .global .news .social .community .family .art .music .film .video .events .restaurant .cafe .food .market .fashion .style .beauty .health .care .clinic .doctor ';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(359deg);
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.04);
  white-space: normal;
  pointer-events: none;
  letter-spacing: 0.5rem;
  z-index: 0;
  width: 100%;
  text-align: center;
  line-height: 1.7;
  word-spacing: 0.3rem;
}

.pricing-minimal::after {
  content: '';
}

.bubble-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: all 0.25s ease;
}

.bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.ext {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}

.bubble .price {
  font-size: 0.95rem;
  color: var(--green);
  font-weight: 700;
}

.old-price-bubble {
  font-size: 0.7rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-top: 1px;
}

/* Responsive Media Queries */

@media (max-width: 1024px) {
  .headerxblack {
    flex-direction: column;
    gap: 2rem;
  }

  .n8n-banner {
    width: 90%;
    max-width: 400px;
    order: -1;
  }
}

@media (max-width: 768px) {
  .features-line {
    font-size: 0.9rem;
    max-width: 95%;
  }

  .bubble {
    width: 75px;
    height: 75px;
  }

  .ext {
    font-size: 0.9rem;
  }

  .bubble .price {
    font-size: 0.85rem;
  }

  .old-price-bubble {
    font-size: 0.65rem;
  }

  .pricing-minimal::before {
    font-size: 1rem;
    letter-spacing: 0.3rem;
    line-height: 2.2;
    word-spacing: 0.2rem;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  .headerxblack {
    min-height: auto;
    padding: 2rem 1rem;
  }

  .plans {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .bubble-line {
    gap: 0.6rem;
  }

  .bubble {
    width: 70px;
    height: 70px;
  }

  .ext {
    font-size: 0.85rem;
  }

  .bubble .price {
    font-size: 0.8rem;
  }

  .pricing-minimal::before {
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    line-height: 2;
  }
}

