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

:root {
  --primary-red: #FF2D55;
  --dark-bg: #1a1a1a;
  --darker-bg: #0a0a0a;
  --text-white: #ffffff;
  --text-gray: #e0e0e0;
  --border-red: rgba(255, 45, 85, 0.3);
}

body {
  font-family: 'Big Shoulders Display', cursive;
  background-color: var(--darker-bg);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;

}

h1, h2, h3 {
  font-family: 'Karantina', cursive;
  font-weight: 700;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-popup.show {
  opacity: 1;
  visibility: visible;
}

.cookie-content {
  background-color: #0f0f0f;
  padding: 80px 60px;
  max-width: 1000px;
  width: 90%;
}

.cookie-title {
  font-size: 90px;
  color: var(--text-white);
  text-shadow: 4px 4px 0px var(--primary-red);
  margin-bottom: 40px;
  letter-spacing: 3px;
  line-height: 0.9;
}

.cookie-text {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--text-white);
}

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

.cookie-btn {
  padding: 18px 50px;
  font-family: 'Karantina', cursive;
  font-size: 28px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid var(--primary-red);
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.accept-btn {
  background-color: var(--primary-red);
  color: var(--text-white);
}

.accept-btn:hover {
  background-color: #d91e45;
}

.learn-btn {
  background-color: transparent;
  color: var(--text-white);
}

.learn-btn:hover {
  background-color: var(--primary-red);
}

/* Header */
.header {

  padding: 25px 0;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: transparent;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Karantina', cursive;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.nav {
  display: flex;
  gap: 50px;
}

.nav a {
  font-family: 'Karantina', cursive;
  font-size: 26px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  letter-spacing: 1px;
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  width: 30px;
  height: 3px;
  background-color: var(--text-white);
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.98);
  z-index: 9999;
  transition: right 0.4s ease;
  backdrop-filter: blur(10px);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 50px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 50px;
  height: 50px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 100px 40px;
  height: calc(100% - 90px);
  background: url(/wp-content/themes/omberlynx/assets/images/menu.png);
  background-size: cover;
}

.mobile-nav a {
  font-family: 'Karantina', cursive;
  font-size: 42px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  letter-spacing: 2px;
}

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

.mobile-nav .cta-btn {
  margin-top: 30px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url(/wp-content/themes/omberlynx/assets/images/bg1.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}



.hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-left: 40px;
}

/* .hero-title {
  font-size: 80px;
  line-height: 0.95;
  margin-bottom: 40px;
  color: var(--text-white);
  text-shadow: 4px 4px 0px var(--primary-red);
  letter-spacing: 2px;



} */
.hero-title {
  text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #E9213D;
  font-family: Karantina;
  font-size: 120px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 120px */
  text-transform: uppercase;

  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.50) 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;


}

.hero-text {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 50px;
  color: var(--text-white);
  max-width: 850px;

  color: #FFF;
font-family: "Big Shoulders Display";
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 140%; /* 33.6px */
}

.cta-btn {
  display: inline-block;
  padding: 20px 60px;
  background-color: var(--primary-red);
  color: var(--text-white);
  font-family: 'Karantina', cursive;
  font-size: 28px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 1px;

  display: flex;
/* height: 60px; */
padding: 16px 32px;
justify-content: center;
align-items: center;
gap: 10px;
color: #D9D9D9;
font-family: "Big Shoulders Display";
font-size: 24px;
font-style: normal;
font-weight: 900;
line-height: 140%; /* 33.6px */
text-transform: uppercase;
display: inline-block;
}

.cta-btn:hover {
  background-color: #d91e45;
  transform: translateY(-2px);
}

/* About Section */
.about {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url(/wp-content/themes/omberlynx/assets/images/bg2.png);
  background-size: cover;
  background-position: center;
}



.about .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.about-content {
  max-width: 900px;
}

.section-label {
  font-family: 'Karantina', cursive;
  font-size: 24px;
  color: var(--primary-red);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.section-title {
  text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #E9213D;
  font-family: Karantina;
  font-size: 120px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 120px */
  text-transform: uppercase;

  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.50) 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

  
}

.about-text {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-white);
}

/* Review Process Section */
.review-process {
  padding: 120px 0;
  background-color: var(--darker-bg);
}

.review-process .section-title {
  text-align: left;
}

.process-intro {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 80px;
  color: var(--text-white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.process-card {
  background-color: rgba(26, 26, 26, 0.5);
  border: 2px solid var(--border-red);
  padding: 40px;
  position: relative;

  border: 1px solid rgba(255, 255, 255, 0.30);
background: linear-gradient(279deg, rgba(232, 74, 102, 0.18) 2.41%, rgba(232, 74, 102, 0.00) 100%);
}

.process-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-left: 2px solid var(--primary-red);
  border-bottom: 2px solid var(--primary-red);
}

.process-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 5px;
  border-right: 2px solid var(--primary-red);
  border-top: 2px solid var(--primary-red);
}

.process-card-title {
  font-size: 32px;
  margin-bottom: 25px;
  color: var(--text-white);
  letter-spacing: 1px;
}

.process-card-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-white);
}

/* Advantages Section */
.advantages {
  padding: 120px 0;
  position: relative;
  background-image: url(/wp-content/themes/omberlynx/assets/images/bg3.png);
  background-size: cover;
  background-position: center;
}



.advantages .container {
  position: relative;
  z-index: 2;
}

.advantages-intro {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 80px;
  color: var(--text-white);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
}

.advantage-card {
  background-color: transparent;
  border: 2px solid var(--border-red);
  padding: 40px;
  position: relative;

  border: 1px solid rgba(255, 255, 255, 0.30);
background: rgba(14, 16, 21, 0.50);
backdrop-filter: blur(2px);
}

.advantage-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-left: 2px solid var(--primary-red);
  border-bottom: 2px solid var(--primary-red);
}

.advantage-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 5px;
  border-right: 2px solid var(--primary-red);
  border-top: 2px solid var(--primary-red);
}

.advantage-title {
  font-size: 32px;
  margin-bottom: 25px;
  color: var(--text-white);
  letter-spacing: 1px;
}

.advantage-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-white);
}

/* Game Categories Section */
.game-categories {
  padding: 120px 0;
  background-color: var(--darker-bg);
}

.categories-intro {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 80px;
  color: var(--text-white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.categories-grid .category-card:nth-child(4),
.categories-grid .category-card:nth-child(5) {
  grid-column: span 1;
}

.category-card {
  background-color: transparent;
}

.category-title {
  font-size: 36px;
  background: #E84A4A;
  padding: 20px 25px;
  margin-bottom: 0;
  color: var(--text-white);
  letter-spacing: 1px;
}

.category-content {
  background-color: #1a1a1a;
  border: 2px solid var(--border-red);
  border-top: none;
  position: relative;
}

.category-content::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-left: 2px solid var(--primary-red);
  border-bottom: 2px solid var(--primary-red);
}

.category-content::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 5px;
  height: 5px;
  border-right: 2px solid var(--primary-red);
  border-bottom: 2px solid var(--primary-red);
}

.category-text {
  font-size: 18px;
  line-height: 1.6;
  padding: 30px 25px;
  color: var(--text-white);

  border-left: 2px solid #E84A4A;
background: linear-gradient(279deg, rgba(232, 74, 102, 0.18) 2.41%, rgba(232, 74, 102, 0.00) 100%);
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  background-color: var(--darker-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(279deg, rgba(232, 74, 102, 0.18) 2.41%, rgba(232, 74, 102, 0.00) 100%);
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.footer-links a {
  font-family: 'Karantina', cursive;
  font-size: 24px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  letter-spacing: 1px;
}

.footer-links a:hover {
  color: var(--primary-red);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-contact p {
  font-size: 18px;
  color: var(--text-white);
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 25px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  color: var(--primary-red);
}

.footer-social svg {
  width: 100%;
  height: 100%;
}

.footer-bottom {
  text-align: center;
}

.footer-copyright {
  font-size: 16px;
  color: var(--text-white);
}

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

  .hero-title {
      font-size: 70px;
  }

  .section-title {
      font-size: 60px;
  }
}

@media (max-width: 1024px) {
  .process-grid,
  .advantages-grid {
      grid-template-columns: 1fr;
  }

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

  .hero .container {
      margin-left: 30px;
  }
}

@media (max-width: 768px) {
  .nav {
      display: none;
  }

  .mobile-menu-btn {
      display: flex;
  }

  .container {
      padding: 0 20px;
  }

  .hero {
      min-height: auto;
      padding: 100px 0;
  }

  .hero .container {
      margin-left: 0;
  }

  .hero-title {
      font-size: 50px;
  }

  .section-title {
      font-size: 45px;
  }

  .hero-text,
  .about-text,
  .process-intro,
  .advantages-intro,
  .categories-intro {
      font-size: 18px;
  }

  .cookie-title {
      font-size: 60px;
  }

  .cookie-content {
      padding: 50px 30px;
  }

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

  .cookie-btn {
      width: 100%;
  }

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

  .footer-links {
      flex-direction: column;
      gap: 30px;
      text-align: center;
  }

  .footer-contact {
      flex-direction: column;
      gap: 20px;
  }

  .about {
      min-height: auto;
      padding: 100px 0;
  }

  .review-process,
  .advantages,
  .game-categories {
      padding: 80px 0;
  }

  .process-grid,
  .advantages-grid {
      gap: 30px;
  }

  .process-card,
  .advantage-card {
      padding: 30px;
  }

  .categories-grid {
      gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
      font-size: 40px;
  }

  .section-title {
      font-size: 36px;
  }

  .hero-text,
  .about-text,
  .process-intro,
  .advantages-intro,
  .categories-intro {
      font-size: 16px;
  }

  .cta-btn {
      font-size: 24px;
      padding: 16px 40px;
  }

  .process-card-title,
  .advantage-title {
      font-size: 26px;
  }

  .category-title {
      font-size: 30px;
      padding: 16px 20px;
  }

  .cookie-title {
      font-size: 45px;
  }

  .cookie-text {
      font-size: 16px;
  }

  .logo {
      font-size: 26px;
  }

  .logo img {
      width: 32px;
  }

  .mobile-nav a {
      font-size: 36px;
  }

  .footer-links a {
      font-size: 20px;
  }

  .footer-contact p {
      font-size: 16px;
  }
}


.all-games {
  padding: 120px 0;
  background-color: #1a1a1a;
  background: linear-gradient(180deg, rgba(232, 74, 102, 0.18) 36.36%, rgba(232, 74, 102, 0.00) 100%);
}

.games-intro {
  margin-bottom: 80px;
}

.games-intro p {
  font-size: 20px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 20px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.game-card {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 45, 85, 0.3);
  display: block;
  transition: transform 0.3s ease, border-color 0.3s ease;
  padding: 24px;
}

.game-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-left: 2px solid #FF2D55;
  border-bottom: 2px solid #FF2D55;
  z-index: 2;
}

.game-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 5px;
  border-right: 2px solid #FF2D55;
  border-top: 2px solid #FF2D55;
  z-index: 2;
}

.game-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.game-card-small {
  grid-column: span 1;
  grid-row: span 1;
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: #FF2D55;
}

.game-card:hover img {
  transform: scale(1.05);
}

.game-card:hover .game-overlay {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .games-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .game-card-large {
      grid-column: span 2;
      grid-row: span 2;
  }

  .game-card-small {
      grid-column: span 1;
      grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .all-games {
      padding: 80px 0;
  }

  .games-intro p {
      font-size: 18px;
  }

  .games-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .game-card-large,
  .game-card-small {
      grid-column: span 1;
      grid-row: span 1;
  }

  .game-card img {
      height: 250px;
  }
}

@media (max-width: 480px) {
  .games-intro p {
      font-size: 16px;
  }
}


.game-detail {
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(232, 74, 102, 0.18) 36.36%, rgba(232, 74, 102, 0.00) 100%);
  position: relative;
}



.game-detail .container {
  position: relative;
  z-index: 2;
}

.game-detail-top {
  display: grid;
  grid-template-columns: 540px 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.game-detail-card {
  border: 2px solid rgba(255, 45, 85, 0.3);
  position: relative;
  padding: 24px;
}

.game-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-left: 2px solid #FF2D55;
  border-top: 2px solid #FF2D55;
  z-index: 2;
}

.game-detail-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 5px;
  border-right: 2px solid #FF2D55;
  border-top: 2px solid #FF2D55;
  z-index: 2;
}

.game-detail-card img {
  width: 100%;
  height: auto;
  display: block;
}

.play-now-btn {
 
margin-top: 24px;
  display: flex;
height: 60px;
padding: 16px 32px;
justify-content: center;
align-items: center;
gap: 10px;
align-self: stretch;
background: #E9213D;
}

.play-now-btn:hover {
  background-color: #d91e45;
}

.game-detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-label {
  font-family: 'Karantina', cursive;
  font-size: 24px;
  color: #FF2D55;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 2px;
}



.game-description {
  font-family: 'Big Shoulders Display', cursive;
  font-size: 20px;
  line-height: 1.6;
  color: #ffffff;
}

.game-detail-content {
  max-width: 100%;
}

.content-heading {
  font-family: 'Karantina', cursive;
  font-size: 40px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 25px;
  margin-top: 50px;
  letter-spacing: 1px;
}

.content-heading:first-child {
  margin-top: 0;
}

.content-text {
  font-family: 'Big Shoulders Display', cursive;
  font-size: 20px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 30px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  font-family: 'Big Shoulders Display', cursive;
  font-size: 20px;
  line-height: 1.8;
  color: #ffffff;
  padding-left: 25px;
  position: relative;
  margin-bottom: 15px;
}

.features-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #FF2D55;
  font-size: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
  .game-detail-top {
      grid-template-columns: 1fr;
      gap: 50px;
  }

  .game-detail-card {
      max-width: 600px;
      margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .game-detail {
      padding: 80px 0;
  }

  .section-title {
      font-size: 50px;
  }

  .content-heading {
      font-size: 32px;
  }

  .game-description,
  .content-text,
  .features-list li {
      font-size: 18px;
  }

  .play-now-btn {
      font-size: 28px;
      padding: 20px;
  }
}

@media (max-width: 480px) {
  .section-title {
      font-size: 40px;
  }

  .content-heading {
      font-size: 28px;
  }

  .game-description,
  .content-text,
  .features-list li {
      font-size: 16px;
  }

  .play-now-btn {
      font-size: 24px;
      padding: 18px;
  }
}