/* style/lottery.css */

/* Custom Colors */
:root {
  --page-lottery-primary-color: #11A84E;
  --page-lottery-secondary-color: #22C768;
  --page-lottery-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-lottery-card-bg: #11271B;
  --page-lottery-background: #08160F;
  --page-lottery-text-main: #F2FFF6;
  --page-lottery-text-secondary: #A7D9B8;
  --page-lottery-border-color: #2E7A4E;
  --page-lottery-glow-color: #57E38D;
  --page-lottery-gold-color: #F2C14E;
  --page-lottery-divider-color: #1E3A2A;
  --page-lottery-deep-green: #0A4B2C;
}

.page-lottery {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-lottery-text-main); /* Default text color for dark background */
  background-color: var(--page-lottery-background);
}

.page-lottery__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-lottery__section {
  padding: 80px 0;
}

.page-lottery__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--page-lottery-text-main);
  line-height: 1.2;
}

.page-lottery__description {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  color: var(--page-lottery-text-secondary);
}

/* Hero Section */
.page-lottery__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body handles header offset, this is decorative */
  background-color: var(--page-lottery-background);
  overflow: hidden;
}

.page-lottery__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.page-lottery__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 300px; /* Ensure minimum size */
}

.page-lottery__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  color: var(--page-lottery-text-main);
}

.page-lottery__main-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--page-lottery-gold-color);
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-lottery__hero-content .page-lottery__description {
  font-size: 20px;
  margin-bottom: 40px;
  color: var(--page-lottery-text-secondary);
}

.page-lottery__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}