:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #f8b4cb;
  --background-pink: #f8b4cb;
  --text-white: #ffffff;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --error-color: #ef4444;
  --warning-color: #f59e0b;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --font-family: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--background-pink);
  min-height: 100vh;
  position: relative;
}

.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--background-pink);
}

#background-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: rgb(215 150 229 / 95%);
  backdrop-filter: blur(10px);
  position: sticky;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.header__logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.header__menu {
  list-style: none;
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.header__menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.hero {
  text-align: center;
  padding: 4rem 0;
  position: relative;
  background-image: url("/photo/img/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  width: 100%;
}

.hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero__subtitle {
  display: block;
  font-size: 2.5rem;
  margin-top: 0.5rem;
}

.hero__cta {
  background: var(--text-white);
  color: var(--primary-color);
  border: 3px solid var(--primary-color);
  padding: 1rem 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__cta:hover {
  background: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.disclaimer {
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem 0;
  text-align: center;
}

.disclaimer--secondary {
  background: rgba(37, 99, 235, 0.1);
}

.disclaimer__text {
  font-size: 0.875rem;
  color: var(--text-dark);
  font-weight: 500;
  margin: 0;
}

.features {
  padding: 4rem 0;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  gap: 2rem;
  align-items: center;
}

.features__card {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.features__card--center {
  background: transparent;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features__image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.features__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.features__text {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.features__text:last-child {
  margin-bottom: 0;
}

.responsible-gaming {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.1);
}

.responsible-gaming__title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.responsible-gaming__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}

.responsible-gaming__card {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.responsible-gaming__text {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.responsible-gaming__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.responsible-gaming__image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

@media (max-width: 768px) {
  .responsible-gaming__image {
    display: none;
  }
}

.responsible-gaming__info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.responsible-gaming__actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.responsible-gaming__action-card {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.responsible-gaming__action-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.responsible-gaming__action-text {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.page-hero {
  text-align: center;
  padding: 3rem 0;
  background: rgba(255, 255, 255, 0.1);
  background-image: url("/photo/img/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  width: 100%;
}

.page-hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 1rem;
  font-weight: 600;
}

.page-hero__text {
  font-size: 1rem;
  color: var(--text-white);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.responsible-tips {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.1);
}

.responsible-tips__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.responsible-tips__card {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.responsible-tips__icon {
  margin-bottom: 1rem;
}

.responsible-tips__icon img {
  width: 60px;
  height: 60px;
}

.responsible-tips__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.responsible-tips__text {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.understanding-play {
  padding: 4rem 0;
}

.understanding-play__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.understanding-play__subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 3rem;
  opacity: 0.9;
}

.understanding-play__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.understanding-play__column {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.understanding-play__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.understanding-play__item:last-child {
  margin-bottom: 0;
}

.understanding-play__icon {
  color: var(--success-color);
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.understanding-play__text {
  font-size: 0.875rem;
  line-height: 1.6;
}

.control-tools {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.1);
}

.control-tools__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.control-tools__subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 3rem;
  opacity: 0.9;
}

.control-tools__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.control-tools__card {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: var(--shadow-lg);
}

.control-tools__icon img {
  width: 60px;
  height: 60px;
}

.control-tools__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.control-tools__card-text {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.support-section {
  padding: 4rem 0;
}

.support-section__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.support-section__subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 3rem;
  opacity: 0.9;
}

.support-section__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: center;
}

.support-section__resources {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-section__card {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.support-section__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.support-section__card-text {
  font-size: 1rem;
  margin: 0;
}

.support-section__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.support-section__image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.commitment-section {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.1);
}

.commitment-section__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.commitment-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.commitment-section__card {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.commitment-section__icon {
  margin-bottom: 1rem;
}

.commitment-section__icon img {
  width: 60px;
  height: 60px;
}

.commitment-section__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.commitment-section__card-text {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.commitment-section__footer {
  text-align: center;
  font-size: 1rem;
  color: var(--text-white);
  opacity: 0.9;
}

.contact-section {
  padding: 4rem 0;
}

.contact-section__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-section__card {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.contact-section__icon {
  margin-bottom: 1rem;
}

.contact-section__icon img {
  width: 60px;
  height: 60px;
}

.contact-section__text {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.policy-content {
  padding: 4rem 0;
}

.policy-content__section {
  margin-bottom: 3rem;
}

.policy-content__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.policy-content__subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.policy-content__card {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-lg);
}

.policy-content__text {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.policy-content__text:last-child {
  margin-bottom: 0;
}

.policy-content__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-content__list li {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.policy-content__list li:before {
  content: "•";
  color: var(--text-white);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.policy-content__contact {
  margin-top: 1rem;
}

.policy-content__contact p {
  margin-bottom: 0.5rem;
}

.auth-section {
  padding: 4rem 0;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.auth-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: start;
}

.auth-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-card__header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-card__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.auth-card__subtitle {
  font-size: 1rem;
  color: var(--text-gray);
  margin: 0;
}

.auth-form__group {
  margin-bottom: 1.5rem;
}

.auth-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.auth-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--font-family);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.auth-form__input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.auth-form__input.error {
  border-color: var(--error-color);
}

.auth-form__password-wrapper {
  position: relative;
}

.auth-form__password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-gray);
  cursor: pointer;
  font-size: 0.875rem;
  padding: 0.25rem;
}

.auth-form__password-toggle:hover {
  color: var(--primary-color);
}

.auth-form__password-strength {
  margin-top: 0.5rem;
  font-size: 0.75rem;
}

.auth-form__password-strength.weak {
  color: var(--error-color);
}

.auth-form__password-strength.medium {
  color: var(--warning-color);
}

.auth-form__password-strength.strong {
  color: var(--success-color);
}

.auth-form__error {
  color: var(--error-color);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  display: none;
}

.auth-form__error.show {
  display: block;
}

.auth-form__options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.auth-form__checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  margin-bottom: 1rem;
}

.auth-form__checkbox input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.auth-form__checkbox-text {
  font-size: 0.875rem;
  color: var(--text-dark);
}

.auth-form__checkbox-text a {
  color: var(--primary-color);
  text-decoration: none;
}

.auth-form__checkbox-text a:hover {
  text-decoration: underline;
}

.auth-form__checkboxes {
  margin-bottom: 1.5rem;
}

.auth-form__link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.875rem;
}

.auth-form__link:hover {
  text-decoration: underline;
}

.auth-form__submit {
  width: 100%;
  background: var(--primary-color);
  color: var(--text-white);
  border: none;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  position: relative;
  margin-bottom: 1.5rem;
}

.auth-form__submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.auth-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.auth-form__loading {
  display: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid var(--text-white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.auth-form__loading.show {
  display: block;
}

@keyframes spin {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

.auth-form__divider {
  text-align: center;
  position: relative;
  margin-bottom: 1.5rem;
}

.auth-form__divider:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-color);
}

.auth-form__divider-text {
  background: white;
  padding: 0 1rem;
  color: var(--text-gray);
  font-size: 0.875rem;
  position: relative;
  z-index: 1;
}

.auth-form__social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.auth-form__social-button {
  width: 100%;
  background: white;
  color: var(--text-dark);
  border: 2px solid var(--border-color);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.auth-form__social-button:hover {
  border-color: var(--primary-color);
  background: rgba(37, 99, 235, 0.05);
}

.auth-form__social-button img {
  width: 20px;
  height: 20px;
}

.auth-card__footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.auth-card__footer-text {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin: 0;
}

.auth-card__footer-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.auth-card__footer-link:hover {
  text-decoration: underline;
}

.auth-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.auth-info__card {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.auth-info__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.auth-info__text {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.footer {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 3rem 0 1rem;
  margin-top: auto;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer__logo span {
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.footer__logo p,
.footer__info p {
  font-size: 0.875rem;
  margin: 0.25rem 0;
  opacity: 0.9;
}

.footer__disclaimer {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1rem;
}

.footer__disclaimer p {
  font-size: 0.75rem;
  margin: 0;
  font-weight: 600;
}

.footer__partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.footer__partners img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer__partners img:hover {
  opacity: 1;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(31, 41, 55, 0.95);
  backdrop-filter: blur(10px);
  color: var(--text-white);
  padding: 1rem;
  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;
}

.cookie-consent__text {
  font-size: 0.875rem;
  margin: 0;
  flex: 1;
}

.cookie-consent__actions {
  display: flex;
  gap: 1rem;
}

.cookie-consent__button {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-consent__button--accept {
  background: var(--primary-color);
  color: var(--text-white);
}

.cookie-consent__button--accept:hover {
  background: var(--primary-dark);
}

.cookie-consent__button--decline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-consent__button--decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features__card--center {
    order: -1;
  }

  .responsible-gaming__grid {
    grid-template-columns: 1fr;
  }

  .support-section__grid {
    grid-template-columns: 1fr;
  }

  .auth-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .header__nav {
    padding: 1rem 15px;
  }

  .header__menu {
    gap: 1rem;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__subtitle {
    font-size: 2rem;
  }

  .hero__cta {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .responsible-gaming__actions {
    grid-template-columns: 1fr;
  }

  .responsible-tips__grid {
    grid-template-columns: 1fr;
  }

  .understanding-play__grid {
    grid-template-columns: 1fr;
  }

  .control-tools__grid {
    grid-template-columns: 1fr;
  }

  .commitment-section__grid {
    grid-template-columns: 1fr;
  }

  .footer__content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer__partners {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .cookie-consent__content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cookie-consent__actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .header__menu {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero {
    padding: 2rem 0;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1.5rem;
  }

  .page-hero__title {
    font-size: 2rem;
  }

  .auth-card {
    padding: 1.5rem;
  }

  .understanding-play__grid {
    grid-template-columns: 1fr;
  }

  .understanding-play__column {
    min-width: auto;
  }
}
