@import "styles/normalize.css";

@import "styles/main.css";

/* Base Styles */

@font-face {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  src: url("assets/fonts/Lato-Regular.ttf") format(ttf);
}

@font-face {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  src: url("assets/fonts/Lato-Bold.ttf") format(ttf);
}

@font-face {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  src: url("assets/fonts/WorkSans-Regular.ttf") format(ttf);
}

@font-face {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  src: url("assets/fonts/WorkSans-Bold.ttf") format(ttf);
}

* {
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  transition: all 0.3s ease;
}

html {
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  scroll-behavior: smooth;
}

@media (min-width: 2401px) {
  html {
    font-size: 13px;
  }
}

@media (min-width: 2201px) and (max-width: 2400px) {
  html {
    font-size: 12px;
  }
}

@media (min-width: 1901px) and (max-width: 2200px) {
  html {
    font-size: 12px;
  }
}

@media (min-width: 1500px) and (max-width: 1900px) {
  html {
    font-size: 12px;
  }
}

@media (max-width: 1500px) and (min-width: 1300px) {
  html {
    font-size: 12px;
  }
}

@media (max-width: 1299px) {
  html {
    font-size: 11px;
  }
}

*::-webkit-scrollbar,
html *::-webkit-scrollbar {
  height: 1rem;
  width: 1rem;
}

*::-webkit-scrollbar-track,
html *::-webkit-scrollbar-track {
  background: rgb(245, 241, 241);
}

*::-webkit-scrollbar-thumb,
html *::-webkit-scrollbar-thumb {
  background-color: rgb(69, 46, 36);
  border-radius: 1rem;
  border: 1px solid rgb(230, 230, 240);
}

body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "Lato";
  overflow-x: hidden;
}

.main {
  width: 100%;
  min-height: calc(100vh - 60px);
  position: relative;
  flex-grow: 2;
}

a,
button {
  text-decoration: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

.img {
  width: 100%;
  max-width: 500px;
}
.img_icon {
  width: 100%;
  max-width: 150px;
  border-radius: 10px;
}
.img_max {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
}
.img_icon:hover {
  transform: scale(1.1);
}
.flex_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.color_w {
  color: white;
}
.color_w:hover {
  color: rgb(250, 226, 158);
}
.dn {
  display: none;
}
.pb_2 {
  padding-bottom: 20px;
}
.max_w_100 {
  max-width: 100%;
}
.tc {
  text-align: center;
}
.w_100 {
  width: 100%;
}

/* Minimal Thanks Page Styles */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
  padding: 2rem;
}

.thanks-content {
  text-align: center;
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  width: 100%;
}

.thanks-icon {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 1.5rem;
}

.thanks-title {
  font-size: 2.5rem;
  color: #0a1628;
  margin-bottom: 1rem;
  font-weight: 700;
}

.thanks-text {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.thanks-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0a1628;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.thanks-button:hover {
  background: #1e3a5f;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .thanks-content {
    padding: 2rem;
  }

  .thanks-title {
    font-size: 2rem;
  }
}

.clawmachinesim_box {
  min-width: 100%;
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.clawmachinesim_game {
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
}

/* Support page styles */

.clawmachinesim-support-hero {
  padding: 12rem 0 8rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  text-align: center;
}

.clawmachinesim-support-hero__title {
  font-size: 4.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  opacity: 0;
  animation: fadeInDown 1s ease forwards;
}

.clawmachinesim-support-hero__description {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 80rem;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.clawmachinesim-contact {
  padding: 8rem 0;
  background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.clawmachinesim-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.clawmachinesim-contact__title {
  font-size: 3.6rem;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #4ecdc4, #ffe66d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: fadeInLeft 1s ease forwards;
}

.clawmachinesim-contact__description {
  margin-bottom: 4rem;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: fadeInLeft 1s ease 0.2s forwards;
}

.clawmachinesim-contact__methods {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 3rem;
}

.clawmachinesim-contact__method {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.clawmachinesim-contact__method:nth-child(1) {
  animation-delay: 0.3s;
}
.clawmachinesim-contact__method:nth-child(2) {
  animation-delay: 0.5s;
}
.clawmachinesim-contact__method:nth-child(3) {
  animation-delay: 0.7s;
}
.clawmachinesim-contact__method:nth-child(4) {
  animation-delay: 0.9s;
}

.clawmachinesim-contact__method:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-0.5rem);
}

.clawmachinesim-contact__icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.clawmachinesim-contact__icon i {
  font-size: 2.4rem;
  color: #fff;
}

.clawmachinesim-contact__method-title {
  font-size: 2rem;
  color: #ffe66d;
  margin-bottom: 0.5rem;
}

.clawmachinesim-contact__link {
  color: #4ecdc4;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: bold;
}

.clawmachinesim-contact__link:hover {
  color: #ffe66d;
}

.clawmachinesim-contact__note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.3rem;
  margin-top: 0.5rem;
}

.clawmachinesim-contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 4rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  animation: fadeInRight 1s ease 0.5s forwards;
}

.clawmachinesim-contact-form__title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #ffe66d;
}

.clawmachinesim-contact-form__description {
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.8);
}

.clawmachinesim-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.clawmachinesim-form-group {
  margin-bottom: 2rem;
  flex: 1;
  min-width: 20rem;
}

.clawmachinesim-form-label {
  display: block;
  margin-bottom: 0.8rem;
  color: #4ecdc4;
  font-weight: bold;
}

.clawmachinesim-form-input,
.clawmachinesim-form-select,
.clawmachinesim-form-textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.8rem;
  color: #fff;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.clawmachinesim-form-input:focus,
.clawmachinesim-form-select:focus,
.clawmachinesim-form-textarea:focus {
  outline: none;
  border-color: #4ecdc4;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.2);
}

.clawmachinesim-form-textarea {
  resize: vertical;
  min-height: 12rem;
}

.clawmachinesim-form-select option {
  background: #1a1a2e;
  color: #fff;
}

.clawmachinesim-faq {
  padding: 8rem 0;
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
}

.clawmachinesim-faq__title {
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #ffe66d, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: fadeInDown 1s ease forwards;
}

.clawmachinesim-faq__description {
  text-align: center;
  margin-bottom: 6rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

.clawmachinesim-faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  gap: 4rem;
}

.clawmachinesim-faq__category {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.clawmachinesim-faq__category:nth-child(1) {
  animation-delay: 0.3s;
}
.clawmachinesim-faq__category:nth-child(2) {
  animation-delay: 0.5s;
}
.clawmachinesim-faq__category:nth-child(3) {
  animation-delay: 0.7s;
}

.clawmachinesim-faq__category-title {
  font-size: 2.4rem;
  margin-bottom: 3rem;
  color: #4ecdc4;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(78, 205, 196, 0.3);
}

.clawmachinesim-faq__item {
  margin-bottom: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.clawmachinesim-faq__item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-0.3rem);
}

.clawmachinesim-faq__question {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #ffe66d;
  font-weight: bold;
}

.clawmachinesim-faq__answer {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.clawmachinesim-support-footer {
  padding: 8rem 0;
  background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
  text-align: center;
}

.clawmachinesim-support-footer__title {
  font-size: 3.6rem;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: fadeInDown 1s ease forwards;
}

.clawmachinesim-support-footer__description {
  margin-bottom: 4rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

.clawmachinesim-support-footer__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.4s forwards;
}

.clawmachinesim_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
}

.clawmachinesim_game {
  width: 100%;
  max-width: 80rem;
  height: 60rem;
  border: none;
  border-radius: 2rem;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.clawmachinesim-filter-data {
  color: #171616;
  font-weight: bold;
}

@media (max-width: 768px) {
  .clawmachinesim-support-hero {
    padding: 10rem 0 6rem;
  }

  .clawmachinesim-support-hero__title {
    font-size: 3.6rem;
  }

  .clawmachinesim-contact,
  .clawmachinesim-faq,
  .clawmachinesim-support-footer {
    padding: 6rem 0;
  }

  .clawmachinesim-contact__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .clawmachinesim-contact-form {
    padding: 3rem 2rem;
  }

  .clawmachinesim-form-row {
    flex-direction: column;
  }

  .clawmachinesim-contact__title,
  .clawmachinesim-faq__title,
  .clawmachinesim-support-footer__title {
    font-size: 2.8rem;
  }

  .clawmachinesim-faq__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .clawmachinesim-support-footer__buttons {
    flex-direction: column;
    align-items: center;
  }

  .clawmachinesim_game {
    height: 45rem;
  }
}

@media (max-width: 480px) {
  .clawmachinesim-support-hero__title {
    font-size: 2.8rem;
  }

  .clawmachinesim-contact__title,
  .clawmachinesim-faq__title,
  .clawmachinesim-support-footer__title {
    font-size: 2.4rem;
  }

  .clawmachinesim-contact-form__title {
    font-size: 2.4rem;
  }

  .clawmachinesim-faq__category-title {
    font-size: 2rem;
  }

  .clawmachinesim-faq__question {
    font-size: 1.6rem;
  }

  .clawmachinesim_game {
    height: 35rem;
  }
}

/* Fix horizontal scroll on very small screens (360px and below) */
@media (max-width: 360px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .clawmachinesim_box {
    min-width: 100%;
    width: 100%;
    height: 500px;
    padding: 1rem;
    box-sizing: border-box;
    overflow: hidden;
  }

  .clawmachinesim_game {
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    max-width: 100%;
    border-radius: 1rem;
  }

  .thanks-content {
    padding: 1.5rem;
    margin: 1rem;
    max-width: calc(100vw - 2rem);
    box-sizing: border-box;
  }

  .thanks-title {
    font-size: 1.8rem;
    line-height: 1.3;
    word-wrap: break-word;
  }

  .thanks-text {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .thanks-button {
    padding: 0.7rem 1.2rem;
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  /* Ensure all elements respect viewport width */
  * {
    max-width: 100vw;
    box-sizing: border-box;
  }

  /* Fix potential issues with containers */
  .clawmachinesim-container {
    padding: 0 1rem;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Remove problematic animations on very small screens */

  .clawmachinesim-support-hero__description,
  .clawmachinesim-contact__description,
  .clawmachinesim-contact__method,
  .clawmachinesim-contact-form,
  .clawmachinesim-faq__description,
  .clawmachinesim-faq__category,
  .clawmachinesim-support-footer__description,
  .clawmachinesim-support-footer__buttons {
    animation: none;
    opacity: 1;
    transform: none;
    font-size: 1.4rem;
  }
}

/* Legal pages styles */
.clawmachinesim-legal {
  padding: 12rem 0 8rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  min-height: 100vh;
}

.clawmachinesim-legal__content {
  max-width: 90rem;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.clawmachinesim-legal__title {
  font-size: 4.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  text-align: center;
  opacity: 0;
  animation: fadeInDown 1s ease forwards;
}

.clawmachinesim-legal__subtitle {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 6rem;
  font-style: italic;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

.clawmachinesim-legal__section {
  margin-bottom: 5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 4rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.clawmachinesim-legal__section:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-0.5rem);
}

.clawmachinesim-legal__heading {
  font-size: 2.8rem;
  margin-bottom: 2.5rem;
  color: #ffe66d;
  font-weight: bold;
  border-bottom: 2px solid rgba(255, 230, 109, 0.3);
  padding-bottom: 1rem;
}

.clawmachinesim-legal__text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 1.5rem;
}

.clawmachinesim-legal__text p {
  margin-bottom: 2rem;
  font-size: 1.4rem;
}

.clawmachinesim-legal__list {
  list-style: none;
  padding-left: 0;
}

.clawmachinesim-legal__list li {
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 3rem;
}

.clawmachinesim-legal__list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 0;
  color: #4ecdc4;
  font-size: 1.4rem;
  font-weight: bold;
}

.clawmachinesim-legal__list li p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.85);
}

.clawmachinesim-legal__link {
  color: #4ecdc4;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.clawmachinesim-legal__link:hover {
  color: #ffe66d;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .clawmachinesim-legal {
    padding: 10rem 0 6rem;
  }

  .clawmachinesim-legal__title {
    font-size: 3.6rem;
  }

  .clawmachinesim-legal__section {
    padding: 3rem 2rem;
  }

  .clawmachinesim-legal__heading {
    font-size: 2.4rem;
  }

  .clawmachinesim-legal__text {
    font-size: 1.4rem;
  }

  .clawmachinesim-legal__list li {
    padding-left: 2.5rem;
  }
}

@media (max-width: 480px) {
  .clawmachinesim-legal__title {
    font-size: 2.8rem;
  }

  .clawmachinesim-legal__section {
    padding: 2.5rem 1.5rem;
  }

  .clawmachinesim-legal__heading {
    font-size: 2rem;
  }

  .clawmachinesim-legal__text {
    font-size: 1.3rem;
  }
}

@media (max-width: 360px) {
  .clawmachinesim-legal__title {
    font-size: 2.4rem;
    line-height: 1.3;
  }

  .clawmachinesim-legal__section {
    padding: 2rem 1rem;
    margin-bottom: 3rem;
  }

  .clawmachinesim-legal__heading {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .clawmachinesim-legal__text {
    font-size: 1.4rem;
    line-height: 1.6;
  }

  .clawmachinesim-legal__list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
  }

  .clawmachinesim-legal__list li::before {
    font-size: 1.4rem;
  }

  /* Remove animations on very small screens */
  .clawmachinesim-legal__content,
  .clawmachinesim-legal__title,
  .clawmachinesim-legal__subtitle {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Keyframe animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
