.policy,
.success {
  padding-block: 80px 60px !important;
  background: #000000;

  min-height: 92vh;
}

@media (max-width: 768px) {
  .policy {
    padding-block: 60px 60px !important;
  }
}

/* .success__text {
  margin-bottom: 27px;
}

.success__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.success__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
} */

.policy__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #ffffff;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 34px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 28px;
  color: #ffffff;
}

.policy__title {
  color: #ffffff;
}

.policy__text h2 {
  text-align: left;
  font-size: 21px;
}

.policy__text ul {
  padding-left: 20px;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 22px;
}

.policy__link {
  color: #ffffff;
}

h1,
h2,
h3,
h4 {
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

.container {
  margin: 0 auto;
  max-width: 1368px !important;
  padding-inline: 20px;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #00d4ff;
  --secondary-color: #7b3ff2;
  --dark-bg: #0a0a0a;
  --text-light: #ffffff;
  --text-gray: #a0a0a0;
  --card-bg: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.1);
}

body {
  font-family: "Manrope", sans-serif;
  background-color: #000;
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

h1,
h2 {
  font-weight: 400;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
}

.cookie-popup.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: brightness(0.8);
}

.cookie-content {
  position: relative;
  background: #000;
  border: 2px solid #0066ff;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 10001;
}

.cookie-content h2 {
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: 700;
}

.cookie-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.cookie-buttons {
  display: flex;
  gap: 20px;
}

.btn-accept,
.btn-settings {
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-accept {
  background: #fff;
  color: #000;
}

.btn-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-settings {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-settings:hover {
  background: #fff;
  color: #000;
}

/* Header */
.navbar {
  position: absolute;
  margin-block: 30px;
  width: 92%;
  max-width: 1368px;
  background: #ffffff1a;
  border: 0.83px solid rgba(255, 255, 255, 0.3025);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar.fixed {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0 0 15px 15px;
  transition: all 0.3s ease;
  background: rgba(26, 26, 46, 0.9); /* затемнене тло при фіксації */
  border: none;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-light);
  font-size: 24px;
  font-weight: 700;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0 auto;
}

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.btn-contact {
  background: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
  padding: 10px 30px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: var(--text-light);
  color: var(--dark-bg);
  transform: scale(1.05);
}

.burger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
  padding: 5px;
}

.burger-menu span {
  width: 25px;
  height: 2px;
  background: var(--text-light);
  transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 130px;
  left: 0;
  width: 100%;
  background: url(/wp-content/themes/omberitho.com/img/gradient.png) center / cover no-repeat;

  backdrop-filter: blur(10px);
  transform: translateY(-150%);
  transition: transform 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  padding: 20px;
}

.mobile-menu li {
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 18px;
}

.mobile-contact {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: transparent;
  border: 2px solid var(--text-light);
  border-radius: 25px;
  color: var(--text-light);
  text-align: center;
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  background: url(/wp-content/themes/omberitho.com/img/gradient.png) center / cover no-repeat;
  position: relative;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 768px) {
  .hero-bottom {
    grid-template-columns: 1fr;
  }
}

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 30px;
  background: linear-gradient(135deg, #fff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.8;
}

.btn-primary {
  width: fit-content;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--text-light);
  color: var(--dark-bg);
  transform: translateX(10px);
}

.btn-primary::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: url(/wp-content/themes/omberitho.com/img/play-icon.png) center / contain no-repeat;
}

.btn-launch .arrow {
  font-size: 24px;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 50px rgba(0, 212, 255, 0.3));
}

@media (max-width: 768px) {
  .hero-image {
    order: -1;
  }
}

/* Shaped Section */
.shaped {
  padding: 100px 0;
  background: #000;
}

.shaped-card {
  position: relative;

  border-radius: 40px;
  padding: 60px;
  display: flex;
  gap: 60px;
  align-items: center;
}

.shaped-card::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  border-radius: 20px;
  padding: 2px; /* товщина бордера */
  background: linear-gradient(
    176.99deg,
    #77f0fd 12.81%,
    #0080ff 30.5%,
    #030000 57.96%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.shaped-image {
  flex: 0 0 400px;
}

.shaped-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.5));
}

.shaped-content {
  flex: 1;
}

.shaped h2 {
  font-size: 48px;
  margin-bottom: 40px;
}

.features {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.feature-item:nth-of-type(even) {
  align-self: flex-end;
}

.feature-item:nth-of-type(odd) {
  align-self: flex-start;
}

.feature-item {
  padding: 20px 0;
  border-left: 3px solid var(--primary-color);
  padding-left: 20px;
  max-width: 324px;
  margin-bottom: 20px;
}

.feature-item p {
  color: var(--text-gray);
  font-size: 16px;
}

/* Time Selection */
.time-selection {
  padding: 100px 0;
}

.time-selection h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 60px;
}

.time-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.time-card {
  background: #000;

  border-radius: 20px;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
}

.time-card::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  border-radius: 20px;
  padding: 2px; /* товщина бордера */
  background: linear-gradient(
    163.55deg,
    #77f0fd -7.47%,
    #0281ff 64.97%,
    #04141d 110.19%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.time-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.time-number {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(3, 0, 0, 0.05) 0%,
    #04141d 34.62%,
    #0281ff 100%
  );
  padding: 14px 16px;
  width: fit-content;
  border-radius: 50%;
}

.time-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.time-card p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 30px;
}

.card-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;

  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-arrow:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: rotate(45deg);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;

  text-align: center;
}

.cta-content {
  padding-inline: 20px;
  background: url(/wp-content/themes/omberitho.com/img/discover-bg.png) center / cover no-repeat;
  padding-block: 50px 16px;
  border-radius: 35px;
}

.cta-content h2 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  font-size: 70px;
  line-height: 1;
  margin-bottom: 20px;
  text-align: justify;
  max-width: 750px;
  margin: 0 auto;
}

.cta-highlight {
  background: linear-gradient(135deg, #00d4ff 0%, #7b3ff2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-start {
  display: inline-block;
  margin-top: 50px;
  padding: 18px 50px;
  background: linear-gradient(0deg, #030000 0%, #031522 100%);

  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-start:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

/* About Section */
.about {
  padding-block: 160px 60px;
  background: var(--dark-bg);
}

.about h2 {
  font-size: 48px;
  margin-bottom: 30px;
}

.about-intro {
  margin-bottom: 40px;
}

.about-intro p {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.games-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: 30px;
}

@media (max-width: 768px) {
  .games-content {
    grid-template-columns: 1fr;
  }
}

.btn-discover {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  margin-bottom: 60px;
  transition: all 0.3s ease;
}

.btn-discover:hover {
  background: var(--text-light);
  color: var(--dark-bg);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.game-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.game-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-features {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border-color);
}

.feature {
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
  padding-left: 15px;
}

.feature h3 {
  font-size: 24px;
  padding: 30px 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  user-select: none;
  outline: none;
}

.feature h3:hover {
  color: var(--primary-color);
}

.feature h3:focus {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 8px;
}

.feature h3::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--primary-color);
  transition: height 0.3s ease;
}

.feature.active h3::before {
  height: 60%;
}

.feature h3:hover {
  color: var(--primary-color);
}

.feature h3::after {
  content: "";
  font-size: 24px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
  color: var(--primary-color);
  font-weight: 300;
  width: 36px;
  height: 36px;
  background: url(/wp-content/themes/omberitho.com/img/faq.png) center / contain no-repeat;
}

.feature:hover h3::after {
  color: #fff;
}

.feature.active h3::after {
  background: url(/wp-content/themes/omberitho.com/img/faq-active.png) center / contain no-repeat;
}

.feature.active h3 {
  color: var(--primary-color);
}

.feature-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
}

.feature.active .feature-content {
  padding-bottom: 30px;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease,
    opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.feature-content p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.8;
  padding-right: 40px;
}

/* Contact Form */
.contact-form {
  padding: 100px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #0f1922 100%);
}

.contact-form h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 50px;
}

.contact-form form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-light);
  font-size: 16px;
  font-family: "Manrope", sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-gray);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.btn-submit {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #00d4ff 0%, #7b3ff2 100%);
  color: var(--text-light);
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

/* Footer */
.footer {
  background: #000;
  padding: 50px 0 30px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo h3 {
  font-weight: 400;
  font-size: 70px;
}

@media (max-width: 768px) {
  .footer-logo h3 {
    font-size: 60px;
  }
}

.footer-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-light);
}

.footer-contact p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  text-align: right;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  color: var(--text-gray);
  font-size: 14px;
}

/* Games Page Styles */
.games-hero {
  padding: 150px 0 100px;
  background: radial-gradient(ellipse at top, #1e3c72, #0a0a0a);
}

.games-list {
  padding: 100px 0;
}

.games-list h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 60px;
}

.games-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.game-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-card-content {
  padding: 20px;
}

.game-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.game-card p {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 15px;
}

.game-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

/* Game Detail Page */
.game-detail {
  padding: 150px 0 100px;
  background: linear-gradient(180deg, #0a0a0a 0%, #0f1922 100%);
}

.game-detail-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 40px;
  display: flex;
  gap: 40px;
  flex-direction: column;
  align-items: flex-start;
  position: relative;

  border-radius: 40px;
}

.game-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.game-bottom {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  justify-content: space-between;
  padding-inline: 50px;
  gap: 30px;
}

@media (max-width: 768px) {
  .game-top {
    grid-template-columns: 1fr;
  }

  .game-bottom {
    grid-template-columns: 1fr;
    padding-inline: 0;
  }
}

.game-detail-card::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  border-radius: 20px;
  padding: 2px; /* товщина бордера */
  background: linear-gradient(
    176.99deg,
    #77f0fd 12.81%,
    #0080ff 30.5%,
    #030000 57.96%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.game-image-wrapper {
  flex: 0 0 200px;
}

.game-image-wrapper img {
  width: 100%;
  border-radius: 20px;
}

.game-info {
  flex: 1;
}

.game-info h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.game-meta {
  margin-bottom: 30px;
}

.game-meta p {
  color: var(--text-gray);
  font-size: 16px;
  margin-bottom: 10px;
}

.game-description {
  background: rgba(0, 212, 255, 0.1);
  border-left: 3px solid var(--primary-color);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.game-description p {
  color: var(--text-light);
  line-height: 1.8;
}

.btn-play {
  display: inline-block;
  padding: 18px 50px;
  background: linear-gradient(135deg, #00d4ff 0%, #7b3ff2 100%);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-play:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
  }

  .shaped-card {
    flex-direction: column;
    padding: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .nav-menu,
  .btn-contact {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

  .time-selection h2,
  .about h2,
  .contact-form h2 {
    font-size: 32px;
  }

  .cta-content h2 {
    font-size: 48px;
  }

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .game-detail-card {
    flex-direction: column;
  }

  .game-image-wrapper {
    flex: 1;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cookie-content {
    padding: 30px 20px;
  }

  .cookie-content h2 {
    font-size: 32px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .btn-accept,
  .btn-settings {
    width: 100%;
  }

  .hero {
    padding: 150px 0 60px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .time-cards {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-content h2 {
    font-size: 36px;
  }
}
