* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f5f5f5;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.header {
  text-align: center;
  margin-bottom: 40px;
}

.header h1 {
  color: #666;
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 400;
}

.header p {
  color: #856404;
  font-size: 1.1rem;
}

.poster-section {
  text-align: center;
  margin-bottom: 40px;
}

.poster-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.poster-image:hover {
  transform: scale(1.02);
}

.details-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  justify-content: space-between;
  width: 100%;
  max-width: calc(100vw - 40px);
  margin-left: auto;
  margin-right: auto;
}

.detail-card {
  flex: 1;
  min-width: 200px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.detail-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.detail-card:hover .detail-image {
  transform: scale(1.05);
}

.info-box {
  background: linear-gradient(135deg, #4a7c59 0%, #2d5016 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.info-box h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.info-box p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.7;
}

.info-box p:last-child {
  margin-bottom: 0;
}

.footer {
  text-align: center;
  padding: 20px;
  background: rgba(255,255,255,0.9);
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.footer p {
  color: #666;
  font-size: 0.9rem;
}

.copyright {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-top: 30px;
}

.email-link {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.email-link a {
  color: #4a7c59;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.email-link a:hover {
  color: #2d5016;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
  
  .header h1 {
    font-size: 1.2rem;
  }
  
  .header p {
    font-size: 1rem;
  }
  
  .details-gallery {
    flex-direction: column;
    gap: 12px;
  }
  
  .detail-card {
    min-width: 100%;
  }
  
  .info-box {
    padding: 20px;
  }
  
  .info-box h2 {
    font-size: 1.3rem;
  }
  
  .info-box p {
    font-size: 1rem;
  }
}

/* Animazioni */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.header,
.poster-section,
.details-gallery,
.info-box,
.email-link,
.copyright {
  animation: fadeIn 0.8s ease-out;
}