/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Pontano Sans", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #4a1a5c 0%, #2d0a3d 50%, #1a0528 100%);
  min-height: 100vh;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

a {
  color: #ff9500;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffb84d;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-family: "Pontano Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.btn--primary {
  background: linear-gradient(45deg, #ff9500 0%, #ffb84d 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3);
}

.btn--primary:hover {
  background: linear-gradient(45deg, #e6850e 0%, #ff9500 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 149, 0, 0.4);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--text {
  background: transparent;
  color: #ff9500;
  padding: 8px 16px;
}

.btn--text:hover {
  color: #ffb84d;
  background: rgba(255, 149, 0, 0.1);
}

.btn--full {
  width: 100%;
}

/* Header */
.header {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__image {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.logo__text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

/* Navigation */
.nav__list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav__link {
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav__link:hover,
.nav__link--active {
  background: rgba(255, 149, 0, 0.2);
  color: #ff9500;
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger__line {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  text-align: center;
}

.hero__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero__game {
  flex: 1;
  min-width: 300px;
}

.hero__image {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero__text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.hero__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #ffffff 0%, #ff9500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__cta {
  font-size: 1.2rem;
  padding: 16px 32px;
}

/* Disclaimer */
.disclaimer {
  background: rgba(0, 0, 0, 0.4);
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer__text {
  text-align: center;
  font-size: 0.8rem;
  color: #cccccc;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Features Section */
.features {
  padding: 4rem 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

/* Card Styles */
.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.card__image {
  margin-bottom: 1.5rem;
}

.card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

.card__title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #ff9500;
}

.card__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cccccc;
}

/* Section Titles */
.section__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #ffffff 0%, #ff9500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsible Gaming Section */
.responsible-gaming {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.responsible-gaming__content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.responsible-gaming__image {
  flex: 1;
  min-width: 300px;
}

.responsible-gaming__img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.responsible-gaming__info {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  background: rgba(255, 149, 0, 0.1);
  border: 1px solid rgba(255, 149, 0, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
}

.info-card__title {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
}

/* Bottom Features */
.bottom-features {
  padding: 4rem 0;
}

.bottom-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card__title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ff9500;
}

.feature-card__text {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.5);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__brand {
  flex: 1;
  min-width: 250px;
}

.footer__contact,
.footer__address,
.footer__year,
.footer__domain {
  font-size: 0.9rem;
  color: #cccccc;
  margin-bottom: 0.5rem;
}

.footer__legal {
  flex: 2;
  min-width: 300px;
}

.footer__notice {
  font-size: 0.8rem;
  color: #cccccc;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer__badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer__badge {
  height: 40px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer__badge:hover {
  opacity: 1;
}

.footer__links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 0.8rem;
  color: #ff9500;
  text-transform: uppercase;
  font-weight: 600;
}

/* Auth Forms */
.auth-section {
  padding: 4rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.auth-form {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.auth-form__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.auth-form__subtitle {
  text-align: center;
  color: #cccccc;
  margin-bottom: 2rem;
}

.auth-form__footer {
  text-align: center;
  margin-top: 2rem;
}

.auth-form__text {
  color: #cccccc;
  margin: 0;
}

/* Form Styles */
.form__group {
  margin-bottom: 1.5rem;
}

.form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #ffffff;
}

.form__input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: "Pontano Sans", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form__input:focus {
  outline: none;
  border-color: #ff9500;
  background: rgba(255, 255, 255, 0.15);
}

.form__input::placeholder {
  color: #999999;
}

.form__options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.form__link {
  color: #ff9500;
  font-size: 0.9rem;
}

/* Checkbox Styles */
.checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 0.5rem;
}

.checkbox__input {
  display: none;
}

.checkbox__checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.checkbox__input:checked + .checkbox__checkmark {
  background: #ff9500;
  border-color: #ff9500;
}

.checkbox__input:checked + .checkbox__checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
}

.checkbox__text {
  color: #cccccc;
  font-size: 0.9rem;
}

/* Legal Pages */
.legal-section {
  padding: 4rem 0;
}

.legal-section__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffffff;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-item {
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-item__title {
  color: #ff9500;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.legal-item__text {
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

/* Help Page Specific Styles */
.help-hero {
  padding: 3rem 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
}

.help-hero__title {
  font-size: 3rem;
  color: #ffffff;
  margin: 0;
}

.help-section {
  padding: 4rem 0;
}

.help-content__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}

.help-content__text {
  text-align: center;
  color: #cccccc;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.help-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.tip-card {
  background: rgba(255, 149, 0, 0.1);
  border: 1px solid rgba(255, 149, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
}

.tip-card__icon {
  margin-bottom: 1rem;
}

.tip-card__image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.tip-card__title {
  color: #ff9500;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.tip-card__text {
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.understanding-section {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.understanding-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.understanding-image {
  flex: 1;
  min-width: 300px;
}

.understanding__img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.understanding-checklist {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 10px;
}

.checklist-item__icon {
  background: #ff9500;
  color: #ffffff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

.checklist-item__text {
  color: #cccccc;
  margin: 0;
  font-size: 0.9rem;
}

.tools-section {
  padding: 4rem 0;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tool-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.tool-card__image {
  margin-bottom: 1.5rem;
}

.tool-card__img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
}

.tool-card__title {
  color: #ff9500;
  margin-bottom: 1rem;
}

.tool-card__text {
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.support-section {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.support-section__text {
  text-align: center;
  color: #cccccc;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.support-card {
  background: rgba(255, 149, 0, 0.1);
  border: 1px solid rgba(255, 149, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
}

.support-card__title {
  color: #ff9500;
  margin-bottom: 1rem;
}

.support-card__text {
  color: #ffffff;
  font-weight: 600;
  margin: 0;
}

.commitment-section {
  padding: 4rem 0;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.commitment-card {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.commitment-card__icon {
  background: #ff9500;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
}

.commitment-card__content {
  flex: 1;
}

.commitment-card__title {
  color: #ff9500;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.commitment-card__text {
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.contact-section {
  text-align: center;
  background: rgba(255, 149, 0, 0.1);
  border: 1px solid rgba(255, 149, 0, 0.3);
  border-radius: 20px;
  padding: 3rem;
}

.contact-section__text {
  color: #cccccc;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-btn {
  margin-bottom: 1rem;
}

.contact-section__email {
  color: #ff9500;
  font-weight: 600;
  margin: 0;
}

.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.98);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.age-modal-content {
  background: #2D006F;
  padding: 0.8rem;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
  margin: 1rem;
}

.age-modal-content h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.btn-confirm {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
}

.btn-deny {
  background: transparent;
  color: #FFAA00;
  border: 2px solid #FFAA00;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
}

.age-error {
  margin-top: 1rem;
  border-radius: 5px;
  color: white;
}

/* Cookie Banner */
.cookie-banner {
  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: 1rem 0;
  z-index: 4000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 2rem;
}

.cookie-banner__text {
  color: #cccccc;
  margin: 0;
  flex: 1;
}

.cookie-banner__actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 8px 16px;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .nav__list {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav.active .nav__list {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero__content {
    flex-direction: column;
    text-align: center;
  }

  .hero__text {
    text-align: center;
  }

  .hero__title {
    font-size: 2rem;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .responsible-gaming__content {
    flex-direction: column;
  }

  .understanding-content {
    flex-direction: column;
  }

  .footer__content {
    flex-direction: column;
  }

  .cookie-banner__content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .form__options {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    font-size: 2rem;
  }

  .section__title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.5rem;
  }

  .auth-form {
    padding: 2rem 1.5rem;
  }

  .card,
  .feature-card,
  .tool-card {
    padding: 1.5rem;
  }

  .help-hero__title {
    font-size: 2rem;
  }

  .legal-item {
    padding: 1.5rem;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .section__title {
    font-size: 3rem;
  }
}
