* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
  width: 100%;
}
main, section, div {
  max-width: 100%;
}

/* Intro Video */
.intro-video {
  position: relative;
  z-index: 2;
  background: #000;
  padding: 80px 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 768px) {
  .intro-video {
    padding: 70px 10px 20px;
  }
  .video-wrapper {
    border-radius: 8px;
  }
}
@media (max-width: 480px) {
  .intro-video {
    padding: 65px 5px 15px;
  }
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #f0f0f0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  overflow-x: hidden;
  padding-top: 80px;
}

.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Orbitron", sans-serif;
  color: #00ffff;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
a:hover {
  color: #00ffff;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: transparent;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  transition: all 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
  height: 80px;
}
nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 46, 0.3);
  backdrop-filter: blur(10px);
  z-index: -1;
}
nav .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  padding: 0 20px;
}
nav .logo {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #00ffff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.4);
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 5px;
  position: relative;
  z-index: 11;
}
nav .logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}
nav ul {
  display: flex;
  gap: 30px;
}
nav ul li {
  position: relative;
}
nav ul li a {
  color: #f0f0f0;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding: 5px 0;
  position: relative;
  text-transform: uppercase;
  font-size: 0.95rem;
}
nav ul li a:hover {
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #00ffff;
  transition: width 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
nav ul li a:hover::after {
  width: 100%;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 11;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.hamburger-menu:hover {
  background-color: rgba(0, 255, 255, 0.1);
}
.hamburger-menu.active .bar {
  background-color: #00ffff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}
.hamburger-menu .bar {
  width: 30px;
  height: 2px;
  background-color: #f0f0f0;
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 11;
}

@media (max-width: 768px) {
  nav {
    padding: 10px;
  }
  nav .nav-container {
    padding: 0 5px;
  }
  nav .logo {
    font-size: 1.75rem;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 30px 0;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
  }
  .nav-links::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(15px);
    z-index: -1;
  }
  .nav-links.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links li a {
    display: block;
    padding: 10px;
    font-size: 1rem;
    letter-spacing: 1px;
  }
  .nav-links li a:hover {
    background-color: rgba(0, 255, 255, 0.1);
  }
  .nav-links li a::after {
    display: none;
  }
  .hamburger-menu {
    display: flex;
    margin-left: auto;
  }
  /* New styles for wallet in mobile view */
  .wallet-nav-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
  }
  
  .wallet-container {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .wallet-button,
  #disconnectButton {
    width: auto;
    min-width: 150px;
    margin: 5px auto;
    text-align: center;
  }
  
  #walletInfo {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  
  #walletAddress {
    width: 100%;
    text-align: center;
    word-break: break-all;
    padding: 0 10px;
  }
}
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -80px;
  padding-top: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}
.hero-content h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 48px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-content h1 span {
  display: block;
  margin-bottom: 10px;
}
.hero-content p {
  font-size: 24px;
  margin-bottom: 30px;
}

.neon-text {
  white-space: pre-line;
  color: #fff;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.5), 0 0 8px rgba(0, 255, 255, 0.3);
}

.glow-text {
  animation: glow 2s ease-in-out infinite alternate;
}

.btn {
  display: inline-block;
  background-color: #00ffff;
  color: #1a1a2e;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  margin: 10px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.btn.secondary {
  background-color: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
}
.btn.neon-btn {
  box-shadow: 0 0 5px rgba(0, 255, 255, 0.3), 0 0 10px rgba(255, 0, 170, 0.2);
}
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.4), 0 0 15px rgba(0, 255, 255, 0.2);
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #1a1a2e;
}

@keyframes glow {
  from {
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.4), 0 0 6px rgba(0, 255, 255, 0.3);
  }
  to {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(0, 255, 255, 0.35);
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  .hero h1 span {
    margin-bottom: 5px;
  }
  .hero p {
    font-size: 18px;
  }
  .btn {
    font-size: 16px;
    padding: 12px 24px;
  }
}
section {
  padding: 100px 20px;
}

.section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 36px;
  margin-bottom: 50px;
  text-align: center;
  color: #00ffff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.4);
}

/* Cos'è 5NRG Section */
.cose-5nrg {
  padding: 80px 20px;
  background-color: rgba(22, 33, 62, 0.9);
  text-align: center;
}
.cose-5nrg-content {
  max-width: 900px;
  margin: 0 auto;
}
.cose-5nrg-subtitle {
  font-family: "Orbitron", sans-serif;
  font-size: 28px;
  color: #00ffff;
  margin-bottom: 20px;
  text-shadow: 0 0 4px rgba(0, 255, 255, 0.3);
}
.cose-5nrg-description {
  font-size: 18px;
  line-height: 1.8;
  color: #f0f0f0;
  margin-bottom: 40px;
}
.cose-5nrg-cta-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.cose-5nrg .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 30px;
  font-family: "Orbitron", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.cose-5nrg .cta-button i {
  font-size: 18px;
}
.cose-5nrg .cta-sunswap {
  background: linear-gradient(135deg, #ff6b35, #f7931a);
  color: #fff;
}
.cose-5nrg .cta-sunswap:hover {
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
  transform: translateY(-3px);
}
.cose-5nrg .cta-tronscan {
  background: linear-gradient(135deg, #c23631, #ff0000);
  color: #fff;
}
.cose-5nrg .cta-tronscan:hover {
  box-shadow: 0 0 20px rgba(194, 54, 49, 0.6);
  transform: translateY(-3px);
}
.cose-5nrg .cta-cmc {
  background: linear-gradient(135deg, #3861fb, #17c0eb);
  color: #fff;
}
.cose-5nrg .cta-cmc:hover {
  box-shadow: 0 0 20px rgba(56, 97, 251, 0.6);
  transform: translateY(-3px);
}
.cose-5nrg .cta-whitepaper {
  background: linear-gradient(135deg, #e63946, #f4a261);
  color: #fff;
}
.cose-5nrg .cta-whitepaper:hover {
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.6);
  transform: translateY(-3px);
}
.cose-5nrg-tagline {
  font-family: "Orbitron", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #00ffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.4);
  animation: glow 2s ease-in-out infinite alternate;
}

.come-funziona {
  background-color: rgba(26, 26, 46, 0.8);
}
.come-funziona .steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.come-funziona .step {
  max-width: 100%;
  margin: 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
  animation: float 6s ease-in-out infinite;
}
.come-funziona .step:hover {
  transform: translateY(-10px);
}
.come-funziona .step i {
  font-size: 50px;
  color: #00ffff;
  margin-bottom: 20px;
}
.come-funziona .step h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #00ffff;
}
.come-funziona .step p {
  font-size: 16px;
  color: #f0f0f0;
}

.prodotti {
  background-color: rgba(22, 33, 62, 0.8);
}
.prodotti .product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.prodotti .product {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  margin: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  animation: float 6s ease-in-out infinite;
}
.prodotti .product:hover {
  transform: scale(1.05);
}
.prodotti .product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.prodotti .product h3 {
  font-size: 24px;
  margin: 20px 0 10px;
  color: #00ffff;
  padding: 0 20px;
}
.prodotti .product p {
  font-size: 16px;
  color: #f0f0f0;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.cashback {
  background-image: url("https://images.unsplash.com/photo-1579621970563-ebec7560ff3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  text-align: center;
}
.cashback::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 26, 46, 0.7);
}
.cashback h2, .cashback p, .cashback .btn {
  position: relative;
  z-index: 1;
}
.cashback h2 {
  color: #00ffff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.4);
  margin-bottom: 20px;
}
.cashback p {
  font-size: 24px;
  margin-bottom: 30px;
  color: #f0f0f0;
}
.cashback .btn {
  background-color: #00ffff;
  color: #1a1a2e;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
}
.cashback .btn:hover {
  background-color: #f0f0f0;
  color: #1a1a2e;
  box-shadow: 0 0 30px #f0f0f0, 0 0 50px #f0f0f0;
}

.diventa-socio {
  background-color: rgba(26, 26, 46, 0.8);
  text-align: center;
}
.diventa-socio p {
  font-size: 20px;
  margin-bottom: 30px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
  .steps {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .step {
    max-width: 100% !important;
  }
  .product-list {
    flex-direction: column;
    align-items: center;
    gap: 30px !important;
  }
  .product {
    width: 90% !important;
    max-width: 300px !important;
    margin: 0 !important;
  }
  .product img {
    height: 180px !important;
  }
  .product h3 {
    font-size: 22px !important;
    margin: 15px 0 10px !important;
  }
  .product p {
    font-size: 15px !important;
    padding: 0 15px 15px !important;
  }
}
.team {
  background-color: rgba(22, 33, 62, 0.8);
  padding: 80px 20px;
}
.team .team-members {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.team .team-member {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.team .team-member:hover {
  transform: translateY(-10px);
  border-color: #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}
.team .team-member .img-container {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  margin-bottom: 20px;
  position: relative;
}
.team .team-member img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #00ffff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  display: block;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.team .team-member h3 {
  color: #00ffff;
  font-size: 24px;
  margin-bottom: 10px;
  text-shadow: 0 0 4px rgba(0, 255, 255, 0.3);
}
.team .team-member .role {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
  font-family: "Orbitron", sans-serif;
}
.team .team-member p {
  color: #f0f0f0;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .team {
    padding: 40px 20px;
  }
  .team .team-member {
    min-width: 280px;
  }
  .team .team-member .img-container {
    width: 150px;
    height: 150px;
  }
  .team .team-member h3 {
    font-size: 22px;
  }
  .team .team-member .role {
    font-size: 16px;
  }
  .team .team-member p {
    font-size: 14px;
  }
}
.faq {
  background-color: rgba(22, 33, 62, 0.8);
  padding: 80px 20px;
}
.faq .faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq .faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq .faq-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.faq .faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(180deg);
}
.faq .faq-item.active .faq-answer {
  max-height: 1000px;
  opacity: 1;
}
.faq .faq-question {
  font-size: 18px;
  padding: 20px;
  cursor: pointer;
  position: relative;
  color: #00ffff;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq .faq-question::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  font-size: 20px;
}
.faq .faq-question:hover {
  color: #33ffff;
}
.faq .faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  background-color: rgba(255, 255, 255, 0.05);
}
.faq .faq-answer p, .faq .faq-answer ul, .faq .faq-answer ol {
  padding: 0 20px 20px;
  color: #f0f0f0;
  line-height: 1.6;
}
.faq .faq-answer ul, .faq .faq-answer ol {
  margin-left: 20px;
}
.faq .faq-answer ul li, .faq .faq-answer ol li {
  margin-bottom: 5px;
}
.faq .faq-answer a {
  color: #00ffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.faq .faq-answer a:hover {
  color: #33ffff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faq {
    padding: 40px 20px;
  }
  .faq .faq-question {
    font-size: 16px;
    padding: 10px 20px;
  }
  .faq .faq-answer p, .faq .faq-answer ul, .faq .faq-answer ol {
    padding: 0 10px 10px;
    font-size: 14px;
  }
}
.contatti {
  background-color: rgba(26, 26, 46, 0.8);
  padding: 80px 20px;
}
.contatti .contact-icons {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
}
.contatti .contact-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}
.contatti .contact-icon-link i {
  font-size: 40px;
  color: #00ffff;
  transition: all 0.3s ease;
}
.contatti .contact-icon-link:hover {
  background: rgba(0, 255, 255, 0.2);
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}
.contatti .contact-icon-link:hover i {
  color: #fff;
}
@media (max-width: 480px) {
  .contatti .contact-icons {
    gap: 30px;
  }
  .contatti .contact-icon-link {
    width: 60px;
    height: 60px;
  }
  .contatti .contact-icon-link i {
    font-size: 30px;
  }
}

.whatsapp-btn {
  background-color: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0;
  box-shadow: 0 0 10px #25D366, 0 0 20px #25D366, 0 0 30px #25D366;
}
.whatsapp-btn i {
  margin-right: 5px;
  font-size: 20px;
}
.whatsapp-btn:hover {
  background-color: #128C7E;
  transform: scale(1.05);
  box-shadow: 0 0 15px #128C7E, 0 0 30px #128C7E, 0 0 45px #128C7E;
}

.footer-buttons {
  position: fixed;
  bottom: 8px;
  right: 100px;
  z-index: 999;
}
.footer-buttons a {
  display: inline-block;
  padding: 15px 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50px;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.footer-buttons a:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
}

footer {
  background-color: #1a1a2e;
  color: #f0f0f0;
  padding: 20px;
  text-align: center;
}

.fixed-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px 20px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
  height: 90px;
}

.neon-footer-text {
  color: #fff;
  font-family: Arial, sans-serif;
  text-shadow: 0 0 3px rgba(0, 255, 0, 0.4), 0 0 8px rgba(0, 255, 0, 0.2);
  animation: pulse 1.5s infinite alternate;
}
.neon-footer-text a {
  color: #00ff00;
  text-decoration: none;
}
.neon-footer-text a:hover {
  text-decoration: underline;
}

@keyframes pulse {
  from {
    text-shadow: 0 0 3px rgba(0, 255, 0, 0.3), 0 0 6px rgba(0, 255, 0, 0.15);
  }
  to {
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.45), 0 0 10px rgba(0, 255, 0, 0.25);
  }
}
@media (max-width: 768px) {
  .contatti {
    padding: 40px 20px;
  }
  .whatsapp-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
  .footer-buttons {
    right: 70px;
  }
  .footer-buttons a {
    padding: 10px 20px;
    font-size: 14px;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  background-color: #1a1a2e;
  color: #f0f0f0;
  font-family: "Roboto", sans-serif;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  background-color: #1a1a2e;
}

main {
  position: relative;
  z-index: 2;
}

::selection {
  background-color: #00ffff;
  color: #1a1a2e;
}

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

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

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mb-5 {
  margin-bottom: 80px;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-5 {
  margin-top: 80px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media print {
  .no-print {
    display: none !important;
  }
  body {
    background: none;
    color: #000;
  }
  a {
    text-decoration: underline;
  }
  .container {
    max-width: none;
    width: 100%;
  }
}

/* Stile per il testo nel bottone di connessione del wallet */
.wallet-button {
  font-size: 18px;
  font-weight: bold;
  color: yellow;
}

/* Stile per l'indirizzo del wallet */
#walletAddress {
  font-size: 16px;
  font-weight: bold;
  color: yellow;
}

/* Stile per il bottone di disconnessione */
#disconnectButton {
  font-size: 18px;
  font-weight: bold;
  color: yellow;
}

/* Per assicurarci che tutto il testo nel container sia giallo */
.wallet-container {
  color: yellow;
  font-weight: bold;
}
