@import url("https://fonts.googleapis.com/css2?family=Aoboshi+One&display=swap");

:root {
  --primary-orange: #f97316;
  --primary-orange-hover: #ea580c;
  --dark-bg: #111827;
  --dark-secondary: #1f2937;
  --dark-tertiary: #374151;
  --text-light: #f9fafb;
  --text-gray: #d1d5db;
  --text-gray-dark: #9ca3af;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  word-break: break-all;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Aoboshi One", serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
}

.font-aoboshi {
  font-family: "Aoboshi One", serif;
}

.header {
  position: relative;
  z-index: 1000;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  z-index: 1000;
}

.header__logo-icon {
  width: 32px;
  height: 32px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.header__logo-text {
  color: white;
  font-weight: bold;
  font-size: 1.25rem;
}

.header__nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.header__nav-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header__nav-link:hover {
  color: #fed7aa;
}

.menu-toggle__line {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle--open .menu-toggle__line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle--open .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle--open .menu-toggle__line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Styles */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 24, 39, 0.98);
  backdrop-filter: blur(10px);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__nav-list {
  text-align: center;

  li {
    margin: 0 !important;
  }
}

.mobile-nav--open {
  transform: translateX(0);
}

.hero,
.hero-section {
  background-image: url("../goldenReels/bonusTriggers/1.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: fit-content;
}

.mobile-nav .header__nav-list {
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-nav .header__nav-link {
  font-size: 1.5rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-nav .header__nav-link:hover {
  background-color: var(--primary-orange);
  color: white;
  transform: scale(1.05);
}

.menu-toggle {
  position: relative;
  z-index: 1000;
  font-size: 24px;
}

.ball {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  color: white;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.ball::before {
  content: attr(data-number);
  position: absolute;
}

.ball--1 {
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.ball--1::before {
  content: "7";
}

.ball--2 {
  top: 20%;
  right: 20%;
  animation-delay: 1s;
}

.ball--2::before {
  content: "3";
}

.ball--3 {
  top: 60%;
  left: 10%;
  animation-delay: 2s;
}

.ball--3::before {
  content: "9";
}

.ball--4 {
  top: 70%;
  right: 15%;
  animation-delay: 3s;
}

.ball--4::before {
  content: "1";
}

.ball--5 {
  top: 40%;
  left: 50%;
  animation-delay: 4s;
}

.ball--5::before {
  content: "5";
}

.ball--6 {
  top: 80%;
  left: 60%;
  animation-delay: 5s;
}

.ball--6::before {
  content: "2";
}

.ball--7 {
  top: 30%;
  right: 40%;
  animation-delay: 1.5s;
}

.ball--7::before {
  content: "8";
}

.ball--8 {
  top: 50%;
  right: 10%;
  animation-delay: 2.5s;
}

.ball--8::before {
  content: "4";
}



.ball--11::before {
  content: "11";
  font-size: 1.2rem;
}

.ball--12 {
  top: 75%;
  left: 25%;
  animation-delay: 4.2s;
}

.ball--12::before {
  content: "12";
  font-size: 1.2rem;
}

.ball--13 {
  top: 35%;
  left: 80%;
  animation-delay: 2.8s;
}

.ball--13::before {
  content: "13";
  font-size: 1.2rem;
}

.ball--14 {
  top: 55%;
  left: 40%;
  animation-delay: 3.8s;
}

.ball--14::before {
  content: "14";
  font-size: 1.2rem;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.responsible {
  a {
    color: black;
    text-decoration: underline;
  }
}

.hero__content {
  position: relative;
  z-index: 10;
}

a {
  text-decoration: underline;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: bold;
  color: var(--primary-orange);
  text-align: center;
  margin-bottom: 2rem;
}

.last {
  background-image: url("../goldenReels/bonusTriggers/3.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__cta {
  background-color: var(--primary-orange);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: bold;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.hero__cta:hover {
  background-color: var(--primary-orange-hover);
}

.section__title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}

.login-form,
.registration-form {
  max-width: 28rem;
  margin: 0 auto;
  background-color: var(--dark-secondary);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.login-form__title,
.registration-form__title {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--primary-orange);
  text-align: center;
  margin-bottom: 2rem;
}

.login-form__field,
.registration-form__field {
  margin-bottom: 1.5rem;
}

.login-form__label,
.registration-form__label {
  display: block;
  color: white;
  margin-bottom: 0.5rem;
}

.login-form__input,
.registration-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--dark-tertiary);
  color: white;
  border: 1px solid #4b5563;
  border-radius: 0.375rem;
  transition: border-color 0.3s ease;
}

.login-form__input:focus,
.registration-form__input:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.login-form__submit,
.registration-form__submit {
  width: 100%;
  background-color: var(--primary-orange);
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 0.375rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-form__submit:hover,
.registration-form__submit:hover {
  background-color: var(--primary-orange-hover);
}

.cookie-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--dark-secondary);
  border: 1px solid var(--dark-tertiary);
  border-radius: 0.5rem;
  padding: 1.5rem;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
}

.cookie-consent.show {
  display: block;
  animation: slideIn 0.3s ease-out;
}

.cookie-consent__content {
  margin-bottom: 1rem;
}

.cookie-consent__text {
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.cookie-consent__actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-consent__button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-consent__button--accept {
  background-color: var(--primary-orange);
  color: white;
}

.cookie-consent__button--accept:hover {
  background-color: var(--primary-orange-hover);
}

.cookie-consent__button--decline {
  background-color: transparent;
  color: var(--text-gray);
  border: 1px solid var(--dark-tertiary);
}

.cookie-consent__button--decline:hover {
  background-color: var(--dark-tertiary);
  color: white;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.tip-card,
.tool-card,
.support-card,
.commitment-card {
  background-color: var(--dark-tertiary);
  padding: 1.5rem;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}

.tip-card:hover,
.tool-card:hover,
.support-card:hover,
.commitment-card:hover {
  transform: translateY(-2px);
}

.tip-card__icon,
.tool-card__icon,
.support-card__icon,
.commitment-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.tip-card__title,
.tool-card__title,
.support-card__title,
.commitment-card__title {
  color: white;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.tip-card__text,
.tool-card__text,
.support-card__text,
.commitment-card__text {
  color: var(--text-gray);
  font-size: 0.875rem;
}

.warning-sign {
  background-color: var(--dark-secondary);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.warning-sign__icon {
  color: var(--primary-orange);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.warning-sign__text {
  color: var(--text-gray);
}

.success-message {
  text-align: center;
}

.success-message__icon {
  font-size: 4rem;
  color: var(--primary-orange);
  margin-bottom: 2rem;
}

.success-message__title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
}

.success-message__button {
  background-color: var(--primary-orange);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.success-message__button:hover {
  background-color: var(--primary-orange-hover);
}

.privacy-policy,
.terms {
  max-width: 64rem;
  margin: 0 auto;
}

.privacy-policy__title,
.terms__title {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: bold;
  color: var(--primary-orange);
  text-align: center;
  margin-bottom: 3rem;
}

.privacy-policy__content,
.terms__content {
  background-color: var(--dark-secondary);
  border-radius: 0.5rem;
  padding: 2rem;
}

.privacy-section,
.terms-section {
  margin-bottom: 2rem;
}

.privacy-section__title,
.terms-section__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.privacy-section__content,
.terms-section__content {
  color: var(--text-gray);
}

.privacy-section__content ul,
.terms-section__content ul {
  margin-left: 1rem;
}

.privacy-section__content li,
.terms-section__content li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .header__nav-list {
    gap: 1rem;
  }

  .header__nav-link {
    font-size: 0.875rem;
  }

  .ball {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

  .cookie-consent {
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .cookie-consent__actions {
    flex-direction: column;
  }

  .tip-card,
  .tool-card,
  .support-card,
  .commitment-card {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .header__logo-text {
    font-size: 1rem;
  }

  .header__nav-list {
    gap: 0.5rem;
  }

  .header__nav-link {
    font-size: 0.75rem;
  }

  .ball {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .login-form,
  .registration-form {
    padding: 1.5rem;
  }

  .privacy-policy__content,
  .terms__content {
    padding: 1.5rem;
  }
}

.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.age-modal-content {
  background: #ffffff;
  color: #1a1a1a;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  text-align: center;
  max-width: 420px;
  width: 90%;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.age-modal-content h2 {
  font-size: 1.75rem;
  color: #b91c1c;
  margin-bottom: 1rem;
}

.age-modal-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
}

.age-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.btn-age {
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-yes {
  background-color: #15803d;
  color: white;
}

.btn-yes:hover {
  background-color: #166534;
}

.btn-no {
  background-color: #dc2626;
  color: white;
}

.btn-no:hover {
  background-color: #b91c1c;
}

.age-error {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #fee2e2;
  color: #b91c1c;
  border-left: 4px solid #dc2626;
  border-radius: 6px;
  font-weight: 500;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

