:root {
  --primary: #f90e70;
  --bg-dark: #1e1e2f;
  --card-bg: #2c2c44;
  --text-white: #ffffff;
  --text-muted: #c0c0dd;
  --accent: #00d26a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
}
header {
  text-align: center;
  padding: 1rem 0;
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  background-color: var(--card-bg);
}

.hero {
  position: relative;
  overflow: hidden;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-white);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 1.5rem;
}

.hero-content h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 3rem 1rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

.features {
  background-color: var(--card-bg);
  color: var(--text-white);
  padding: 4rem 2rem;
  text-align: center;
}

.features-container {
  max-width: 1100px;
  margin: 0 auto;
}

.features h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: 800;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(to top left, #2c2c2c, #1b1b1b);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  width: 60px;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.main-nav li a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.main-nav li a:hover {
  color: var(--accent);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.burger span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    height: auto;
    background: var(--card-bg);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .burger {
    position: fixed;
    top: 6%;
    right: 20px;
    z-index: 1001;
    display: flex;
  }
}

@media (max-width: 570px) {
  .burger {
    top: 8%;
  }
}

.main-nav .dropdown {
  position: relative;
}

.main-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card-bg);
  display: none;
  flex-direction: column;
  padding: 0.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  min-width: 160px;
  z-index: 1000;
}

.main-nav .dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-white);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown-menu li:hover {
  background: var(--accent);
}

.dropdown-menu li:hover a {
  color: white;
}

@media (max-width: 980px) {
  .main-nav .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    padding-left: 1rem;
    display: none;
  }

  .main-nav .dropdown.open .dropdown-menu {
    display: flex;
  }

  .main-nav .dropdown > a::after {
    content: "▼";
    margin-left: 0.5rem;
    font-size: 0.7rem;
  }
}

.container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 2rem;
}

.site-header {
  background-color: var(--card-bg);
  padding: 1rem;
  text-align: center;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.logo:hover,
.logo:focus {
  color: var(--text-white);
}
.legal-banner {
  background-color: var(--card-bg);
  color: var(--text-white);
  padding: 1rem 1.5rem;
  justify-items: center;
  border: 4px solid var(--accent);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.legal-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.4;
}

.legal-content p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}

.btn-primary {
  background: var(--primary);
  color: var(--text-white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}
.lotto-platforms {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: 1rem;
}

.lotto-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card-bg);
  padding: 1rem 1.5rem;
  border-radius: 20px;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 70rem;
  width: 100%;
  color: var(--text-white);
}

.lotto-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.lotto-logo {
  width: 100px;
  height: auto;
  object-fit: contain;
}

.lotto-numbers {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.lotto-numbers span {
  background-color: var(--primary);
  color: var(--text-white);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.lotto-numbers .bonus {
  background-color: var(--text-white);
  color: var(--primary);
}

.lotto-center {
  text-align: left;
  min-width: 120px;
}

.lotto-prize {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.lotto-status {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

.lotto-right {
  text-align: right;
}

.lotto-link {
  background: var(--primary);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.lotto-draw {
  color: var(--text-white);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .lotto-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .lotto-left,
  .lotto-center,
  .lotto-right {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .lotto-link {
    width: 100%;
  }
}

.platform-image {
  position: relative;
  width: 100%;
  min-height: 200px;

  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(209, 237, 97, 0.15);
  margin: 1.5rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.45);
  z-index: 1;
  border-radius: 16px;
}

.platform-image img,
.platform-image > * {
  position: relative;
  z-index: 2;
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

@media (max-width: 700px) {
  .platform-image {
    min-height: 120px;
    border-radius: 10px;
  }
}

.warning {
  display: flex;
  flex-wrap: nowrap;
  background: var(--bg-dark);
  margin: 3rem 10rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid var(--primary);
  overflow: hidden;
  justify-self: center;
  max-width: 70rem;
  max-height: 8rem;
}

.warning-label {
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 900;
  padding: 1.5rem 2rem;
  flex-shrink: 0;
}

.fineprint {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: left;
  font-weight: 400;
  margin: 0.5rem 1rem;
}

@media (max-width: 980px) {
  .warning {
    margin: 2rem 1rem;
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
    max-height: 100%;
  }

  .warning-label {
    width: 100%;
    font-size: 3rem;
    padding: 1rem;
  }
}

.hero-about {
  position: relative;
  width: 100%;
  min-height: 320px;
  background: url("/assets/images/hero.png") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-about__overlay {
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
}
.hero-about__text {
  color: #fff;
  text-align: center;
  max-width: 600px;
}
.hero-about__text h1 {
  margin-top: 0;
  font-size: 2.5em;
  font-weight: bold;
}
.hero-about__text p {
  font-size: 1.25em;
  margin: 0;
}
@media (max-width: 700px) {
  .hero-about {
    min-height: 180px;
  }
  .hero-about__text h1 {
    font-size: 1.5em;
  }
  .hero-about__text p {
    font-size: 1em;
  }
}

.about {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 60px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 70rem;
  margin: 0 auto;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text-white);
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-text strong {
  color: var(--accent);
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 234, 112, 0.3);
}

.logos {
  display: flex;
  flex-wrap: wrap;
  justify-self: center;
  align-items: center;
  gap: 6rem;
  background-color: var(--bg-light);
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}

.logos img {
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.2);
  opacity: 0.9;
  &:hover {
    cursor: pointer;
  }
}

.site-footer {
  background-color: var(--card-bg);
  color: #ccc;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.85rem;
  line-height: 1.6;
  justify-items: center;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 1.5rem;
}

.footer-column {
  flex: 1 1 300px;
}

.footer-column h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--accent);
}

.disclaimer {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.site-footer p {
  margin: 0.5rem 0;
}

.site-footer .copyright {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid #2a2a4d;
  padding-top: 1rem;
}

.site-footer .copyright {
  color: #666;
  margin-top: 1rem;
  font-size: 0.7rem;
}

@media (max-width: 768px) {
  .logos {
    gap: 1rem;
    flex-direction: column;
  }
  .logos img {
    max-height: 30px;
  }
  .site-footer {
    font-size: 0.75rem;
  }
}

.contact-section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 1.1rem;
  line-height: 1.7;
  font-family: "Segoe UI", "Roboto", sans-serif;
  color: var(--text-white);
  border: 1px solid var(--accent);
}

.contact-section h1 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
  text-align: center;
}

.contact-section p {
  color: var(--text-muted);
  text-align: center;
}

.contact-section h2 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  border-left: 4px solid var(--accent);
  padding-left: 0.5rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.contact-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  color: var(--text-muted);
}

.contact-list li::before {
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1.2rem;
}

.contact-list li:nth-child(1)::before {
  content: "📞";
}
.contact-list li:nth-child(2)::before {
  content: "✉️";
}
.contact-list li:nth-child(3)::before {
  content: "📍";
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-form label {
  font-weight: 600;
  color: var(--text-white);
}

.contact-form input,
.contact-form textarea {
  background-color: #1f1c11;
  color: var(--text-white);
  border: 1px solid var(--text-muted);
  padding: 0.75rem;
  border-radius: 6px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
}

.contact-form button {
  background-color: var(--accent);
  color: var(--bg-dark);
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #caa632;
}

.success-message {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #3a321b;
  color: var(--accent);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
}

.contact-section a {
  color: #b2a429;
  text-decoration: none;
}
.contact-section a:hover {
  text-decoration: underline;
}

.content-section {
  max-width: 70rem;
  margin: 2rem auto;
  padding: 2rem;
  background-color: var(--card-bg);
  border-radius: 12px;
}

.content-section h1 {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.content-section h2 {
  color: var(--text-muted);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.content-section p {
  color: var(--text-white);
  line-height: 1.6;
}
.content-section li {
  color: var(--text-white);
  line-height: 1.6;
}
