/* Rogan Font */
@font-face {
  font-family: 'Rogan';
  src: url(/wp-content/themes/trezunor/assets/fonts/Rogan-Regular.woff2) format('woff2'),
       url(/wp-content/themes/trezunor/assets/fonts/Rogan-Regular.woff) format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Rogan';
  src: url(/wp-content/themes/trezunor/assets/fonts/Rogan-Bold.woff2) format('woff2'),
       url(/wp-content/themes/trezunor/assets/fonts/Rogan-Bold.woff) format('woff');
  font-weight: 700;
  font-style: normal;
}

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

/* Variables */
:root {
  --primary-color: #FF4500;
  --primary-hover: #FF5722;
  --text-color: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.85);
  --bg-darkest: #000000;
  --bg-darker: #0d0d0d;
  --bg-dark: #1a1a1a;
  --bg-card: rgba(20, 20, 20, 0.9);
  --border-color: #FF4500;
  --yellow: #FFB84D;
  --transition: all 0.3s ease;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rogan', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-darkest);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  background: url(/wp-content/themes/trezunor/assets/images/bg.png);
  background-size: cover;
}

.page-wrapper {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1, h2, h3 {
  line-height: 1.1;
  font-weight: 700;
}

.highlight {
  color: var(--primary-color);
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #FF6B3D;

font-size: 72px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 72px */
text-transform: uppercase;
}

.subtitle {
  display: block;
  color: var(--text-color);
  font-weight: 700;
  color: #FFF;

font-size: 64px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 64px */
text-transform: capitalize;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: capitalize;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
  border-radius: 12px;
background: linear-gradient(90deg, #E73E01 0%, #FF6B3D 100%);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 69, 0, 0.3);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--text-color);
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid var(--primary-color);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 69, 0, 0.1);

  background: rgba(0, 0, 0, 0.60);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
}

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

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}

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

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.burger-menu span {
  width: 25px;
  height: 2px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 500px;
  height: 100vh;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.98) 0%, rgba(26, 10, 0, 0.98) 100%);
  backdrop-filter: blur(20px);
  z-index: 2000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(255, 69, 0, 0.15);
  background: rgba(0, 0, 0, 0.60);
}

.close-menu {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 60px 30px 40px;
  gap: 40px;
  justify-content: center;
  align-items: center;
  background: url(/wp-content/themes/trezunor/assets/images/mobmenu.png);
}

.mobile-nav a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: var(--transition);
}

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

.mobile-nav .btn-primary {
  width: 100%;
  max-width: 300px;
  margin-top: 20px;
}

.mobile-menu-indicator {
  width: 134px;
  height: 5px;
  background-color: var(--text-color);
  border-radius: 100px;
  margin: 0 auto 30px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2d0d00 0%, #0d0d0d 50%, #1a0600 100%);
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background-image: 
      repeating-linear-gradient(
          90deg,
          transparent,
          transparent 60px,
          rgba(255, 69, 0, 0.04) 60px,
          rgba(255, 69, 0, 0.04) 61px
      ),
      repeating-linear-gradient(
          30deg,
          transparent,
          transparent 60px,
          rgba(255, 69, 0, 0.04) 60px,
          rgba(255, 69, 0, 0.04) 61px
      ),
      repeating-linear-gradient(
          -30deg,
          transparent,
          transparent 60px,
          rgba(255, 69, 0, 0.04) 60px,
          rgba(255, 69, 0, 0.04) 61px
      );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
 
  max-width: 1200px;
  width: 100%;
}



.hero h1 {
  margin-bottom: 25px;
}

.hero .highlight {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 10px;
  color: #FF6B3D;

font-size: 72px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 72px */
text-transform: uppercase;
}

.hero .subtitle {
  font-size: 56px;
  line-height: 1.05;
  color: #FFF;

font-size: 64px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 64px */
text-transform: capitalize;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
  color: var(--text-muted);
  max-width: 520px;

  color: #FFF;

font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 140%; /* 33.6px */
}

.hero-image {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 650px;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: auto;
}

/* Who We Are Section */
.who-we-are {
  padding: 100px 0;
  background: linear-gradient(180deg, #0d0d0d 0%, #000000 100%);
  position: relative;
  background: transparent;
}

.who-we-are h2 {
  margin-bottom: 25px;
}

.who-we-are .highlight {
  font-size: 36px;
  margin-bottom: 8px;
  color: #FF6B3D;

font-size: 72px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 72px */
text-transform: uppercase;
}

.who-we-are .subtitle {
  font-size: 48px;
  color: #FFF;

font-size: 64px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 64px */
text-transform: capitalize;
}

.section-intro {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--text-muted);
}

.section-subtext {
  font-size: 18px;
  margin-bottom: 18px;
  line-height: 1.7;
}

.features-list {
  list-style: none;
  margin-bottom: 25px;
}

.features-list li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  color: var(--text-muted);
}

.features-list li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--text-color);
  font-size: 24px;
  line-height: 1.3;
}

.features-list strong {
  color: var(--text-color);
  font-weight: 700;
}

.section-footer {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* How We Review Section */
.how-we-review {
  padding: 100px 0;
  background: linear-gradient(180deg, #000000 0%, #0d0d0d 100%);
  background: transparent;
}

.how-we-review h2 {
  margin-bottom: 25px;
}

.how-we-review .highlight {
  font-size: 36px;
  margin-bottom: 8px;
  color: #FF6B3D;

font-size: 72px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 72px */
text-transform: uppercase;
}

.how-we-review .subtitle {
  font-size: 48px;
  color: #FFF;

font-size: 64px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 64px */
text-transform: capitalize;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.review-card {
  background-color: rgba(15, 10, 5, 0.7);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 28px;
  transition: var(--transition);
  
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(255, 69, 0, 0.2);
  background-color: rgba(20, 12, 6, 0.8);
}

.review-card h3 {
  color: var(--yellow);
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 700;
  color: #FFC107;
font-size: 28px;
font-style: normal;
font-weight: 700;
line-height: 140%; /* 44.8px */
}

.review-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Coming Soon Section */
.coming-soon {
  padding: 100px 0;
  background: linear-gradient(180deg, #0d0d0d 0%, #1a0600 100%);
  background: transparent;
}

.coming-soon h2 {
  margin-bottom: 25px;
}

.coming-soon .highlight {
  font-size: 36px;
  margin-bottom: 8px;
  color: #FF6B3D;

font-size: 72px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 72px */
text-transform: uppercase;
}

.coming-soon .subtitle {
  font-size: 48px;
  color: #FFF;

font-size: 64px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 64px */
text-transform: capitalize;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px 0 60px;
}

.game-card {
  background-color: rgba(15, 10, 5, 0.7);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(255, 69, 0, 0.2);
}

.game-image {
  width: 100%;
  
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 24px;
}

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

.game-card h3 {
  font-size: 24px;
  padding: 24px 24px 12px;
  font-weight: 700;
  color: var(--yellow);
}

.game-card p {
  font-size: 16px;
  padding: 0 24px 24px;
  color: var(--text-muted);
  line-height: 1.5;
}

.coming-soon .btn-primary {
  display: block;
  max-width: 280px;
  margin: 0 auto;
}

/* Player Voices Section */
.player-voices {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a0600 0%, #000000 100%);
  background: transparent;
}

.player-voices h2 {
  margin-bottom: 50px;
}

.player-voices .highlight {
  font-size: 36px;
  margin-bottom: 8px;
  color: #FF6B3D;
font-size: 72px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 72px */
text-transform: uppercase;
}

.player-voices .subtitle {
  font-size: 48px;
  color: #FFF;

font-size: 64px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 64px */
text-transform: capitalize;
}

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

.testimonial-card {
  background-color: rgba(15, 10, 5, 0.7);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(255, 69, 0, 0.2);
  background-color: rgba(20, 12, 6, 0.8);
}

.testimonial-header {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.testimonial-header img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info {
  flex: 1;
}

.stars {
  color: var(--yellow);
  font-size: 15px;
  margin-bottom: 6px;
  letter-spacing: 2px;
}

.testimonial-info .name {
  font-size: 14px;
  color: var(--text-color);
  margin: 0;
  line-height: 1.4;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
}

.testimonial-author {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
}

/* Why Choose Section */
.why-choose {
  padding: 100px 0;
  background: linear-gradient(180deg, #000000 0%, #1a0600 100%);
  background: transparent;
}

.why-choose h2 {
  margin-bottom: 25px;
}

.why-choose .highlight {
  font-size: 36px;
  margin-bottom: 8px;
  color: #FF6B3D;

font-size: 72px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 72px */
text-transform: uppercase;
}

.why-choose .subtitle {
  font-size: 48px;
  color: #FFF;

font-size: 64px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 64px */
text-transform: capitalize;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.advantage-card {
  background-color: rgba(15, 10, 5, 0.7);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 28px;
  transition: var(--transition);
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(255, 69, 0, 0.2);
  background-color: rgba(20, 12, 6, 0.8);
}

.advantage-card h3 {
  color: var(--yellow);
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 700;
}

.advantage-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #1a0600 0%, #000000 100%);
  border-top: 1px solid rgba(255, 69, 0, 0.15);
  padding: 50px 0 30px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.link_media{
  display: flex;
  gap: 20px;
}
.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  transition: var(--transition);
  font-weight: 500;
}

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

.footer-contact {
  text-align: center;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-contact span,
.footer-contact a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

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

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.footer-social a:hover img {
  filter: brightness(0) invert(1) sepia(1) saturate(10000%) hue-rotate(0deg);
}

.footer-copyright {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 15px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  width: calc(100% - 40px);
  background-color: #1a1a1a;
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 32px;
  z-index: 3000;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.cookie-popup h3 {
  font-size: 28px;
  margin-bottom: 18px;
  color: var(--text-color);
}

.cookie-popup p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.cookie-buttons button {
  flex: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero .highlight {
      font-size: 42px;
  }

  .hero .subtitle {
      font-size: 48px;
  }

  .hero-image {
      width: 45%;
  }

  .review-grid,
  .games-grid,
  .testimonials-grid,
  .advantages-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
  }
}

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

  .burger-menu {
      display: flex;
  }

  .hero {
      padding-top: 100px;
      min-height: auto;
      padding-bottom: 60px;
  }

  .hero .highlight {
      font-size: 32px;
  }

  .hero .subtitle {
      font-size: 38px;
  }

  .hero-description {
      font-size: 16px;
      margin-bottom: 30px;
  }

  .hero-image {
      position: relative;
      width: 100%;
      margin-top: 40px;
      transform: none;
      top: auto;
      right: auto;
  }

  .hero-pattern {
      display: none;
  }

  h2 .highlight {
      font-size: 28px !important;
  }

  h2 .subtitle {
      font-size: 36px !important;
  }

  .section-intro {
      font-size: 16px;
  }

  .review-grid,
  .games-grid,
  .testimonials-grid,
  .advantages-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .who-we-are,
  .how-we-review,
  .coming-soon,
  .player-voices,
  .why-choose {
      padding: 70px 0;
  }

  .footer {
      padding: 40px 0 25px;
  }

  .footer-links {
      flex-direction: column;
      align-items: center;
      gap: 20px;
  }

  .footer-contact {
      flex-direction: column;
      gap: 10px;
      align-items: center;
  }
 

  .cookie-popup {
      bottom: 20px;
      padding: 25px;
  }

  .cookie-popup h3 {
      font-size: 22px;
  }

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

@media (max-width: 480px) {
  .container {
      padding: 0 15px;
  }

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

  .hero .subtitle {
      font-size: 32px;
  }

  h2 .highlight {
      font-size: 24px !important;
  }

  h2 .subtitle {
      font-size: 30px !important;
  }

  .btn-primary,
  .btn-secondary {
      padding: 16px 32px;
      font-size: 15px;
  }

  .review-card,
  .advantage-card {
      padding: 25px 20px;
  }

  .testimonial-card {
      padding: 22px;
  }

  .game-card h3,
  .review-card h3,
  .advantage-card h3 {
      font-size: 20px;
  }
}



.all-games {
  padding: 100px 0 120px;
  background-color: transparent;
  position: relative;
  overflow: hidden;

}



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

.all-games h2 {
  margin-bottom: 25px;
}

.all-games .highlight {
  color: #FF4500;
  font-size: 36px;
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: #FF6B3D;
font-family: Rogan;
font-size: 72px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 72px */
text-transform: uppercase;
}

.all-games .subtitle {
  color: #ffffff;
  font-size: 48px;
  display: block;
  font-weight: 700;
  color: #FFF;
font-family: Rogan;
font-size: 64px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 64px */
text-transform: capitalize;
}

.all-games .section-intro {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 100%;
  color: #FFF;
font-family: Rogan;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 140%; /* 33.6px */
}

/* Games Catalog Grid */
.games-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.game-catalog-card {
  background-color: rgba(15, 10, 5, 0.7);
  border: 2px solid #FF4500;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.game-catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(255, 69, 0, 0.3);
  background-color: rgba(20, 12, 6, 0.85);
  border-color: #FF5722;
}

.game-catalog-image {
  width: 100%;
  
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
}

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

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

.game-catalog-card h3 {
  font-size: 24px;
  padding: 24px;
  font-weight: 700;
  color: #FFB84D;
  margin: 0;
}

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

  .game-catalog-image {
      height: 240px;
  }
}

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

  .all-games .highlight {
      font-size: 28px;
  }

  .all-games .subtitle {
      font-size: 36px;
  }

  .all-games .section-intro {
      font-size: 16px;
      margin-bottom: 40px;
  }

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

  .game-catalog-image {
      height: 220px;
  }

  .game-catalog-card h3 {
      font-size: 22px;
      padding: 20px;
  }

  .all-games-pattern {
      width: 100%;
      opacity: 0.5;
  }
}

@media (max-width: 480px) {
  .all-games .highlight {
      font-size: 24px;
  }

  .all-games .subtitle {
      font-size: 30px;
  }

  .game-catalog-image {
      height: 200px;
  }

  .game-catalog-card h3 {
      font-size: 20px;
      padding: 18px;
  }
}



.game-details {
  padding: 100px 0;
  background-color: transparent;
  position: relative;
  overflow: hidden;
  
}

.game-details-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2d0d00 0%, #1a0600 50%, #0d0d0d 100%);
  z-index: 0;
}

.game-details-pattern {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background-image: 
      repeating-linear-gradient(
          90deg,
          transparent,
          transparent 60px,
          rgba(255, 69, 0, 0.04) 60px,
          rgba(255, 69, 0, 0.04) 61px
      ),
      repeating-linear-gradient(
          30deg,
          transparent,
          transparent 60px,
          rgba(255, 69, 0, 0.04) 60px,
          rgba(255, 69, 0, 0.04) 61px
      ),
      repeating-linear-gradient(
          -30deg,
          transparent,
          transparent 60px,
          rgba(255, 69, 0, 0.04) 60px,
          rgba(255, 69, 0, 0.04) 61px
      );
  z-index: 1;
}

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

.game-details-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.game-details-text {
  flex: 1;
  max-width: 600px;
}

.game-details-text h2 {
  margin-bottom: 25px;
}

.game-details-text .highlight {
  color: #FF4500;
  font-size: 36px;
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;

  color: #FF6B3D;
font-family: Rogan;
font-size: 72px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 72px */
text-transform: uppercase;
}

.game-details-text .subtitle {
  color: #ffffff;
  font-size: 56px;
  display: block;
  font-weight: 700;
  line-height: 1.1;
  color: #FFF;
font-family: Rogan;
font-size: 64px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 64px */
text-transform: capitalize;
}

.game-description {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);

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

.game-details-card {
  flex-shrink: 0;
  width: 420px;
  background-color: rgba(15, 10, 5, 0.7);
  border: 2px solid #FF4500;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;

  border-radius: 12px;
border: 1px solid #E73E01;
background: rgba(0, 0, 0, 0.30);
}

.game-preview-image {
  width: 100%;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.4);
}

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

.btn-play {
  display: block;
  width: 100%;
  background-color: #FF4500;
  color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  transition: all 0.3s ease;

  border-radius: 12px;
background: linear-gradient(90deg, #E73E01 0%, #FF6B3D 100%);
}

.btn-play:hover {
  background-color: #FF5722;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 69, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .game-details-content {
      gap: 50px;
      flex-direction: column-reverse;
  }

  .game-details-card {
      width: 360px;
  }

  .game-preview-image {
      height: 320px;
  }

  .game-details-text .subtitle {
      font-size: 48px;
  }
}

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

  .game-details-content {
    margin-top: 60px;
      flex-direction: column;
      gap: 40px;
      align-items: stretch;
      flex-direction: column-reverse;
  }

  .game-details-text {
      max-width: 100%;
  }

  .game-details-text .highlight {
      font-size: 28px;
  }

  .game-details-text .subtitle {
      font-size: 40px;
  }

  .game-description {
      font-size: 16px;
  }

  .game-details-card {
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
  }

  .game-preview-image {
      height: 360px;
  }

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

  .game-details-pattern {
      width: 100%;
      opacity: 0.5;
  }
}

@media (max-width: 480px) {
  .game-details-text .highlight {
      font-size: 24px;
  }

  .game-details-text .subtitle {
      font-size: 32px;
  }

  .game-description {
      font-size: 15px;
      line-height: 1.7;
  }

  .game-details-card {
      padding: 16px;
  }

  .game-preview-image {
      height: 300px;
  }

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