* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inria Serif", serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #0a1428 0%, #1e3a5f 50%, #2d5aa0 100%);
  min-height: 100vh;
}

.header {
  background: rgba(10, 20, 40, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header__logo-img {
  height: 40px;
  width: auto;
}

.header__nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.header__nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.header__nav-link:hover,
.header__nav-link--active {
  color: #ffd700;
}

.header__nav-link--active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #ffd700;
}

.header__cta-btn {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #0a1428;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: "Inria Serif", serif;
}

.header__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.main {
  margin-top: 70px;
}

.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: url("/photo/img/hero-bg.png") center/cover;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/photo/img/hero-bg.png") center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero__description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #e0e6ed;
  line-height: 1.6;
}

.hero__buttons {
  display: flex;
  gap: 20px;
}

.hero__btn {
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inria Serif", serif;
}

.hero__btn--primary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #0a1428;
}

.hero__btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffd700;
}

.hero__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.hero__image {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.adventure {
  padding: 100px 0;
  background: rgba(10, 20, 40, 0.8);
}

.adventure__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.adventure__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffd700;
}

.adventure__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #e0e6ed;
}

.adventure__features {
  list-style: none;
}

.adventure__feature {
  padding: 10px 0;
  color: #ffffff;
  position: relative;
  padding-left: 25px;
}

.adventure__feature::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-size: 1.2rem;
}

.adventure__games {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.adventure__game-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.adventure__game-img:hover {
  transform: scale(1.05);
}

.features {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5aa0 100%);
}

.features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.features__title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffd700;
}

.features__subtitle {
  font-size: 1.2rem;
  margin-bottom: 60px;
  color: #e0e6ed;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.features__item {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.features__icon {
  margin-bottom: 20px;
}

.features__item-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffd700;
}

.features__item-description {
  color: #e0e6ed;
  line-height: 1.6;
}

.games-showcase {
  padding: 100px 0;
  background: rgba(10, 20, 40, 0.9);
}

.games-showcase__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.games-showcase__title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffd700;
}

.games-showcase__subtitle {
  font-size: 1.2rem;
  margin-bottom: 60px;
  color: #e0e6ed;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.games-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.games-showcase__game {
  width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.games-showcase__game:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.join-steps {
  padding: 100px 0;
  background: linear-gradient(135deg, #2d5aa0 0%, #1e3a5f 100%);
}

.join-steps__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.join-steps__title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffd700;
}

.join-steps__subtitle {
  font-size: 1.2rem;
  margin-bottom: 60px;
  color: #e0e6ed;
}

.join-steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.join-steps__step {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
}

.join-steps__number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #0a1428;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.join-steps__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffd700;
  margin-top: 10px;
}

.join-steps__step-description {
  color: #e0e6ed;
  line-height: 1.6;
}

.join-steps__cta {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #0a1428;
  border: none;
  padding: 18px 40px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inria Serif", serif;
}

.join-steps__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.footer {
  background: rgba(10, 20, 40, 0.95);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer__brand {
  max-width: 400px;
}

.footer__logo {
  height: 30px;
  width: auto;
  margin-bottom: 20px;
}

.footer__description {
  color: #e0e6ed;
  line-height: 1.6;
}

.footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer__column-title {
  color: #ffd700;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer__link-list {
  list-style: none;
}

.footer__link-list li {
  margin-bottom: 10px;
}

.footer__link {
  color: #e0e6ed;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__link:hover,
.footer__link--active {
  color: #ffd700;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer__copyright {
  color: #e0e6ed;
  font-size: 0.9rem;
}

.footer__certifications {
  display: flex;
  gap: 15px;
}

.footer__cert {
  height: 40px;
  width: auto;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 20, 40, 0.95);
  backdrop-filter: blur(10px);
  border-top: 2px solid #ffd700;
  padding: 20px;
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookie-banner__text {
  color: #e0e6ed;
  flex: 1;
}

.cookie-banner__actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cookie-banner__btn {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inria Serif", serif;
}

.cookie-banner__btn--accept {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #0a1428;
}

.cookie-banner__btn--decline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffd700;
}

.cookie-banner__btn:hover {
  transform: translateY(-2px);
}

.cookie-banner__link {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
}

.cookie-banner__link:hover {
  text-decoration: underline;
}

.legal-page {
  padding: 100px 0;
  background: rgba(10, 20, 40, 0.8);
}

.legal-page__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-page__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ffd700;
  text-align: center;
}

.legal-page__content {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.legal-page__updated {
  color: #e0e6ed;
  font-style: italic;
  margin-bottom: 30px;
  text-align: center;
}

.legal-page__section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffd700;
  margin: 30px 0 15px 0;
}

.legal-page__text {
  color: #e0e6ed;
  line-height: 1.7;
  margin-bottom: 20px;
}

.legal-page__list {
  color: #e0e6ed;
  margin: 15px 0;
  padding-left: 20px;
}

.legal-page__list-item {
  margin-bottom: 10px;
  line-height: 1.6;
}

.success-page {
  padding: 150px 0;
  background: linear-gradient(135deg, #0a1428 0%, #1e3a5f 50%, #2d5aa0 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.success-page__container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.success-page__content {
  background: rgba(255, 255, 255, 0.1);
  padding: 60px 40px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.success-page__icon {
  margin-bottom: 30px;
}

.success-page__icon-img {
  width: 80px;
  height: 80px;
}

.success-page__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffd700;
}

.success-page__description {
  font-size: 1.2rem;
  color: #e0e6ed;
  margin-bottom: 40px;
  line-height: 1.6;
}

.success-page__btn {
  display: inline-block;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #0a1428;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 700;
  transition: all 0.3s ease;
  font-family: "Inria Serif", serif;
}

.success-page__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.contact-page {
  padding: 100px 0;
  background: rgba(10, 20, 40, 0.8);
}

.contact-page__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-page__header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-page__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffd700;
}

.contact-page__subtitle {
  font-size: 1.2rem;
  color: #e0e6ed;
  max-width: 600px;
  margin: 0 auto;
}

.contact-page__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-form__group {
  margin-bottom: 25px;
}

.contact-form__label {
  display: block;
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: "Inria Serif", serif;
  transition: border-color 0.3s ease;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #ffd700;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__submit {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #0a1428;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inria Serif", serif;
  width: 100%;
}

.contact-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin-bottom: 30px;
}

.contact-info__title {
  color: #ffd700;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-info__icon img {
  width: 24px;
  height: 24px;
}

.contact-info__label {
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-info__value {
  color: #e0e6ed;
}

.contact-faq {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-faq__title {
  color: #ffd700;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.contact-faq__item {
  margin-bottom: 20px;
}

.contact-faq__question {
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-faq__answer {
  color: #e0e6ed;
  line-height: 1.6;
}

.bonuses-hero {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #0a1428 0%, #1e3a5f 50%, #2d5aa0 100%);
  text-align: center;
}

.bonuses-hero__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.bonuses-hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bonuses-hero__subtitle {
  font-size: 1.3rem;
  color: #e0e6ed;
}

.bonuses-grid {
  padding: 80px 0;
  background: rgba(10, 20, 40, 0.8);
}

.bonuses-grid__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.bonus-card__icon {
  margin-bottom: 20px;
}

.bonus-card__icon img {
  width: 80px;
  height: 80px;
}

.bonus-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 10px;
}

.bonus-card__amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.bonus-card__description {
  color: #e0e6ed;
  line-height: 1.6;
  margin-bottom: 25px;
}

.bonus-card__btn {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #0a1428;
  border: none;
  padding: 12px 25px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inria Serif", serif;
  width: 100%;
}

.bonus-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.bonus-features {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5aa0 100%);
}

.bonus-features__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.bonus-features__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #ffd700;
}

.bonus-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.bonus-feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.bonus-feature__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 15px;
}

.bonus-feature__description {
  color: #e0e6ed;
  line-height: 1.6;
}

.games-hero {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #0a1428 0%, #1e3a5f 50%, #2d5aa0 100%);
  text-align: center;
}

.games-hero__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.games-hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.games-hero__subtitle {
  font-size: 1.3rem;
  color: #e0e6ed;
  margin-bottom: 40px;
}

.games-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.games-filter__btn {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inria Serif", serif;
}

.games-filter__btn--active,
.games-filter__btn:hover {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #0a1428;
  border-color: #ffd700;
}

.games-grid {
  padding: 80px 0;
  background: rgba(10, 20, 40, 0.8);
}

.games-grid__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.game-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.game-card__image {
  position: relative;
  overflow: hidden;
}

.game-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-card__img {
  transform: scale(1.1);
}

.game-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-card__overlay {
  opacity: 1;
}

.game-card__play-btn {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #0a1428;
  border: none;
  padding: 12px 25px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inria Serif", serif;
}

.game-card__play-btn:hover {
  transform: scale(1.1);
}

.game-card__content {
  padding: 25px;
}

.game-card__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 10px;
}

.game-card__description {
  color: #e0e6ed;
  margin-bottom: 15px;
  line-height: 1.5;
}

.game-card__rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game-card__stars {
  color: #ffd700;
  font-size: 1.1rem;
}

.game-card__players {
  color: #e0e6ed;
  font-size: 0.9rem;
}

.games-features {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5aa0 100%);
}

.games-features__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.games-features__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #ffd700;
}

.games-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.games-feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.games-feature__icon {
  margin-bottom: 20px;
}

.games-feature__icon img {
  width: 60px;
  height: 60px;
}

.games-feature__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 15px;
}

.games-feature__description {
  color: #e0e6ed;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .header__container {
    padding: 0 15px;
  }

  .header__nav {
    display: none;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__buttons {
    justify-content: center;
  }

  .adventure__container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .games-showcase__grid {
    grid-template-columns: 1fr;
  }

  .join-steps__grid {
    grid-template-columns: 1fr;
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer__links {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cookie-banner__content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .contact-page__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bonuses-grid__container {
    grid-template-columns: 1fr;
  }

  .games-grid__container {
    grid-template-columns: 1fr;
  }

  .games-filter {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .bonuses-hero__title,
  .games-hero__title {
    font-size: 2.5rem;
  }

  .legal-page__title {
    font-size: 2.2rem;
  }

  .success-page__title {
    font-size: 2rem;
  }

  .contact-page__title {
    font-size: 2.2rem;
  }

  .hero__btn,
  .join-steps__cta,
  .success-page__btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 10px;
  }
}

.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
}
