:root {
  --black: #0a0a0b;
  --yellow: #ffd000;
  --yellow-dim: #e6bc00;
  --yellow-glow: rgba(255, 208, 0, 0.4);
  --gray: #1a1a1d;
  --gray-light: #2a2a2e;
  --white: #f0f0f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Site header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 208, 0, 0.2);
  padding: 0.75rem 1.5rem;
}
.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  background: linear-gradient(135deg, var(--yellow) 0%, #fff8c9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: filter 0.2s;
}
.site-logo:hover {
  filter: brightness(1.15);
}
.site-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.site-nav a {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.2s;
}
.site-nav a:hover {
  color: var(--yellow);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

.buy-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dim) 100%);
  color: var(--black);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px var(--yellow-glow);
}
.buy-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px var(--yellow-glow);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, var(--gray) 0%, transparent 60%),
              linear-gradient(180deg, var(--black) 0%, var(--black) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(90deg, transparent 49%, var(--yellow) 50%, transparent 51%) 0 0 / 2px 100% repeat-y,
    linear-gradient(0deg, transparent 49%, var(--yellow) 50%, transparent 51%) 0 0 / 100% 2px repeat-x;
  opacity: 0.15;
  pointer-events: none;
}
@keyframes scanline {
  0%, 100% { opacity: 0.03; }
  50% { opacity: 0.08; }
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0.6;
  animation: scanline 3s ease-in-out infinite;
  pointer-events: none;
}
.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1100px;
}
.hero-text {
  flex: 1 1 320px;
}
.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--yellow), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .tagline {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.hero .hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.hero .price {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  color: var(--yellow);
  margin-bottom: 1.5rem;
}
.hero .price s {
  color: rgba(255,255,255,0.4);
  font-size: 1.2rem;
}
.hero-img-wrap {
  flex: 0 1 320px;
  position: relative;
}
.hero-img-wrap img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px var(--yellow-glow));
}
.hero .buy-btn {
  margin-top: 0.5rem;
}

/* Sections common */
section {
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 1rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.section-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 70ch;
}
.banner-caption {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* Banners */
.banner-block {
  margin-bottom: 3rem;
}
.banner-block img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(255,208,0,0.2);
}
.banner-block .buy-wrap {
  text-align: center;
  margin-top: 1.5rem;
}

/* Product info */
.product-info {
  background: var(--gray);
  padding: 3rem 2rem;
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--yellow);
}
.product-info p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}
.product-info strong {
  color: var(--yellow);
}
.product-info .buy-wrap {
  margin-top: 2rem;
}

/* Table */
.table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
}
.product-info table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.product-info th,
.product-info td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-light);
}
.product-info th {
  color: var(--yellow);
  font-family: 'Orbitron', sans-serif;
}

/* Lists */
.product-info ul {
  margin: 1rem 0 1rem 1.5rem;
  line-height: 1.8;
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* History block */
.history-block {
  background: var(--gray);
  padding: 2.5rem 2rem;
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--yellow);
}
.history-block .section-intro {
  margin-bottom: 1.5rem;
}
.history-content {
  margin-bottom: 2rem;
}
.history-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}
.history-block .buy-wrap {
  text-align: center;
}

/* Reviews block */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.review-card {
  background: var(--gray);
  padding: 1.5rem;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  border-color: rgba(255,208,0,0.3);
  box-shadow: 0 0 20px rgba(255,208,0,0.08);
}
.review-stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.review-text {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.review-name {
  font-weight: 600;
  color: var(--yellow);
}
.reviews-cta {
  text-align: center;
}

/* Footer CTA */
.footer-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(180deg, transparent 0%, var(--gray) 50%, var(--black) 100%);
}
.footer-cta p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
}
.footer-cta .buy-btn {
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
}

/* Site footer */
.site-footer {
  background: var(--gray);
  border-top: 1px solid var(--gray-light);
  padding: 3rem 1.5rem 2rem;
  margin-top: 0;
}
.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-disclosure {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-light);
}
.footer-disclosure p,
.footer-contacts p,
.footer-legal p,
.footer-copy p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
}
.footer-disclosure strong,
.footer-contacts strong,
.footer-legal strong {
  color: var(--yellow);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.footer-legal ul {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}
.footer-legal li {
  margin-bottom: 0.4rem;
}
.footer-legal a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: var(--yellow);
}
.footer-copy {
  margin-top: 1.5rem;
  padding-top: 1rem;
}
.footer-copy p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Legal pages (privacy, terms, cookie, contatti) */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  min-height: 50vh;
}
.legal-page-card {
  background: var(--gray);
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--yellow);
  padding: 2.5rem 2rem;
  box-shadow: 0 0 40px rgba(0,0,0,0.3);
}
.legal-page-card h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.75rem;
  color: var(--yellow);
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.legal-page-card h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  color: var(--yellow);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.legal-page-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.95);
  margin-top: 1.25rem;
  margin-bottom: 0.4rem;
}
.legal-page-card ul {
  margin: 0.5rem 0 1rem 1.5rem;
  padding: 0;
  line-height: 1.7;
}
.legal-page-card li {
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.9);
}
.legal-page-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}
.legal-page-card a {
  color: var(--yellow);
  text-decoration: none;
  transition: color 0.2s;
}
.legal-page-card a:hover {
  color: #fff8c9;
  text-decoration: underline;
}
.legal-page-card .buy-btn {
  margin-top: 1.5rem;
}
/* fallback when card not used */
.legal-page h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.75rem;
  color: var(--yellow);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.legal-page h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.95);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-page p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}
.legal-page a {
  color: var(--yellow);
  text-decoration: none;
}
.legal-page a:hover {
  text-decoration: underline;
}
.legal-page .buy-btn {
  margin-top: 1.5rem;
}
.contact-details {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: var(--gray);
  border-left: 4px solid var(--yellow);
}
.contact-details p {
  margin-bottom: 1rem;
}
.contact-details p:last-child {
  margin-bottom: 0;
}
.contact-details strong {
  color: var(--yellow);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
}

/* Footer contacts block */
.site-footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (min-width: 600px) {
  .site-footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.footer-contacts p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.4rem;
}
.footer-contacts a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}
.footer-contacts a:hover {
  color: var(--yellow);
}
.footer-disclosure {
  grid-column: 1 / -1;
}
.footer-copy {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }
  .hero-img-wrap {
    order: -1;
  }
  .section-intro {
    max-width: none;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
