:root {
  /* Background Colors */
  --bg-body: #ffffff;
  --bg-tr: #f9f9f9;
  --bg-navbar: #ffffff;
  --bg-button: #3ac556;
  --bg-telegram: #229ed9;
  --bg-telegram-hover: #01b7ff;
  --bg-content: #ffffff;
  --disclaimer-bg-color: #fff4e5;

  /* Text Colors */
  --text-navbar: #000000;
  --text-body: #000000;
  --text-button: #229ed9;
  --text-heading: #000000;
  --text-white: #ffffff;
  --text-desclaimer: #c11c1c;
  --text-link: #007bff;

  /* Utility Colors */
  --border-color: #3ac556;
  --black-border-color: #000000;
  --text-bar: #000000;
  --desclaimer-color: #c11c1c;
  --warning-border: #ff6600;
  --box-shadow-color: rgba(0, 0, 0, 0.05);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
}

.heading {
  border: 5px solid var(--border-color);
  border-radius: 10px;
  padding: 10px 10px;
}

h1,
h2 {
  color: var(--text-heading);
}

.nav_container {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--bg-navbar);
  color: var(--text-navbar);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 4px var(--box-shadow-color);
}

.nav_logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav_menu {
  display: flex;
  gap: 1.5rem;
}

.nav_menu a {
  color: var(--text-navbar);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav_toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav_toggle span {
  height: 3px;
  width: 25px;
  background-color: var(--text-bar);
  margin: 4px 0;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .nav_menu {
    display: none;
    position: absolute;
    top: 74px;
    right: 0;
    background-color: var(--bg-navbar);
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
  }

  .nav_menu.show {
    display: flex;
  }

  .nav_toggle {
    display: flex;
  }
}

.hero {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 40px 5%;
  text-align: center;
}

.hero img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.hero a {
  display: block;
  width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid var(--black-border-color);
  background-color: var(--bg-button);
  color: var(--text-white);
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.hero a:last-child {
  background-color: var(--bg-telegram);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero a:last-child span img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.hero a:hover {
  background-color: var(--bg-telegram-hover);
  color: var(--text-white);
}

@media (max-width: 768px) {
  .hero {
    margin: 20px 8%;
    gap: 1.5rem;
  }

  .hero a {
    font-size: 1.8rem;
    padding: 12px 25px;
  }

  .hero h1,
  .hero h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero a {
    font-size: 1.4rem;
    padding: 10px 20px;
    max-width: 100%;
  }

  .hero h1,
  .hero h2 {
    font-size: 1.25rem;
  }
}

.about_table {
  margin: 30px 10%;
  background-color: var(--bg-content);
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: 0 2px 6px var(--box-shadow-color);
  overflow-x: auto;
}

.about_table_table {
  width: 100%;
  border-collapse: collapse;
  min-width: 300px;
}

.about_table_table th,
.about_table_table td {
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  text-align: left;
  color: var(--text-body);
}

.about_table_table th {
  background-color: var(--bg-navbar);
  color: var(--text-heading);
  font-weight: bold;
}

.about_table_table tr:nth-child(even) {
  background-color: var(--bg-tr);
}

.about_table_desc {
  margin-top: 20px;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about_table {
    margin: 20px 5%;
    padding: 15px;
  }

  .about_table_table th,
  .about_table_table td {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .about_table_desc {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .about_table_table th,
  .about_table_table td {
    font-size: 0.9rem;
    padding: 8px 10px;
  }

  .about_table_desc {
    font-size: 0.9rem;
  }
}

.gallary_container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 20px 10%;
  background-color: var(--bg-content);
  color: var(--text-body);
}

.gallary_img {
  width: calc(33.333% - 16px);
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px var(--box-shadow-color);
}

.gallary_img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 10px var(--box-shadow-color);
}

@media (max-width: 768px) {
  .gallary_img {
    width: calc(50% - 16px);
  }
}

@media (max-width: 480px) {
  .gallary_container {
    padding: 10px 5%;
  }

  .gallary_img {
    width: 100%;
  }
}

.installationstep_container {
  padding: 20px 10%;
  background-color: var(--bg-content);
  color: var(--text-color);
}

.installationstep_title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-heading);
  text-align: center;
}

.installationstep_list {
  padding-left: 0;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.installationstep_list li {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 8px;
  color: var(--text-body);
  transition: background-color 0.3s;
}

.installationstep_list li:hover {
  background-color: var(--hover-bg);
}

@media (max-width: 600px) {
  .installationstep_container {
    padding: 15px 5%;
  }

  .installationstep_title {
    font-size: 1.5rem;
  }

  .installationstep_list li {
    font-size: 0.95rem;
  }
}

.desclaimer_container,
.notes_container {
  padding: 20px 10%;
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: var(--bg-content);

  line-height: 1.6;
}

.desclaimer_heading,
.notes_heading {
  font-size: 1.5rem;
  color: var(--desclaimer-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.desclaimer_text,
.notes_text {
  font-size: 1rem;
  color: var(--text-desclaimer);
}

@media (max-width: 600px) {
  .desclaimer_container,
  .notes_container {
    padding: 15px 5%;
  }

  .desclaimer_heading,
  .notes_heading {
    font-size: 1.3rem;
  }

  .desclaimer_text,
  .notes_text {
    font-size: 0.95rem;
  }
}

.footer_container {
  border-top: 1px solid var(--border-color);
  box-shadow: 0 2px 4px var(--box-shadow-color);
  background-color: var(--bg-navbar);
  color: var(--text-navbar);
  text-align: center;
  padding: 15px 10%;
  font-size: 1rem;
  font-weight: 500;
}

.footer_text {
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .footer_container {
    padding: 10px 5%;
    font-size: 0.9rem;
  }
}

/*========= ABOUT PAGE ==========*/
.about_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.about_,
.about_whoweare,
.about_whychoose,
.about_mission,
.about_responsible-gamming,
.about_join-today {
  margin-bottom: 40px;
  background-color: var(--bg-body);
  padding: 20px 25px;
  border-radius: 12px;
}

.about_ h1,
.about_whoweare h1,
.about_whychoose h1,
.about_mission h1,
.about_responsible-gamming h1,
.about_join-today h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-heading);
}

.about_ p,
.about_whoweare p,
.about_whychoose p,
.about_mission p,
.about_responsible-gamming p,
.about_join-today p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
}

.about_whychoose ul {
  padding-left: 20px;
  margin: 0;
}

.about_whychoose li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-body);
}

.about_whychoose span {
  font-weight: 600;
  color: var(--text-body);
}

@media (max-width: 1024px) {
  .about_ h1,
  .about_whoweare h1,
  .about_whychoose h1,
  .about_mission h1,
  .about_responsible-gamming h1,
  .about_join-today h1 {
    font-size: 1.8rem;
  }

  .about_ p,
  .about_whoweare p,
  .about_whychoose li,
  .about_mission p,
  .about_responsible-gamming p,
  .about_join-today p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about_container {
    padding: 30px 15px;
  }

  .about_ h1,
  .about_whoweare h1,
  .about_whychoose h1,
  .about_mission h1,
  .about_responsible-gamming h1,
  .about_join-today h1 {
    font-size: 1.6rem;
  }

  .about_ p,
  .about_whoweare p,
  .about_whychoose li,
  .about_mission p,
  .about_responsible-gamming p,
  .about_join-today p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .about_container {
    padding: 20px 10px;
  }

  .about_ h1,
  .about_whoweare h1,
  .about_whychoose h1,
  .about_mission h1,
  .about_responsible-gamming h1,
  .about_join-today h1 {
    font-size: 1.4rem;
  }

  .about_ p,
  .about_whoweare p,
  .about_whychoose li,
  .about_mission p,
  .about_responsible-gamming p,
  .about_join-today p {
    font-size: 0.9rem;
  }
}

/*========= PRIVACY POLICY PAGE ==========*/
.privacy_container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.privacy_section {
  background-color: var(--bg-body);
  border-radius: 12px;
  padding: 1.5rem;
}

.privacy_section h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-heading);
}

.privacy_section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.privacy_section a {
  color: var(--text-link);
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .privacy_section h1 {
    font-size: 2rem;
  }

  .privacy_section p {
    font-size: 1.1rem;
  }
}

@media screen and (min-width: 1024px) {
  .privacy_container {
    padding: 2rem;
  }

  .privacy_section {
    padding: 2rem 2.5rem;
  }
}

.desclaimer_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: var(--bg-body);
  color: var(--text-body);
}

.desclaimer_section {
  background-color: var(--bg-body);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  line-height: 1.8;
}

.desclaimer_section h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-heading);
}

.desclaimer_section p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--text-body);
}

.desclaimer_section p span {
  font-weight: bold;
}

@media (max-width: 992px) {
  .desclaimer_section h1 {
    font-size: 1.8rem;
  }

  .desclaimer_section p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .desclaimer_container {
    padding: 15px;
  }

  .desclaimer_section {
    padding: 20px;
  }

  .desclaimer_section h1 {
    font-size: 1.5rem;
  }

  .desclaimer_section p {
    font-size: 0.9rem;
  }
}
