:root {
  --main-bg: #fffbea;
  --accent: #e64a19;
  --text-color: #333;
  --button-bg: #ffa726;
  --button-hover: #fb8c00;
  --error-color: #d32f2f;
  --success-bg: #e8f5e9;
  --modal-bg: rgba(0, 0, 0, 0.75);
  --input-bg: #fff;
  --input-border: #ccc;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  --radius: 10px;
  --max-width: 1100px;
  --section-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  --radius: 12px;
}

body {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background-color: var(--main-bg);
  color: var(--text-color);
}

.dre_header-spark-container {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 16px 32px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.dre_header-spark-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.dre_header-spark-logo img {
  width: 120px;
}

.dre_header-spark-nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.dre_header-spark-nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
}

.dre_header-spark-signup-btn {
  background: var(--button-bg);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-family: 'Chilanka', cursive;
  font-size: 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dre_header-spark-signup-btn:hover {
  background: var(--button-hover);
}

.dre_modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--modal-bg);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.dre_modal-overlay.active {
  display: flex;
}

.dre_modal {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow);
  position: relative;
}

.dre_modal-close,
.dre_success-close {
  position: absolute;
  top: 4px;
  right: 8px;
  font-size: 24px;
  font-weight: bold;
  border: none;
  background: none;
  color: var(--text-color);
  cursor: pointer;
  transition: transform 0.2s ease;
  z-index: 10;
}

.dre_modal-close:hover,
.dre_success-close:hover {
  transform: scale(1.2);
  color: var(--accent);
}

.dre_tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.dre_tab-btn {
  flex: 1;
  padding: 12px;
  border: 2px solid var(--input-border);
  background: transparent;
  font-family: 'Chilanka', cursive;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 6px;
}

.dre_tab-btn.active {
  background: var(--button-bg);
  color: #fff;
  border-color: var(--button-bg);
}

.dre_auth-form {
  display: none;
  flex-direction: column;
  gap: 14px;
}

.dre_auth-form.active {
  display: flex;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  padding: 12px;
  border: 1px solid var(--input-border);
  border-radius: 6px;
  background: var(--input-bg);
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

label {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

label input[type="checkbox"] {
  accent-color: var(--accent);
}

.dre_recovery-title {
  text-align: center;
  font-family: 'Chilanka', cursive;
  color: var(--text-color);
  font-weight: 500;
}

#dre_recoveryForm input[type="text"],
#dre_recoveryForm input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#dre_recoveryForm label {
  width: 95%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
}

#dre_recoveryForm label {
  display: flex;
  align-items: center;
  gap: 8px;
}

#dre_recoveryForm .dre_form-btn {
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#dre_recoveryForm .dre_form-btn[disabled] {
  background-color: #ccc;
  cursor: not-allowed;
}

.dre_error {
  color: red;
  margin-top: 10px;
}

.dre_form-btn {
  padding: 12px;
  background: var(--button-bg);
  color: #fff;
  font-family: 'Chilanka', cursive;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dre_form-btn:hover:enabled {
  background: var(--button-hover);
}

.dre_form-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.dre_error {
  color: var(--error-color);
  font-size: 0.85rem;
  padding-left: 4px;
}

#dre_openRecoveryModal {
  font-size: 0.85rem;
  text-align: right;
  color: var(--accent);
  text-decoration: underline;
  display: inline-block;
  margin-top: -8px;
}

.dre_modal-success-inner {
  background: var(--success-bg);
  padding: 36px 24px;
  border-radius: var(--radius);
  border: 2px solid #81c784;
  text-align: center;
}

.dre_success-text {
  color: #2e7d32;
  font-size: 1.1rem;
  font-family: 'Cormorant Garamond', serif;
}

@media (max-width: 1024px) {
  .dre_header-spark-nav ul {
    gap: 16px;
  }

  .dre_header-spark-signup-btn {
    padding: 8px 16px;
  }

  .dre_modal {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .dre_header-spark-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .dre_modal {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .dre_tab-btn {
    font-size: 0.9rem;
    padding: 10px;
  }

  input[type="text"],
  input[type="email"],
  input[type="password"] {
    font-size: 0.95rem;
  }

  .dre_modal-success-inner {
    padding: 28px 18px;
  }
}

@media (max-width: 320px) {
  .dre_header-spark-nav ul {
    flex-direction: column;
    gap: 8px;
  }

  .dre_tab-btn {
    font-size: 0.8rem;
    padding: 8px;
  }

  .dre_form-btn {
    font-size: 0.9rem;
    padding: 10px;
  }
}

.dre_lotto-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 50px 20px;
}

.dre_lotto-background {
  background-image: url('../dre-images/dre-bg-image-1.jpg');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dre_lotto-header {
  text-align: center;
  background: #fff;
  padding: 13px 23px;
  border-radius: var(--radius);
}

.dre_lotto-header-title {
  font-family: 'Chilanka', cursive;
  font-size: 36px;
  color: var(--highlight);
  margin-bottom: 20px;
}

.dre_lotto-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-color);
}

.dre_lotto-action-buttons {
  margin-top: 20px;
}

.dre_lotto-button {
  display: inline-block;
  background-color: var(--button-bg);
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  font-family: 'Chilanka', cursive;
  border-radius: var(--radius);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.dre_lotto-button:hover {
  background-color: var(--button-hover);
}

.dre_lotto-visual {
  display: flex;
  justify-content: center;
}

.dre_lotto-visual img {
  max-width: 100%;
  border-radius: var(--radius);
}

@media screen and (max-width: 1024px) {
  .dre_lotto-section {
    padding: 40px 15px;
  }

  .dre_lotto-header-title {
    font-size: 32px;
  }

  .dre_lotto-description {
    font-size: 16px;
  }

  .dre_lotto-button {
    padding: 10px 25px;
  }
}

@media screen and (max-width: 768px) {
  .dre_lotto-section {
    padding: 30px 10px;
  }

  .dre_lotto-header-title {
    font-size: 28px;
  }

  .dre_lotto-description {
    font-size: 14px;
  }

  .dre_lotto-button {
    padding: 8px 20px;
  }
}

@media screen and (max-width: 480px) {
  .dre_lotto-section {
    padding: 20px 5px;
  }

  .dre_lotto-header-title {
    font-size: 24px;
  }

  .dre_lotto-description {
    font-size: 12px;
  }

  .dre_lotto-button {
    padding: 8px 18px;
  }
}

@media screen and (max-width: 320px) {
  .dre_lotto-section {
    padding: 15px 5px;
  }

  .dre_lotto-header-title {
    font-size: 22px;
  }

  .dre_lotto-description {
    font-size: 11px;
  }

  .dre_lotto-button {
    padding: 6px 15px;
  }
}

.dre_lotto-highlight-journey {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 50px 20px;
}

.dre_lotto-highlight-container {
  background-color: #ffffff;
  padding: 60px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dre_lotto-highlight-header {
  text-align: center;
}

.dre_lotto-highlight-title {
  font-family: 'Chilanka', cursive;
  font-size: 38px;
  color: var(--highlight-color);
  margin-bottom: 20px;
}

.dre_lotto-highlight-subtext {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-color);
}

.dre_lotto-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.dre_lotto-highlight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease-in-out;
}

.dre_lotto-highlight-card:hover {
  transform: translateY(-10px);
}

.dre_lotto-highlight-icon {
  font-size: 40px;
  color: var(--highlight-color);
  margin-bottom: 15px;
}

.dre_lotto-highlight-heading {
  font-size: 22px;
  font-weight: bold;
  color: var(--highlight-color);
  margin-bottom: 10px;
}

.dre_lotto-highlight-desc {
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
  color: var(--text-color);
}

.dre_lotto-highlight-card a {
  text-decoration: none;
  color: var(--highlight-color);
  font-weight: bold;
}

.dre_lotto-highlight-card a:hover {
  color: #f76c2c;
}

@media screen and (max-width: 1024px) {
  .dre_lotto-highlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dre_lotto-highlight-title {
    font-size: 32px;
  }

  .dre_lotto-highlight-heading {
    font-size: 20px;
  }

  .dre_lotto-highlight-desc {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .dre_lotto-highlight-grid {
    grid-template-columns: 1fr;
  }

  .dre_lotto-highlight-title {
    font-size: 28px;
  }

  .dre_lotto-highlight-heading {
    font-size: 18px;
  }

  .dre_lotto-highlight-desc {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .dre_lotto-highlight-title {
    font-size: 24px;
  }

  .dre_lotto-highlight-heading {
    font-size: 16px;
  }

  .dre_lotto-highlight-desc {
    font-size: 11px;
  }
}

@media screen and (max-width: 320px) {
  .dre_lotto-highlight-title {
    font-size: 20px;
  }

  .dre_lotto-highlight-heading {
    font-size: 14px;
  }

  .dre_lotto-highlight-desc {
    font-size: 10px;
  }
}

.dre_process-beginning {
  max-width: 1280px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.dre_process-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  padding: 40px;
}

.dre_process-imageblock img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.dre_process-content {
  display: flex;
  flex-direction: column;
}

.dre_process-title {
  font-family: 'Chilanka', cursive;
  font-size: 2rem;
  color: var(--accent);
}

.dre_process-subtitle {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 20px;
}

.dre_process-steps {
  list-style-type: none;
  padding: 0;
}

.dre_process-step {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.dre_process-step i {
  font-size: 2rem;
  color: var(--accent);
  margin-right: 15px;
}

.dre_process-step div {
  max-width: 500px;
}

.dre_process-step h3 {
  font-family: 'Chilanka', cursive;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.dre_process-step p {
  font-size: 1rem;
  color: var(--text-color);
}

.dre_process-step a {
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
}

.dre_process-step a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .dre_process-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dre_process-title {
    font-size: 1.8rem;
  }

  .dre_process-subtitle {
    font-size: 1rem;
  }

  .dre_process-step h3 {
    font-size: 1.3rem;
  }

  .dre_process-step p {
    font-size: 0.9rem;
  }
}

.dre_highlights-dreamlotto {
  padding: 40px 0;
}

.dre_highlights-heading h2 {
  font-family: 'Chilanka', cursive;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.dre_highlights-heading p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}

.dre_highlights-container {
  max-width: 1280px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.dre_highlights-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
  margin-top: 20px;
}

.dre_highlights-card {
  background-color: var(--card-bg);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 320px;
  margin: 0 auto; 
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.dre_highlights-card i {
  font-size: 3rem;
  color: #333;
  margin-bottom: 15px;
}

.dre_highlights-card h3 {
  font-family: 'Chilanka', cursive;
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #333;
}

.dre_highlights-card p {
  font-size: 1rem;
  color: #555;
}

.dre_highlights-card a {
  color: #007acc;
  text-decoration: none;
}

.dre_highlights-card a:hover {
  text-decoration: underline;
}

.dre_highlights-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  background-color: var(--accent);
}

.dre_highlights-card:hover i {
  color: #fff;
}

.dre_highlights-card:hover h3 {
  color: #fff;
}

.dre_highlights-card:hover p {
  color: #fff;
}

@media (max-width: 1024px) {
  .dre_highlights-dreamlotto {
    padding: 30px 0;
  }

  .dre_highlights-heading h2 {
    font-size: 2rem;
  }

  .dre_highlights-heading p {
    font-size: 1rem;
  }

  .dre_highlights-card h3 {
    font-size: 1.4rem;
  }

  .dre_highlights-card p {
    font-size: 0.95rem;
  }

  .dre_highlights-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dre_highlights-dreamlotto {
    padding: 20px 0;
  }

  .dre_highlights-heading h2 {
    font-size: 1.8rem;
  }

  .dre_highlights-heading p {
    font-size: 0.95rem;
  }

  .dre_highlights-card h3 {
    font-size: 1.2rem;
  }

  .dre_highlights-card p {
    font-size: 0.9rem;
  }

  .dre_highlights-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .dre_highlights-dreamlotto {
    padding: 15px 0;
  }

  .dre_highlights-heading h2 {
    font-size: 1.6rem;
  }

  .dre_highlights-heading p {
    font-size: 0.85rem;
  }

  .dre_highlights-card h3 {
    font-size: 1.1rem;
  }

  .dre_highlights-card p {
    font-size: 0.85rem;
  }

  .dre_highlights-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 320px) {
  .dre_highlights-dreamlotto {
    padding: 10px 0;
  }

  .dre_highlights-heading h2 {
    font-size: 1.4rem;
  }

  .dre_highlights-heading p {
    font-size: 0.8rem;
  }

  .dre_highlights-card h3 {
    font-size: 1rem;
  }

  .dre_highlights-card p {
    font-size: 0.8rem;
  }

  .dre_highlights-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.dre_intro-content {  
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 60px 15px;
  align-items: center;
  justify-items: center;
}

.dre_intro-wrapper {  
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.dre_intro-text {
  max-width: 630px;
  text-align: left;
}

.dre_intro-title {
  font-family: 'Chilanka', cursive;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.dre_intro-title i {
  margin-right: 10px;
  font-size: 2.8rem;
}

.dre_intro-text p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.dre_intro-image {
  max-width: 630px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.dre_intro-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dre_intro-content:hover .dre_intro-title {
  animation: bounceIn 1s ease;
}

@keyframes bounceIn {
  0% { transform: translateY(-100px); opacity: 0; }
  50% { transform: translateY(25px); opacity: 0.5; }
  100% { transform: translateY(0); opacity: 1; }
}

@media (max-width: 1024px) {
  .dre_intro-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dre_intro-title {
    font-size: 2.2rem;
  }

  .dre_intro-text p {
    font-size: 1rem;
  }

  .dre_intro-img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .dre_intro-title {
    font-size: 1.8rem;
  }

  .dre_intro-text p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .dre_intro-title {
    font-size: 1.6rem;
  }

  .dre_intro-content {
    width: 90%;
  }

  .dre_intro-text {
    width: 80%;
  }

  .dre_intro-text p {
    font-size: 0.9rem;
  }

  .dre_intro-wrapper {
    width: 80%;
    flex-direction: column;
  }

  .dre_intro-img {
    width: 80%;
  }
}

.dre_footer-root {
  background-color: #f8f9fa;
  padding: 40px 20px;
  text-align: center;
}

.dre_footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dre_footer-title {
  font-family: 'Chilanka', cursive;
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.dre_footer-guidelines p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.dre_footer-guidelines a {
  color: var(--link-color);
  text-decoration: none;
}

.dre_footer-guidelines a:hover {
  color: var(--link-hover);
}

.dre_footer-links a {
  display: inline-block;
  margin: 10px;
  font-size: 14px;
  color: var(--text-color);
  text-decoration: none;
}

.dre_footer-links a:hover {
  color: var(--accent-color);
}

.dre_footer-badges {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dre_footer-badges a {
  display: inline-block;
  margin: 10px;
}

.dre_footer-badges img {
  width: 130px;
  height: auto;
}

.dre_footer-age img {
  width: 88px;
  height: 88px;
}

.dre_footer-credits {
  font-size: 14px;
  color: var(--text-color);
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .dre_footer-title {
    font-size: 22px;
  }

  .dre_footer-guidelines p {
    font-size: 13px;
  }

  .dre_footer-links a {
    font-size: 13px;
    margin: 8px;
  }

  .dre_footer-badges img {
    width: 120px;
  }

  .dre_footer-age img {
    width: 80px;
  }

  .dre_footer-credits {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .dre_footer-guidelines p {
    font-size: 12px;
  }

  .dre_footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dre_footer-links a {
    margin: 8px 0;
    font-size: 13px;
  }

  .dre_footer-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .dre_footer-badges a {
    margin: 8px;
  }

  .dre_footer-badges img {
    width: 110px;
    margin: 8px;
  }

  .dre_footer-age img {
    width: 70px;
  }

  .dre_footer-credits {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .dre_footer-title {
    font-size: 20px;
  }

  .dre_footer-guidelines p {
    font-size: 11px;
  }

  .dre_footer-links a {
    font-size: 12px;
    margin: 6px 0;
  }

  .dre_footer-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .dre_footer-badges a {
    margin: 6px;
  }

  .dre_footer-badges img {
    width: 100px;
  }

  .dre_footer-age img {
    width: 60px;
  }

  .dre_footer-credits {
    font-size: 11px;
  }
}

@media (max-width: 320px) {
  .dre_footer-title {
    font-size: 18px;
  }

  .dre_footer-guidelines p {
    font-size: 10px;
  }

  .dre_footer-links a {
    font-size: 11px;
    margin: 4px 0;
  }

  .dre_footer-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .dre_footer-badges a {
    margin: 4px;
  }

  .dre_footer-badges img {
    width: 90px;
  }

  .dre_footer-age img {
    width: 50px;
  }

  .dre_footer-credits {
    font-size: 10px;
  }
}

.dre__age-check-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.99);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.dre__age-check-content {
  background-color: #1c1c1c;
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 30px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  animation: scaleFadeIn 0.4s ease-out;
}

@keyframes scaleFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.dre__age-check-title {
  font-family: 'Chilanka', cursive;
  font-size: 28px;
  margin-bottom: 20px;
  color: #ffa726;
}

.dre__age-check-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.5;
  color: #eee;
}

.dre__age-check-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.dre__age-check-yes,
.dre__age-check-no {
  font-family: 'Chilanka', cursive;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.dre__age-check-yes {
  background-color: var(--button-bg);
  color: #fff;
}

.dre__age-check-yes:hover {
  background-color: var(--button-hover);
}

.dre__age-check-no {
  background-color: var(--error-color);
  color: #fff;
}

.dre__age-check-no:hover {
  background-color: #b71c1c;
}

.dre__cookie-consent-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 20px;
  width: 90%;
  max-width: 700px;
  z-index: 9999;
  display: none;
  animation: fadeInCookies 0.5s ease-in-out forwards;
}

@keyframes fadeInCookies {
  from {
      opacity: 0;
      transform: translateX(-50%) translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
  }
}

.dre__cookie-modal-content {
  text-align: center;
}

.dre__cookie-text {
  font-family: 'Cormorant Garamond', serif;
  color: #333;
  font-size: 16px;
  margin-bottom: 15px;
}

.dre__cookie-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.dre__cookie-accept-button {
  font-family: 'Chilanka', cursive;
  background-color: var(--button-bg);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dre__cookie-accept-button:hover {
  background-color: var(--button-hover);
}

.dre_page-skyinfo-banner {
  background-color: #f9f3e8;
  padding: 60px 20px;
  display: grid;
  place-items: center;
  text-align: center;
}

.dre_page-skyinfo-bannerbox {
  max-width: 900px;
}

.dre_page-skyinfo-title {
  font-family: 'Chilanka', cursive;
  font-size: 36px;
  color: #ff5722;
  margin-bottom: 20px;
}

.dre_page-skyinfo-image {
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dre_page-skyinfo-content {
  padding: 60px 2px;
  background: url('../dre-images/dre-bg-image-2.jpg') no-repeat center/cover;
}

.dre_page-skyinfo-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.dre_page-skyinfo-column {
  background-color: #ffffffcc;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dre_page-skyinfo-subtitle {
  font-family: 'Chilanka', cursive;
  font-size: 24px;
  margin-bottom: 15px;
  color: #ff9800;
}

.dre_page-skyinfo-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.dre_page-skyinfo-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.dre_page-skyinfo-list li {
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dre_page-skyinfo-btn {
  font-family: 'Chilanka', cursive;
  background-color: var(--button-bg);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dre_page-skyinfo-btn:hover {
  background-color: var(--button-hover);
}

@media (max-width: 1024px) {
  .dre_page-skyinfo-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .dre_page-skyinfo-text, .dre_page-skyinfo-list li {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .dre_page-skyinfo-title {
    font-size: 24px;
  }
  .dre_page-skyinfo-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 320px) {
  .dre_page-skyinfo-text {
    font-size: 16px;
  }
}

.dre_contact-core-nimbus {
  padding: 60px 20px;
  display: grid;
  place-items: center;
}

.dre_contact-core-wrapper {
  max-width: 900px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dre_contact-core-title {
  font-family: 'Chilanka', cursive;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 15px;
  text-align: center;
}

.dre_contact-core-text {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 30px;
}

.dre_contact-form-shell {
  display: flex;
  flex-direction: column;
}

.dre_contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.dre_contact-form-grid textarea {
  grid-column: span 2;
  resize: none;
  height: 100px;
}

.dre_contact-form-grid input,
.dre_contact-form-grid textarea {
  padding: 10px;
  border: 1px solid var(--input-border);
  border-radius: var(--radius);
  background: var(--input-bg);
  font-size: 1rem;
}

.dre_contact-checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.dre_contact-checkbox-wrap a {
  color: var(--accent);
  text-decoration: underline;
}

#dre_form-submit {
  background-color: var(--button-bg);
  border: none;
  padding: 14px 20px;
  color: #fff;
  border-radius: var(--radius);
  font-family: 'Chilanka', cursive;
  font-size: 1.2rem;
  cursor: not-allowed;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  opacity: 0.6;
}

#dre_form-submit.active {
  cursor: pointer;
  background-color: var(--button-hover);
  opacity: 1;
}

.dre_contact-error-msg {
  color: var(--error-color);
  margin-top: 10px;
  text-align: center;
}

.dre_contact-modal-toast {
  display: none;
  position: fixed;
  inset: 0;
  background-color: var(--modal-bg);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.dre_contact-modal-content {
  background-color: #fff;
  padding: 30px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dre_contact-modal-content h2 {
  font-family: 'Chilanka', cursive;
  color: var(--accent);
}

.dre_contact-modal-content i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.dre_contact-modal-content button {
  margin-top: 20px;
  padding: 10px 20px;
  font-family: 'Chilanka', cursive;
  background-color: var(--button-bg);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
}

.dreSuccessModal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.dreSuccessModal.active {
  display: block;
}

.dre_contact-modal-toast.active {
  display: flex !important;
}

@media (max-width: 1024px) {
  .dre_contact-core-wrapper {
    padding: 30px 5px;
  }

  #dre_form-submit {
    font-size: 1.1rem;
    padding: 12px 18px;
  }
}

@media (max-width: 768px) {
  .dre_contact-form-grid {
    grid-template-columns: 1fr;
  }

  .dre_contact-core-title {
    font-size: 2rem;
  }

  #dre_form-submit {
    width: 100%;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .dre_contact-core-wrapper {
    padding: 20px 3px;
  }

  #dre_form-submit {
    padding: 10px;
    font-size: 1rem;
  }
}

@media (max-width: 320px) {
  .dre_contact-core-nimbus {
    padding: 60px 5px;
  }
  .dre_contact-core-title {
    font-size: 1.7rem;
  }

  .dre_page-skyinfo-text {
    font-size: 16px;
  }

  .dre_page-skyinfo-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dre_page-skyinfo-column {
    padding: 20px 4px;
    box-shadow: none;
  }

  .dre_page-skyinfo-title {
    font-size: 24px;
  }

  .dre_page-skyinfo-subtitle {
    font-size: 20px;
  }

  .dre_contact-form-grid input {
    grid-column: span 2;
  }

  #dre_form-submit {
    padding: 8px;
    font-size: 0.95rem;
  }

}

.dre_page-cookies-sweetpolicy {
  width: 100%;
  padding: 40px 0;
  display: grid;
  justify-content: center;
  background: linear-gradient(145deg, #fff2db, #ffefd7);
}

.dre_policy-wrapper {
  max-width: var(--max-width);
  width: 100%;
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--section-shadow);
}

.dre_policy-header {
  text-align: center;
  margin-bottom: 40px;
}

.dre_policy-title {
  font-family: 'Chilanka', cursive;
  font-size: 2.8rem;
  color: var(--accent);
  margin: 0 0 15px;
}

.dre_policy-subtext {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.dre_policy-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.dre_policy-point {
  max-width: 625px;
  background-color: #fff9f0;
  padding: 25px 20px;
  border-left: 6px solid var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dre_policy-point:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dre_policy-point i {
  font-size: 2rem;
  color: var(--icon-color);
  flex-shrink: 0;
}

.dre_policy-point h3 {
  margin: 0 0 10px;
  font-family: 'Chilanka', cursive;
  font-size: 1.4rem;
  color: var(--accent);
}

.dre_policy-point p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.dre_policy-point a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: bold;
}

.dre_policy-backbtn {
  text-align: center;
  margin-top: 20px;
}

.dre_policy-homebtn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Chilanka', cursive;
  background-color: var(--button-bg);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.dre_policy-homebtn:hover {
  background-color: var(--button-hover);
}

@media (max-width: 1024px) {
  .dre_policy-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dre_policy-title {
    font-size: 2.2rem;
  }

  .dre_policy-subtext {
    font-size: 1rem;
  }

  .dre_policy-wrapper {
    width: 89%;
  }

  .dre_policy-point {
    flex-direction: row;
  }

  .dre_policy-point i {
    font-size: 1.8rem;
  }

  .dre_policy-point h3 {
    font-size: 1.3rem;
  }

  .dre_policy-point p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .dre_policy-wrapper {
    padding: 25px 15px;
  }

  .dre_policy-title {
    font-size: 1.9rem;
  }

  .dre_policy-point {
    padding: 20px 15px;
  }

  .dre_policy-point i {
    font-size: 1.6rem;
  }
}

@media (max-width: 320px) {
  .dre_policy-title {
    font-size: 1.6rem;
  }

  .dre_policy-subtext {
    font-size: 0.9rem;
  }

  .dre_policy-point h3 {
    font-size: 1.1rem;
  }

  .dre_policy-point p {
    font-size: 0.9rem;
  }

  .dre_policy-homebtn {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

.dre_page-privacy-clarityrules {
  padding: 40px 6px;
  background: linear-gradient(135deg, #fff4d9, #fffbea);
  display: grid;
  justify-content: center;
}

.dre_privacy-frame {
  max-width: var(--max-width);
  width: 100%;
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 6px;
  box-shadow: var(--section-shadow);
}

.dre_privacy-header {
  text-align: center;
  margin-bottom: 40px;
}

.dre_privacy-title {
  font-family: 'Chilanka', cursive;
  font-size: 2.6rem;
  color: var(--accent);
  margin: 0 0 15px;
}

.dre_privacy-description {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.dre_privacy-clauses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.dre_privacy-clause {
  background-color: #fffaef;
  padding: 25px 20px;
  border-left: 6px solid var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.dre_privacy-clause:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dre_privacy-clause i {
  font-size: 2rem;
  color: var(--icon-color);
  flex-shrink: 0;
}

.dre_privacy-clause h3 {
  font-family: 'Chilanka', cursive;
  font-size: 1.4rem;
  margin: 0 0 10px;
  color: var(--accent);
}

.dre_privacy-clause p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.dre_privacy-clause a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: bold;
}

.dre_privacy-backbtn {
  text-align: center;
  margin-top: 20px;
}

.dre_privacy-homebtn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Chilanka', cursive;
  background-color: var(--button-bg);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.dre_privacy-homebtn:hover {
  background-color: var(--button-hover);
}

@media (max-width: 1024px) {
  .dre_privacy-clauses {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dre_privacy-title {
    font-size: 2.2rem;
  }

  .dre_privacy-description {
    font-size: 1rem;
  }

  .dre_privacy-clause {
    flex-direction: row;
  }

  .dre_privacy-clause h3 {
    font-size: 1.3rem;
  }

  .dre_privacy-clause p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .dre_privacy-frame {
    padding: 25px 2px;
  }

  .dre_privacy-title {
    font-size: 1.9rem;
  }

  .dre_privacy-clause {
    padding: 20px 6px;
  }

  .dre_privacy-clause i {
    font-size: 1.6rem;
  }
}

@media (max-width: 320px) {
  .dre_privacy-title {
    font-size: 1.6rem;
  }

  .dre_privacy-description {
    font-size: 0.9rem;
  }

  .dre_privacy-clause h3 {
    font-size: 1.1rem;
  }

  .dre_privacy-clause p {
    font-size: 0.9rem;
  }

  .dre_privacy-homebtn {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

.dre_page-gaming-responsibility {
  padding: 40px 5px;
  background: linear-gradient(135deg, #fffdf4, #fffbea);
  display: grid;
  justify-content: center;
}

.dre_responsible-wrapper {
  max-width: var(--max-width);
  width: 100%;
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 5px;
  box-shadow: var(--section-shadow);
}

.dre_responsible-header {
  text-align: center;
  margin-bottom: 40px;
}

.dre_responsible-title {
  font-family: 'Chilanka', cursive;
  font-size: 2.6rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.dre_responsible-intro {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.dre_responsible-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.dre_responsible-point {
  background-color: #fffbe0;
  padding: 25px 20px;
  border-left: 6px solid var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.dre_responsible-point:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dre_responsible-point i {
  font-size: 2rem;
  color: var(--icon-color);
  flex-shrink: 0;
}

.dre_responsible-point h3 {
  font-family: 'Chilanka', cursive;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--accent);
}

.dre_responsible-point p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.dre_responsible-point a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: bold;
}

.dre_responsible-backbtn {
  text-align: center;
  margin-top: 30px;
}

.dre_responsible-homebtn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Chilanka', cursive;
  background-color: var(--button-bg);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.dre_responsible-homebtn:hover {
  background-color: var(--button-hover);
}

@media (max-width: 1024px) {
  .dre_responsible-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dre_responsible-title {
    font-size: 2.2rem;
  }

  .dre_responsible-intro {
    font-size: 1rem;
  }

  .dre_responsible-point h3 {
    font-size: 1.3rem;
  }

  .dre_responsible-point p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .dre_responsible-wrapper {
    padding: 25px 15px;
  }

  .dre_responsible-title {
    font-size: 1.9rem;
  }

  .dre_responsible-point {
    padding: 20px 15px;
  }

  .dre_responsible-point i {
    font-size: 1.6rem;
  }
}

@media (max-width: 320px) {
  .dre_responsible-title {
    font-size: 1.6rem;
  }

  .dre_responsible-intro {
    font-size: 0.9rem;
  }

  .dre_responsible-point h3 {
    font-size: 1.1rem;
  }

  .dre_responsible-point p {
    font-size: 0.9rem;
  }

  .dre_responsible-homebtn {
    padding: 10px 20px;
    font-size: 1rem;
  }
}