/* === Base Reset === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cabin', sans-serif;
  font-size: 16px;
  background: #ffffff;
  color: #141414;
  line-height: 1.5;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

input, button, textarea, select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
}

:root {
  --font-primary: 'Cabin', sans-serif;
  --font-headline: 'Pridi', serif;
  --color-main: #d12d2d;
  --color-bg: #fff;
  --color-dark: #101010;
  --radius-soft: 8px;
}

/* ==== Header / Navigation ==== */
.ozzone-header {
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.ozzone-grid {
  max-width: 1280px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wingnav__list {
  display: flex;
  gap: 2rem;
}

.wingnav__item {
  font-family: var(--font-headline);
  font-weight: 500;
  color: var(--color-dark);
  transition: color 0.25s;
}

.wingnav__item:hover {
  color: var(--color-main);
}

.ozzycall-btn {
  background: var(--color-main);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-soft);
  font-weight: 600;
  transition: background 0.2s;
}

.ozzycall-btn:hover {
  background: #b52222;
}

.navswitcher {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* ==== Hero Section ==== */
.hero-flare {
  background-image: 
    linear-gradient(rgba(255, 233, 195, 0.7), rgba(230, 57, 70, 0.7)),
    url('../img/hero-bg-lotto.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  color: #ffffff;
  text-align: center;
}

.flare-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

.flare-core {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.flare-core__title {
  font-family: var(--font-headline);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.flare-core__subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.flare-core__action {
  background: #fff;
  color: var(--color-main);
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-soft);
  margin-bottom: 1.5rem;
}

.flare-core__note {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ==== Modal Form ==== */
.modal-ticketbox {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 200;
}

.modal-blur {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.ticketbox-card {
  position: relative;
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-soft);
  max-width: 400px;
  z-index: 201;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.ticketbox-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #333;
}

.ticketbox-title {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.ticketbox-form {
  display: flex;
  flex-direction: column;
}

.ticketbox-label {
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: left;
}

.ticketbox-input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: var(--radius-soft);
  margin-top: 0.3rem;
}

.ticketbox-submit {
  margin-top: 1.5rem;
  background: var(--color-main);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-soft);
  font-weight: 600;
}

/* ==== Thank You Message ==== */
.modal-thankyou {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 210;
  background: rgba(0,0,0,0.5);
}

.thankyou-wrapper {
  background: #ffffff;
  padding: 2rem 2rem;
  border-radius: var(--radius-soft);
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.thankyou-text {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

.thankyou-dismiss {
  background: var(--color-main);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-soft);
  font-weight: 600;
}

/* ==== Responsive ==== */
@media (max-width: 768px) {
  .wingnav__list {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .wingnav__list.menu-opened {
    display: flex;
  }

  .navswitcher {
    display: block;
  }

  .ozzycall-btn {
    display: none;
  }
}

.block-aboutsky {
  padding: 5rem 2rem;
  background: #f9f9f9;
}

.aboutsky-wrap {
  display: flex;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: auto;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
}

.aboutsky-textzone {
  flex: 1 1 550px;
}

.aboutsky-title {
  font-family: var(--font-headline);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.aboutsky-paragraph {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 2rem;
}

.aboutsky-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.metric-bubble {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.metric-bubble i {
  font-size: 1.4rem;
  color: var(--color-main);
}

.aboutsky-points {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.aboutsky-points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #222;
}

.aboutsky-points li i {
  color: var(--color-main);
}

/* Right Side Image */
.aboutsky-imagery {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.animated-framelotto {
  position: relative;
  width: 100%;
  max-width: 380px;
  animation: floatloop 6s ease-in-out infinite;
}

.animated-imglotto {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Animation */
@keyframes floatloop {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.03);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .aboutsky-wrap {
    flex-direction: column;
  }
  .aboutsky-imagery {
    margin-top: 2rem;
  }
}

.flowx-stage {
  background: linear-gradient(to right, #fceabb, #f8b500);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.flowx-headline {
  font-family: var(--font-headline);
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: #1a1a1a;
  z-index: 1;
  position: relative;
}

.flowx-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 4rem;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.flowx-step {
  width: 200px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  transition: transform 0.3s ease;
}

.flowx-step:hover {
  transform: scale(1.05);
}

.flowx-circle {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 60% 40% 35% 65% / 60% 40% 60% 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  color: var(--color-main);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
}

.flowx-step:hover .flowx-circle {
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.flowx-desc {
  margin-top: 1.2rem;
}

.flowx-desc h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: #111;
}

.flowx-desc p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
  padding: 0 0.5rem;
}

/* Wave background "path" */
.flowx-track::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg width='1000' height='40' viewBox='0 0 1000 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 C200 0 400 40 600 20 C800 0 1000 40 1200 20' stroke='%23d12d2d' stroke-width='4' fill='none'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
  .flowx-track {
    flex-direction: column;
    align-items: center;
  }

  .flowx-step {
    width: 100%;
    max-width: 300px;
  }

  .flowx-track::before {
    display: none;
  }
}

.vaultmax-zone {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, #fff8e7, #ffecd2);
  text-align: center;
}

.vaultmax-wrapper {
  max-width: 1200px;
  margin: auto;
}

.vaultmax-title {
  font-family: var(--font-headline);
  font-size: 2.4rem;
  margin-bottom: 3rem;
  color: #222;
}

.vaultmax-main {
  margin-bottom: 4rem;
}

.prize-glowbox {
  position: relative;
  background: radial-gradient(circle at center, #ffd700 0%, #ff9c00 70%, #cc7000 100%);
  border-radius: 50%;
  width: 260px;
  height: 260px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulseGold 3s infinite;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 165, 0, 0.5),
              0 0 60px rgba(255, 215, 0, 0.5),
              0 0 80px rgba(255, 255, 255, 0.4);
}

.prize-content {
  background: rgba(0, 0, 0, 0.45);
  padding: 1.2rem 1rem;
  border-radius: 12px;
  text-align: center;
}

.prize-amount {
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 1px 3px #000;
}

.prize-subtext {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #fff;
  opacity: 0.9;
}

@keyframes pulseGold {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.5),
                0 0 60px rgba(255, 215, 0, 0.5),
                0 0 80px rgba(255, 255, 255, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 180, 0, 0.8),
                0 0 90px rgba(255, 230, 0, 0.6),
                0 0 120px rgba(255, 255, 255, 0.6);
  }
}

.vaultmax-extras {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.prize-tile {
  background: #fff;
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.07);
  width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prize-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.prize-tile img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 10px;
}

.prize-tile h3 {
  font-size: 1rem;
  color: #111;
}

/* Responsive */
@media (max-width: 768px) {
  .prize-glowbox {
    width: 200px;
    height: 200px;
  }

  .prize-amount {
    font-size: 1.8rem;
  }

  .vaultmax-extras {
    gap: 1.5rem;
  }
}

.drawwave-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #ffcfdf 0%, #b0f3f1 50%, #a6c1ee 100%);
  color: #111;
  text-align: center;
  position: relative;
}

.drawwave-wrapper {
  max-width: 900px;
  margin: auto;
}

.drawwave-title {
  font-family: var(--font-headline);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #222;
}

.drawwave-subline {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.drawwave-timer {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 2rem;
  font-weight: bold;
}

.timebox {
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  min-width: 100px;
}

.timebox span {
  display: block;
  font-size: 2.5rem;
  color: var(--color-main);
}

.timebox label {
  font-size: 0.9rem;
  color: #333;
  margin-top: 0.4rem;
}

/* Responsive */
@media (max-width: 600px) {
  .drawwave-timer {
    flex-direction: column;
    gap: 1.2rem;
  }
}

.lottoresults-deck {
  background: linear-gradient(to bottom, #fdfbfb, #ebedee);
  padding: 6rem 2rem;
}

.lottoresults-wrapper {
  max-width: 1200px;
  margin: auto;
}

.lottoresults-title {
  font-family: var(--font-headline);
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #1c1c1c;
}

.lottoresults-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.lotto-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.lotto-card:hover {
  transform: translateY(-5px);
}

.lotto-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.lotto-header img {
  width: 60px;
  height: auto;
  margin-bottom: 0.5rem;
}

.lotto-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #222;
}

.lotto-date {
  font-size: 0.85rem;
  color: #666;
}

.lotto-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1rem 0;
}

.numball {
  background: #f1f1f1;
  border-radius: 50%;
  padding: 0.6rem 0.9rem;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: inset 0 -2px 3px rgba(0,0,0,0.1);
}

.numball.supp {
  background: #ffe3b3;
}

.numball.power {
  background: #ff9c9c;
}

.lotto-supp {
  text-align: center;
  font-size: 0.85rem;
  color: #333;
  margin-bottom: 1rem;
}

.lotto-links {
  text-align: center;
  font-size: 0.85rem;
}

.lotto-links a {
  color: var(--color-main);
  font-weight: 500;
  text-decoration: underline;
}

.successwrap-zone {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, #ffffff, #f2f2f2);
}

.successwrap-wrapper {
  max-width: 1200px;
  margin: auto;
}

.successwrap-title {
  font-family: var(--font-headline);
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

.successwrap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
  gap: 2.5rem;
}

.winner-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.winner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.winner-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.winner-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: #222;
}

.winner-info h3 span {
  font-weight: 400;
  font-size: 0.9rem;
  color: #777;
}

.winner-amount {
  color: var(--color-main);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.winner-quote {
  font-size: 0.92rem;
  color: #333;
  font-style: italic;
  line-height: 1.5;
}

.connectbox-wrap {
  padding: 5rem 2rem;
  background: linear-gradient(to bottom, #fefefe, #f2f3f7);
}

.connectbox-inner {
  max-width: 1100px;
  margin: auto;
}

.connectbox-title {
  text-align: center;
  font-family: var(--font-headline);
  font-size: 2.3rem;
  margin-bottom: 2rem;
}

.connectbox-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.contact-details {
  flex: 1 1 300px;
  font-size: 1rem;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-details i {
  color: var(--color-main);
  margin-right: 0.6rem;
  font-size: 1.3rem;
}

.contact-formozzy {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-formozzy input,
.contact-formozzy textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
}

.contact-formozzy button {
  background: var(--color-main);
  color: #fff;
  padding: 0.9rem;
  font-weight: bold;
  border-radius: 10px;
  transition: background 0.3s;
}

.contact-formozzy button:hover {
  background: #b82020;
}

/* Thank You Modal */
.ozzy-thanksmodal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 200;
}

.ozzy-thanks-box {
  background: #fff;
  padding: 2rem 3rem;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.ozzy-thanks-box p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.ozzy-thanks-box button {
  background: var(--color-main);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 10px;
  font-weight: 600;
}

.risknote-block {
  padding: 4rem 2rem;
  background: #fff3f3;
  border-top: 2px solid #cc2a2a;
}

.risknote-inner {
  max-width: 1000px;
  margin: auto;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

.risknote-inner h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #b82020;
}

.risknote-inner a {
  color: var(--color-main);
  text-decoration: underline;
}

.betozzy-footer {
  background: #181818;
  color: #ddd;
  padding: 4rem 2rem 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-disclaimer {
  max-width: 1000px;
  margin: auto;
  margin-bottom: 2.5rem;
  color: #ccc;
}

.footer-disclaimer p {
  margin-bottom: 1rem;
}

.footer-disclaimer a {
  color: #ffa726;
  text-decoration: underline;
}

.footer-resources {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-resources img {
  height: 60px;
  width: auto;
  filter: brightness(0.9) saturate(1.2);
  transition: transform 0.3s ease;
  background: #fff3f3;
  padding: 6px;
  border-radius: 3px;
}

.footer-resources img:hover {
  transform: scale(1.05);
}

.footer-legal {
  text-align: center;
  margin-bottom: 1rem;
}

.footer-legal a {
  color: #f0a500;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 500;
}

.footer-legal a:hover {
  text-decoration: underline;
}

.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: #999;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(24, 24, 24, 0.96);
  color: #fff;
  padding: 1rem 2rem;
  z-index: 999;
  display: none;
}

.cookie-box {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-box p {
  flex: 1 1 700px;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.cookie-box a {
  color: #ffa726;
  text-decoration: underline;
}

.cookie-accept {
  background: var(--color-main);
  color: #fff;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-accept:hover {
  background: #c62828;
}

@media (max-width: 768px) {
  .cookie-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-accept {
    align-self: flex-end;
    margin-top: 1rem;
  }
}
