:root {
  --blu-scuro: #0c426e;
  --blu-chiaro: #007aff;
  --bianco: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  height: 100%;
  min-height: 100%;
  width: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* Internet Explorer e Edge Legacy */
}

body::-webkit-scrollbar {
  display: none;                /* Chrome, Safari, Opera */
}

.hero {
  min-height: 100vh;
  position: relative;
  flex: 1 0 auto; /* permette l'espansione */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
}

.video-bg video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, rgba(52, 152, 219, 0.9), rgba(19, 70, 104, 0.9));
  z-index: -1;
}

.content {
  position: relative;
  z-index: 1;
  color: var(--bianco);
  padding: 20px;
  max-width: 1000px;
  margin: auto;
}

.logo {
  width: 50%;
  max-width: 300px;
  padding-bottom: 20px;
}

.obliquo {
  transform: rotate(0.5deg);
  margin: 3px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.countdown {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.newsletter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.newsletter input[type="email"] {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  width: 250px;
}

.newsletter button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: var(--blu-chiaro);
  color: var(--bianco);
  font-weight: 600;
  cursor: pointer;
}

.newsletter button:hover {
  background-color: #2d6ca2;
}

.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links img {
  width: 100%;
  height: auto;
  display: block;
}

.social-links a:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.store-section {
  margin-top: 40px;
  color: var(--bianco);
  text-align: center;
}

.store-section h2 {
  font-size: 1.6rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.store-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.store-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 20px;
  width: 280px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.store-card:hover {
  transform: translateY(-5px);
}

.store-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--bianco);
}

.store-card p {
  margin: 8px 0;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
}

.store-card a {
  color: var(--bianco);
  text-decoration: none;
  margin-left: 8px;
}

.store-card a:hover {
  text-decoration: underline;
}

.icon {
  width: 7%;
  filter: brightness(200%);
}

footer {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 600;
  color: var(--bianco);
  padding: 1rem;
  margin-top: 2rem;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  .countdown {
    font-size: 1.5rem;
  }

  .newsletter input {
    width: 100%;
  }
}
.site-footer {
  background: rgba(17, 19, 23, 0.9);
  color: #e9eef5;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
}

.site-footer .footer-links {
  margin-bottom: 8px;
}

.site-footer a {
  color: #5aa9ff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}
