* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #6b46c1 0%, #9333ea 50%, #ec4899 100%);
  min-height: 100vh;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.header__logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
}

.header__nav {
  display: flex;
  gap: 2rem;
}

.header__nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  position: relative;
}

.header__nav-link:hover,
.header__nav-link--active {
  color: #fbbf24;
}

.header__nav-link--active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #fbbf24;
}

.main {
  padding-top: 80px;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image: url("/photo/images/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero__content {
  margin-bottom: 4rem;
}

.hero__title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero__cta {
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  color: #000;
  border: none;
  padding: 1rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

.hero__bingo-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.bingo-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  min-width: 300px;
}

.bingo-card__header {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.bingo-card__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

.bingo-card__number,
.bingo-card__free {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 0.8rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.bingo-card__free {
  background: rgba(251, 191, 36, 0.3);
  color: #fbbf24;
  font-weight: 800;
}

.hero__disclaimer {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 2rem;
}

.features {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
}

.feature-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.feature-card__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.features__bingo-showcase {
  text-align: center;
  margin-bottom: 2rem;
}

.features__bingo-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.features__disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 2rem;
}

.responsible-gambling-home {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.4);
}

.responsible-gambling-home__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.responsible-gambling-home__title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
  letter-spacing: 2px;
}

.responsible-gambling-home__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.responsible-gambling-home__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.responsible-info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
}

.responsible-info-card__text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.responsible-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
}

.responsible-rating__badge {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.responsible-rating__letter {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
}

.responsible-rating__text {
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 600;
}

.responsible-gambling-home__bingo {
  text-align: center;
}

.responsible-gambling-home__bingo-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-features {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.6);
}

.game-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.game-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.game-feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-feature-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.game-feature-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-feature-card:hover .game-feature-card__img {
  transform: scale(1.05);
}

.game-feature-card__content {
  padding: 2rem;
}

.game-feature-card__title {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-feature-card__text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.game-feature-card__text strong {
  color: #fbbf24;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .responsible-gambling-home__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .game-features__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .responsible-gambling-home__title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .responsible-gambling-home {
    padding: 2rem 0;
  }

  .responsible-gambling-home__title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .responsible-rating {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .game-feature-card__content {
    padding: 1.5rem;
  }

  .game-feature-card__title {
    font-size: 1.1rem;
  }

  .game-feature-card__image {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .responsible-info-card,
  .responsible-rating {
    padding: 1rem;
  }

  .responsible-info-card__text {
    font-size: 0.8rem;
  }

  .responsible-rating__badge {
    width: 50px;
    height: 50px;
  }

  .responsible-rating__letter {
    font-size: 1.5rem;
  }

  .responsible-rating__text {
    font-size: 0.75rem;
  }

  .game-feature-card__content {
    padding: 1rem;
  }

  .game-feature-card__title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .game-feature-card__text {
    font-size: 0.75rem;
  }
}

.responsible-hero {
  padding: 4rem 0;
  text-align: center;
}

.responsible-hero__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.responsible-hero__title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.responsible-hero__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.responsible-hero__text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.responsible-tips {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.responsible-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.responsible-tips__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.tip-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
}

.tip-card__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tip-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.tip-card__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.understanding-play {
  padding: 4rem 0;
}

.understanding-play__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.understanding-play__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #fbbf24;
}

.understanding-play__text {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.understanding-play__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.understanding-play__tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.play-tip {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.play-tip__icon {
  font-size: 1.2rem;
  color: #fbbf24;
}

.play-tip__text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.understanding-play__bingo {
  text-align: center;
}

.understanding-play__bingo-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tools-control {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.tools-control__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tools-control__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #fbbf24;
}

.tools-control__text {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tools-control__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.tools-control__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.control-tool {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
}

.control-tool__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.control-tool__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.control-tool__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.tools-control__bingo {
  text-align: center;
}

.tools-control__bingo-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.support-section {
  padding: 4rem 0;
}

.support-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.support-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #fbbf24;
}

.support-section__text {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  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: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
}

.support-contact__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.support-contact__info {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.commitment-section {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.commitment-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.commitment-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #fbbf24;
}

.commitment-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.commitment-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
}

.commitment-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.commitment-card__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.commitment-section__bingo {
  text-align: center;
  margin-bottom: 3rem;
}

.commitment-section__bingo-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.commitment-section__security {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.commitment-section__security-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.commitment-section__security-list {
  list-style: none;
  padding: 0;
}

.commitment-section__security-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

.commitment-section__security-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fbbf24;
  font-weight: bold;
}

.commitment-section__footer {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.commitment-section__contact {
  display: block;
  margin: 0 auto;
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  color: #000;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.commitment-section__contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

.policy-hero,
.terms-hero {
  padding: 4rem 0;
  text-align: center;
}

.policy-hero__container,
.terms-hero__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.policy-hero__title,
.terms-hero__title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.policy-hero__subtitle,
.terms-hero__subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.policy-content,
.terms-content {
  padding: 2rem 0 4rem;
  background: rgba(0, 0, 0, 0.2);
}

.policy-content__container,
.terms-content__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.policy-section,
.terms-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.policy-section__title,
.terms-section__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fbbf24;
}

.policy-section__content h3,
.terms-section__content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  color: #fbbf24;
}

.policy-section__content p,
.terms-section__content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.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;
  color: rgba(255, 255, 255, 0.9);
}

.policy-section__content a,
.terms-section__content a {
  color: #fbbf24;
  text-decoration: none;
}

.policy-section__content a:hover,
.terms-section__content a:hover {
  text-decoration: underline;
}

.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.auth-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.auth-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 600px;
}

.auth-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  max-width: 500px;
  width: 100%;
}

.auth-form__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fbbf24;
  text-align: center;
}

.auth-form__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 2rem;
}

.auth-form__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group--checkbox {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.form-group__label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.form-group__input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 1rem;
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.form-group__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group__input:focus {
  outline: none;
  border-color: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.form-group__password-wrapper {
  position: relative;
}

.form-group__password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.form-group__password-toggle:hover {
  color: #fbbf24;
}

.form-group__error {
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: 0.5rem;
  display: none;
}

.form-group__error.show {
  display: block;
}

.form-group__hint {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.checkbox-wrapper__input {
  display: none;
}

.checkbox-wrapper__checkmark {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-wrapper__input:checked + .checkbox-wrapper__checkmark {
  background: #fbbf24;
  border-color: #fbbf24;
}

.checkbox-wrapper__input:checked + .checkbox-wrapper__checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-weight: bold;
  font-size: 0.8rem;
}

.checkbox-wrapper__text a {
  color: #fbbf24;
  text-decoration: none;
}

.checkbox-wrapper__text a:hover {
  text-decoration: underline;
}

.auth-form__forgot-link {
  color: #fbbf24;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.auth-form__forgot-link:hover {
  text-decoration: underline;
}

.auth-form__submit {
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  color: #000;
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1rem;
}

.auth-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

.auth-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.auth-form__divider {
  text-align: center;
  margin: 2rem 0 1rem;
  position: relative;
}

.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: rgba(255, 255, 255, 0.05);
  padding: 0 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.auth-form__switch {
  display: block;
  text-align: center;
  color: #fbbf24;
  text-decoration: none;
  font-weight: 600;
  padding: 0.8rem;
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.auth-form__switch:hover {
  background: rgba(251, 191, 36, 0.1);
  border-color: #fbbf24;
}

.auth-form__disclaimer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  line-height: 1.5;
}

.auth-form__disclaimer a {
  color: #fbbf24;
  text-decoration: none;
}

.auth-form__disclaimer a:hover {
  text-decoration: underline;
}

.auth-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-visual__content {
  text-align: center;
  max-width: 400px;
}

.auth-visual__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.auth-visual__text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.auth-visual__bingo {
  margin-top: 2rem;
}

.auth-visual__bingo-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.footer {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__logo-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.footer__logo-text {
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
}

.footer__links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #fbbf24;
}

.footer__info {
  text-align: right;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  gap: 50px;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.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;
  flex-wrap: wrap;
}

.cookie-consent__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  flex: 1;
  min-width: 300px;
}

.cookie-consent__actions {
  display: flex;
  gap: 1rem;
}

.cookie-consent__btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-consent__btn--accept {
  background: #fbbf24;
  color: #000;
}

.cookie-consent__btn--accept:hover {
  background: #f59e0b;
  transform: translateY(-1px);
}

.cookie-consent__btn--decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-consent__btn--decline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

@media (max-width: 1024px) {
  .hero__title {
    font-size: 3rem;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .understanding-play__content,
  .tools-control__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .auth-form-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__container {
    flex-direction: column;
    text-align: center;
  }

  .footer__info {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .header__container {
    padding: 1rem;
  }

  .header__nav {
    gap: 1rem;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__bingo-cards {
    flex-direction: column;
    align-items: center;
  }

  .bingo-card {
    min-width: 280px;
  }

  .responsible-hero__title,
  .policy-hero__title,
  .terms-hero__title {
    font-size: 2.5rem;
  }

  .understanding-play__tips {
    grid-template-columns: 1fr;
  }

  .responsible-tips__grid {
    grid-template-columns: 1fr;
  }

  .support-section__contacts {
    grid-template-columns: 1fr;
  }

  .commitment-section__grid {
    grid-template-columns: 1fr;
  }

  .auth-form {
    padding: 2rem;
  }

  .auth-form__title {
    font-size: 2rem;
  }

  .cookie-consent__content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .bingo-card {
    min-width: 250px;
    padding: 1rem;
  }

  .bingo-card__grid {
    gap: 0.3rem;
  }

  .bingo-card__number,
  .bingo-card__free {
    padding: 0.6rem;
    font-size: 1rem;
  }

  .auth-form {
    padding: 1.5rem;
  }

  .form-group--checkbox {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px;
}

.footer-links a,
.footer-links img {
  display: inline-block;
}

.footer-links img {
  max-height: 80px;
  width: auto;
  height: auto;
  transition: transform 0.2s ease;
}

.footer-links img:hover {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .footer-links {
    gap: 12px;
    padding: 15px;
  }

  .footer-links img {
    max-height: 32px;
  }
}
