:root {
  --primary-blue: #1a237e;
  --secondary-blue: #3949ab;
  --accent-orange: #ff6f00;
  --accent-pink: #e91e63;
  --accent-green: #4caf50;
  --accent-yellow: #ffc107;
  --text-white: #ffffff;
  --text-light: #e8eaf6;
  --background-dark: #0d1421;
  --background-gradient: linear-gradient(
    135deg,
    #1a237e 0%,
    #3949ab 50%,
    #1a237e 100%
  );
  --card-background: rgba(255, 255, 255, 0.1);
  --border-radius: 12px;
  --box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  font-family: "Onest", sans-serif;
  background: var(--background-gradient);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 35, 126, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
}

.header__nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-orange);
}

.header__logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-white);
}

.header__menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.header__menu-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.header__menu-link:hover,
.header__menu-link--active {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.1);
}

.main {
  margin-top: 80px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url("/images/img/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero__content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__cta {
  background: var(--accent-orange);
  color: var(--text-white);
  border: none;
  padding: 1rem 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__cta:hover {
  background: #e65100;
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.hero__balls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.responsibility-container {
  padding: 30px 50px;
  background-color: #00205b;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.responsibility-container a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.3s ease;
}

.responsibility-container a:hover {
  color: #ffcc00;
}

@media (max-width: 600px) {
  .responsibility-container {
    padding: 20px;
    font-size: 12px;
  }
}

.game-info {
  padding: 4rem 2rem;
  background: rgba(0, 0, 0, 0.2);
}

.game-info__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}

.game-info__card {
  background: var(--card-background);
  padding: 2rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-info__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.game-info__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light);
}

.responsible-gaming {
  padding: 4rem 2rem;
  position: relative;
}

.responsible-gaming__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.responsible-gaming__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.responsible-gaming__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.responsible-gaming__card {
  background: var(--card-background);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.responsible-gaming__text {
  font-size: 0.9rem;
  line-height: 1.5;
}

.responsible-gaming__wheel {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.wheel {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(
    var(--accent-orange) 0deg 60deg,
    var(--accent-pink) 60deg 120deg,
    var(--accent-green) 120deg 180deg,
    var(--accent-yellow) 180deg 240deg,
    var(--secondary-blue) 240deg 300deg,
    var(--accent-orange) 300deg 360deg
  );
  position: relative;
  animation: spin 10s linear infinite;
}

.wheel::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--text-white);
  border-radius: 50%;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.features {
  padding: 4rem 2rem;
  background: rgba(0, 0, 0, 0.2);
}

.features__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.features__card {
  background: var(--card-background);
  padding: 2rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.features__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.features__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light);
}

.footer {
  background: rgba(0, 0, 0, 0.5);
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-orange);
}

.footer__logo-text {
  font-weight: 700;
  font-size: 1.2rem;
}

.footer__info {
  text-align: right;
  font-size: 0.9rem;
  color: var(--text-light);
}

.footer__notice {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.footer__links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__partners {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer__partners img {
  height: 30px;
  opacity: 0.7;
  transition: var(--transition);
}

.footer__partners img:hover {
  opacity: 1;
}

.footer__legal {
  display: flex;
  gap: 2rem;
}

.footer__legal a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__legal a:hover {
  color: var(--text-white);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  z-index: 1001;
  transform: translateY(100%);
  transition: var(--transition);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-consent__text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-light);
}

.cookie-consent__buttons {
  display: flex;
  gap: 1rem;
}

.cookie-consent__btn {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-consent__btn--accept {
  background: var(--accent-green);
  color: var(--text-white);
}

.cookie-consent__btn--accept:hover {
  background: #388e3c;
}

.cookie-consent__btn--decline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-consent__btn--decline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}
.responsible-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url("/images/img/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.responsible-hero,
.policy-hero,
.terms-hero,
.auth-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.responsible-hero__content,
.policy-hero__content,
.terms-hero__content,
.auth-hero__content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
}

.responsible-hero__title,
.policy-hero__title,
.terms-hero__title,
.auth-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.responsible-hero__subtitle,
.policy-hero__subtitle,
.terms-hero__subtitle,
.auth-hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.responsible-hero__text {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.responsible-tips {
  padding: 4rem 2rem;
  background: rgba(0, 0, 0, 0.2);
}

.responsible-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.responsible-tips__card {
  background: var(--card-background);
  padding: 2rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: var(--transition);
}

.responsible-tips__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.responsible-tips__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.responsible-tips__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.responsible-tips__text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.understanding-play {
  padding: 4rem 2rem;
}

.understanding-play__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.understanding-play__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.understanding-play__subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.understanding-play__checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  text-align: left;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--card-background);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.checklist-item__icon {
  color: var(--accent-green);
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.checklist-item__text {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.control-tools {
  padding: 4rem 2rem;
  background: rgba(0, 0, 0, 0.2);
}

.control-tools__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.control-tools__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.control-tools__subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.control-tools__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  text-align: left;
}

.control-tools__card {
  background: var(--card-background);
  padding: 2rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.control-tools__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  background: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-tools__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.control-tools__card-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.control-tools__list {
  list-style: none;
  padding: 0;
}

.control-tools__list li {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.control-tools__list li::before {
  content: "•";
  color: var(--accent-orange);
  position: absolute;
  left: 0;
}

.support-section {
  padding: 4rem 2rem;
}

.support-section__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.support-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.support-section__subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.support-section__contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.support-contact {
  background: var(--card-background);
  padding: 2rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-contact__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.support-contact__link {
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.support-contact__link:hover {
  color: #e65100;
}

.support-section__visual {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.support-visual {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--card-background);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.commitment {
  padding: 4rem 2rem;
  background: rgba(0, 0, 0, 0.2);
}

.commitment__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.commitment__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.commitment__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.commitment__card {
  background: var(--card-background);
  padding: 2rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.commitment__star {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.commitment__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.commitment__card-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.commitment__footer {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 2rem;
}

.contact-section {
  padding: 4rem 2rem;
}

.contact-section__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.contact-info {
  background: var(--card-background);
  padding: 2rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-info__logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-orange);
}

.contact-info__email {
  font-size: 1.2rem;
  color: var(--accent-orange);
  font-weight: 500;
}

.policy-content,
.terms-content {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.policy-nav {
  background: var(--card-background);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
  position: sticky;
  top: 100px;
  z-index: 10;
}

.policy-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  justify-content: center;
}

.policy-nav__link {
  color: var(--text-light);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: var(--transition);
  font-size: 0.9rem;
}

.policy-nav__link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}

.policy-sections,
.terms-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.policy-section,
.terms-section {
  background: var(--card-background);
  padding: 2rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-section__title,
.terms-section__title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-white);
  border-bottom: 2px solid var(--accent-orange);
  padding-bottom: 0.5rem;
}

.policy-section__content,
.terms-section__content {
  color: var(--text-light);
  line-height: 1.7;
}

.policy-section__content h3,
.terms-section__content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem 0;
  color: var(--text-white);
}

.policy-section__content p,
.terms-section__content p {
  margin-bottom: 1rem;
}

.policy-section__content ul,
.terms-section__content ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.policy-section__content li,
.terms-section__content li {
  margin-bottom: 0.5rem;
}

.contact-details {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin: 1rem 0;
}

.contact-details p {
  margin-bottom: 0.5rem;
}

.auth-form-section {
  padding: 2rem;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.auth-form-section__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.auth-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.auth-form {
  background: var(--card-background);
  padding: 3rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-form__header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-form__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.auth-form__subtitle {
  color: var(--text-light);
  font-size: 1rem;
}

.auth-form__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group__label {
  font-weight: 500;
  color: var(--text-white);
  font-size: 0.9rem;
}

.form-group__input-wrapper {
  position: relative;
}

.form-group__input {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group__input:focus {
  outline: none;
  border-color: var(--accent-orange);
  background: rgba(255, 255, 255, 0.1);
}

.form-group__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group__toggle-password {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  padding: 0;
}

.form-group__error {
  color: #f44336;
  font-size: 0.8rem;
  min-height: 1rem;
}

.password-strength {
  margin-top: 0.5rem;
}

.password-strength__bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.password-strength__fill {
  height: 100%;
  width: 0%;
  transition: var(--transition);
  border-radius: 2px;
}

.password-strength__text {
  font-size: 0.8rem;
  color: var(--text-light);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.5rem 0;
}

.form-options__link {
  color: var(--accent-orange);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-options__link:hover {
  color: #e65100;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-wrapper__input {
  display: none;
}

.checkbox-wrapper__checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  position: relative;
  transition: var(--transition);
}

.checkbox-wrapper__input:checked + .checkbox-wrapper__checkmark {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
}

.checkbox-wrapper__input:checked + .checkbox-wrapper__checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-wrapper__label {
  color: var(--text-light);
  line-height: 1.4;
}

.checkbox-link {
  color: var(--accent-orange);
  text-decoration: none;
  transition: var(--transition);
}

.checkbox-link:hover {
  color: #e65100;
}

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0;
}

.auth-form__submit {
  background: var(--accent-orange);
  color: var(--text-white);
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
}

.auth-form__submit:hover {
  background: #e65100;
  transform: translateY(-1px);
}

.auth-form__submit:disabled {
  background: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
  transform: none;
}

.auth-form__divider {
  text-align: center;
  position: relative;
  margin: 1.5rem 0;
}

.auth-form__divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.auth-form__divider-text {
  background: var(--card-background);
  padding: 0 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.social-login {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-login__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.social-login__btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.social-login__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.social-login__btn--google .social-login__icon {
  background: #4285f4;
  color: white;
}

.social-login__btn--facebook .social-login__icon {
  background: #1877f2;
  color: white;
}

.auth-form__footer {
  text-align: center;
  margin-top: 1.5rem;
}

.auth-form__footer-text {
  color: var(--text-light);
  font-size: 0.9rem;
}

.auth-form__footer-link {
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.auth-form__footer-link:hover {
  color: #e65100;
}

.auth-info {
  background: var(--card-background);
  padding: 3rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-info__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-info__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.auth-info__text {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.auth-info__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-info__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.auth-info__feature-icon {
  font-size: 1.2rem;
}

.auth-info__feature-text {
  color: var(--text-light);
  font-weight: 500;
}

.auth-info__benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.auth-info__benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.auth-info__benefit-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.auth-info__benefit-content {
  flex: 1;
}

.auth-info__benefit-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.auth-info__benefit-text {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.responsible-notice {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid var(--accent-yellow);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.responsible-notice__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.responsible-notice__text {
  color: var(--text-light);
  font-size: 0.9rem;
}

.responsible-notice__link {
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.responsible-notice__link:hover {
  color: #e65100;
}

@media (max-width: 768px) {
  .header__nav {
    padding: 0 1rem;
  }

  .header__menu {
    gap: 1rem;
  }

  .hero {
    padding: 1rem;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .game-info__container,
  .features__container {
    grid-template-columns: 1fr;
  }

  .responsible-gaming__content {
    grid-template-columns: 1fr;
  }

  .footer__container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer__info {
    text-align: center;
  }

  .footer__links {
    flex-direction: column;
    gap: 2rem;
  }

  .footer__partners {
    justify-content: center;
  }

  .footer__legal {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cookie-consent__content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .understanding-play__checklist {
    grid-template-columns: 1fr;
  }

  .control-tools__grid {
    grid-template-columns: 1fr;
  }

  .support-section__contacts {
    grid-template-columns: 1fr;
  }

  .commitment__cards {
    grid-template-columns: 1fr;
  }

  .policy-nav__list {
    flex-direction: column;
    align-items: center;
  }

  .auth-form-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .auth-form,
  .auth-info {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .header__logo-text {
    display: none;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__cta {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }

  .game-info,
  .features,
  .responsible-gaming {
    padding: 2rem 1rem;
  }

  .game-info__container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .game-info__card,
  .features__card {
    padding: 1.5rem;
  }

  .responsible-gaming__title,
  .understanding-play__title,
  .control-tools__title,
  .support-section__title,
  .commitment__title,
  .contact-section__title {
    font-size: 2rem;
  }

  .footer {
    padding: 2rem 1rem 1rem;
  }

  .auth-form,
  .auth-info {
    padding: 1.5rem;
  }

  .auth-form__title {
    font-size: 1.5rem;
  }
}
