/* [project]/src/app/HomePage.css [app-client] (css) */
.home-page-container {
  color: #333;
  font-family: Arial, sans-serif;
}

.heroSection {
  color: #252525;
  text-align: left;
  background: linear-gradient(98deg, #d3d5d9 0%, #fff 100%);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px;
  display: flex;
  position: relative;
}

.heroContent {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.centerLinks {
  flex: 2;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-link {
  color: #07485a;
  margin: 20px 15px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: color .3s;
}

.hero-link:hover {
  color: #00b0ff;
}

.logoArea {
  align-items: baseline;
  display: flex;
}

.logo {
  border-radius: 20px;
  width: 100px;
  height: 100px;
}

.authArea {
  align-items: center;
  display: flex;
}

.authArea p {
  color: #07485a;
  margin: 20px 15px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: color .3s;
}

.authArea p:hover {
  color: #00b0ff;
}

.auth-btn-container .btn {
  color: #fff;
  cursor: pointer;
  background-color: #00b0ff;
  border: none;
  border-radius: 5px;
  padding: 20px;
  font-size: 1rem;
}

.auth-btn-container .btn:hover {
  background-color: #07485a;
}

.hero-neon-section {
  background-color: #07485a;
  margin-top: 100px;
  padding: 20px;
}

.hero-neon-title {
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 0 7px #060606, 0 0 10px #fff, 0 0 21px #00fff7, 0 0 42px #00fff7, 0 0 82px #00fff7;
  text-align: center;
  margin: 0;
  font-family: sans-serif\, cursive;
  font-size: 2.8rem;
}

.features {
  text-align: center;
  background-color: #f4f4f4;
  padding: 40px 20px;
}

.features h2 {
  margin-bottom: 30px;
  font-size: 2rem;
}

.feature-cards {
  flex-wrap: wrap;
  justify-content: space-around;
  display: flex;
}

.feature-card {
  background-color: #fff;
  border-radius: 10px;
  width: 30%;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 2px 10px #0000001a;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.feature-card p {
  font-size: 1rem;
}

.pricing {
  text-align: center;
  background-color: #d7d4d4;
  padding: 50px 20px;
}

.pricing h2 {
  margin-bottom: 30px;
  font-size: 2rem;
}

.pricing-cards {
  flex-wrap: wrap;
  justify-content: space-around;
  display: flex;
}

.pricing-card {
  background-color: #fff;
  border-radius: 10px;
  width: 30%;
  margin-bottom: 20px;
  padding: 30px;
  box-shadow: 0 2px 10px #0000001a;
}

.pricing-card h3 {
  margin-bottom: 20px;
  font-size: 1.75rem;
}

.pricing-card p {
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.pricing-card ul {
  margin-bottom: 20px;
  padding-left: 0;
  list-style-type: none;
}

.pricing-card ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.btn {
  color: #fff;
  cursor: pointer;
  text-align: center;
  background-color: #144156;
  border: none;
  border-radius: 5px;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
}

.btn:hover {
  background-color: #008bb2;
}

.footer {
  color: #fff;
  text-align: center;
  background-color: #333;
  padding: 20px 0;
  font-size: 1rem;
}

.perche-scegliere {
  text-align: center;
  background: linear-gradient(135deg, #dfdae5, #c5d4e2);
  padding: 40px 20px;
}

.perche-scegliere h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.perche-scegliere p {
  color: #2b4052;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.proteggi {
  text-align: center;
  background: linear-gradient(135deg, #fff, #fff);
  padding: 40px 20px;
}

.proteggi h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.proteggi p {
  color: #2b4052;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.geoblocking {
  text-align: center;
  background: linear-gradient(135deg, #fff, #fff);
  padding: 40px 20px;
  box-shadow: 0 4px 6px #0000001a;
}

.geoblocking h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.geoblocking p {
  color: #2b4052;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.monero {
  text-align: center;
  background: linear-gradient(135deg, #fff, #fff);
  padding: 40px 20px;
  box-shadow: 0 4px 6px #0000001a;
}

.monero h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.monero p {
  color: #2b4052;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (width <= 768px) {
  .heroSection {
    text-align: center;
    flex-direction: column;
    padding: 30px 10px;
  }

  .centerLinks {
    flex: 1;
    margin-top: 15px;
  }

  .hero-link {
    margin: 10px 0;
  }

  .logoArea {
    margin-bottom: 20px;
  }

  .authArea {
    margin-top: 20px;
  }

  .feature-cards {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    width: 90%;
    margin-bottom: 20px;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 90%;
    margin-bottom: 20px;
  }
}


/* [project]/src/app/components/foo.css [app-client] (css) */
.footer {
  color: #fff;
  text-align: center;
  z-index: 1000;
  background-color: #333;
  width: 100%;
  padding: 20px 0;
  position: relative;
  bottom: 0;
  left: 0;
}

.footer-content {
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
  display: flex;
}

.footer-left, .footer-center, .footer-right {
  flex: 1;
}

.footer-left {
  text-align: left;
}

.footer-center {
  text-align: center;
}

.footer-right {
  text-align: right;
}

.footer p {
  margin: 10px 0;
  font-size: 1rem;
}

.social-links {
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  display: flex;
}

.social-links a {
  text-decoration: none;
}

.social-links img {
  width: 30px;
  height: 30px;
  transition: transform .3s;
}

.social-links img:hover {
  transform: scale(1.2);
}

.footer-right ul {
  padding: 0;
  list-style: none;
}

.footer-right li {
  margin-bottom: 10px;
}

.footer-right a {
  color: #fff;
  text-decoration: none;
}

.footer-right a:hover {
  color: #4d063380;
}

.facebook {
  filter: invert(28%) sepia(91%) saturate(746%) hue-rotate(190deg) brightness(98%) contrast(91%);
  width: 24px;
  height: 24px;
}

.reddit {
  filter: invert(46%) sepia() saturate(3700%) hue-rotate(2deg) brightness() contrast(102%);
  width: 24px;
  height: 24px;
}

.discord {
  filter: invert(40%) sepia(79%) saturate(528%) hue-rotate(211deg) brightness(94%) contrast(98%);
  width: 24px;
  height: 24px;
}

@media (width <= 600px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-left, .footer-center, .footer-right {
    text-align: center;
    margin-bottom: 10px;
  }

  .footer p {
    font-size: .9rem;
  }

  .social-links {
    gap: 15px;
  }

  .footer-right ul {
    padding-left: 0;
  }
}


/* [project]/src/app/components/navbar.css [app-client] (css) */
.navbar {
  z-index: 1000;
  background: linear-gradient(135deg, #dfdae5, #9094b0);
  justify-content: space-between;
  width: 100%;
  padding: 10px 20px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.menu-toggle {
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: none;
  position: relative;
}

.menu-toggle span {
  background: #1e1e1e;
  border-radius: 2px;
  width: 28px;
  height: 4px;
  transition: all .3s cubic-bezier(.4, 2, .6, 1);
  display: block;
  position: relative;
}

.menu-toggle span:before, .menu-toggle span:after {
  content: "";
  background: #222;
  border-radius: 2px;
  width: 28px;
  height: 4px;
  transition: all .3s cubic-bezier(.4, 2, .6, 1);
  display: block;
  position: absolute;
  left: 0;
}

.menu-toggle span:before {
  top: -9px;
}

.menu-toggle span:after {
  top: 9px;
}

.menu-toggle.open span {
  background: none;
}

.menu-toggle.open span:before {
  top: 0;
  transform: rotate(45deg)translate(5px, 5px);
}

.menu-toggle.open span:after {
  top: 0;
  transform: rotate(-45deg)translate(5px, -5px);
}

.nav-links {
  color: #fff;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: #000000e6;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
}

.nav-links a:hover {
  color: #ffffff80;
}

button {
  color: #fff;
  cursor: pointer;
  background-color: red;
  border: none;
  padding: 8px 15px;
}

@media (width <= 768px) {
  .nav-links {
    backdrop-filter: blur(2px);
    background-color: #4446504d;
    flex-direction: column;
    width: 100%;
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    box-shadow: 0 4px 20px #000c;
  }

  .nav-links li:hover {
    color: #23318e80;
  }

  .nav-links li {
    text-align: center;
    margin: 20px 0;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    top: 10px;
    right: 20px;
  }

  .nav-links.active {
    display: flex;
  }
}


/*# sourceMappingURL=src_app_5dc343fd._.css.map*/