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

body {
  font-family: 'Inter', sans-serif;
  background-color: #1a1a1a;
  color: white;
  line-height: 1.6;
}

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

/* Header */
header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #ff6b35;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}


.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  justify-content: center;
  margin: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ff6b35;
}

.games-btn {
  background: #ff6b35;
  color: #000;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  text-decoration: none;
  justify-self: end;
}

.games-btn:hover {
  background: #e55a2b;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 140px 0 0;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}

/* Background decorative circles */
.hero-bg-circles {
  position: absolute;
  left: 0%;
  width: 100%;
  max-width: 600px;
  height: 100%;
  min-height: 600px;
  top: 0%;
  z-index: 1;
  background: url(/wp-content/themes/voltyrex/assets/images/glob.png);
  background-size: cover;
}

.btn__wrapper{
  display: flex;
  justify-content: center;
}
.btn__wrapper a{
  color: #000;
}

/* Gamepad illustration in top right */
.gamepad-illustration {
  position: absolute;
  right: 8%;
  top: 25%;
  z-index: 2;
  transform: rotate(-15deg);
}

.gamepad-illustration img {
  width: 120px;
  height: auto;
  opacity: 0.9;
}

/* Categories in top right */
.categories {
  position: absolute;
  top: 120px;
  right: 20px;
  text-align: right;
  z-index: 4;
}

.categories h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  opacity: 0.8;
}

.categories p {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 2px;
}

/* Main hero content */
.hero-main {
  position: relative;
  z-index: 3;
  margin-bottom: 60px;
}

.hero-main h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 40px;
  max-width: 800px;
}

.hero-main h1 .highlight {
  color: #ff6b35;
}

.play-btn {
  background: #ff6b35;
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.play-btn:hover {
  background: #e55a2b;
  transform: translateY(-2px);
}

/* Two horizontal cards row */
.hero-cards-row {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 24px;
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
}

.card {
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
}

.game-perks-card {
  background: white;
  color: #333;
}

.game-perks-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.chart {
  display: flex;
  align-items: end;
  gap: 8px;

}

.chart-bar {
  background: #f0f0f0;
  border-radius: 4px;
  width: 25px;
}

.chart-bar.active {
  background: #ff6b35;
}

.welcome-card {
  background: #ff6b35;
  color: white;
  position: relative;
  overflow: hidden;
}

.welcome-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.welcome-card p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  padding-right: 120px;
}

/* Character illustration inside welcome card */
.character-illustration {
  position: absolute;
  right: 10px;
  top: 10px;
  bottom: 10px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
}

.character-illustration img {
  width: 100px;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

/* Bottom section with white background */
.hero-bottom-section {
  background: white;
  border-radius: 20px;
  padding: 60px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
  margin-bottom: 80px;
}

.free-to-play-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
  line-height: 1.2;
}

.free-to-play-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.scooter-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;


  margin-left: auto;

  position: relative;
}

.scooter-illustration img {
  width: 160px;
  height: auto;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: #1a1a1a;
}

.features h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.features-column-1 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-card {
  padding: 32px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  min-height: 180px;
}

.feature-card.white {
  background: white;
  color: #333;
}

.feature-card.orange {
  background: #ff6b35;
  color: white;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.feature-card p {
  opacity: 0.8;
  line-height: 1.6;
  font-size: 16px;
  position: relative;
  z-index: 2;
}

/* Feature card illustrations */
.gamer-illustration {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
}

.gamer-illustration img {
  width: 120px;
  height: auto;
  opacity: 1;
}

.device-illustration {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
}

.device-illustration img {
  width: 100px;
  height: auto;
  opacity: 1;
}

/* Large highlights section */
.highlights-card {
  background: #ff6b35;
  padding: 48px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.highlights-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.highlights-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #333;
}

.highlights-list {
  list-style: none;
  margin-bottom: 32px;
}

.highlights-list li {
  margin-bottom: 16px;
  color: #333;
  font-weight: 500;
  font-size: 16px;
}

.highlights-list li strong {
  font-weight: 700;
}

.tv-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tv-illustration img {
  width: 200px;
  height: auto;
}

/* Highlights Section */
.highlights {
  padding: 40px 0;
  background: #1a1a1a;
}

.highlights-card {
  background: #ff6b35;
  padding: 48px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.highlights-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.highlights-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #333;
}

.highlights-list {
  list-style: none;
  margin-bottom: 32px;
}

.highlights-list li {
  margin-bottom: 16px;
  color: #333;
  font-weight: 500;
  font-size: 16px;
}

.highlights-list li strong {
  font-weight: 700;
}

.tv-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tv-illustration img {
  width: 200px;
  height: auto;
}

/* Footer CTA */
.footer-cta {
  padding: 60px 0;
  background: #1a1a1a;
}

.cta-card {
  background: white;
  color: #333;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
}

.cta-card h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-card p {
  opacity: 0.7;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

/* Footer */
footer {
  padding: 60px 0 40px;
  background: #0d0d0d;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: #ff6b35;
}

.footer-address {
  color: #888;
  font-size: 14px;
  text-align: center;
}

.footer-contact {
  text-align: right;
}

.footer-contact p {
  color: #888;
  font-size: 14px;
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 40px;
}

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

.footer-links a:hover {
  color: #ff6b35;
}

.social-links {
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-bottom: 40px;
}

.social-links a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.social-links .twitter {
  background: #1da1f2;
  color: white;
}

.social-links .facebook {
  background: #4267b2;
  color: white;
}

.social-links a:hover {
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  color: #666;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #333;
  position: relative;
  z-index: 2;
}

/* Footer gamepad illustration */
.footer-gamepad {
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  z-index: 1;
}

.footer-gamepad img {
  width: 200px;
  height: auto;
  opacity: 0.3;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #1a1a1a;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  max-width: 400px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.cookie-popup.desktop {
  right: auto;
  max-width: 400px;
}

.cookie-popup.mobile {
  left: 50%;
  right: auto;
  transform: translateX(-50%) translateY(100px);
  max-width: 90%;
  width: 500px;
}

.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-popup.mobile.show {
  transform: translateX(-50%) translateY(0);
}

.cookie-popup h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.cookie-popup p {
  color: #ccc;
  margin-bottom: 24px;
  line-height: 1.5;
  font-size: 14px;
}

.cookie-popup a {
  color: #ff6b35;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.cookie-popup.mobile .cookie-buttons {
  flex-direction: row;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-btn.accept {
  background: #ff6b35;
  color: white;
}

.cookie-btn.accept:hover {
  background: #e55a2b;
}

.cookie-btn.refuse {
  background: transparent;
  color: white;
  border: 2px solid #444;
}

.cookie-btn.refuse:hover {
  border-color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
      grid-template-columns: auto auto;
      gap: 20px;
  }

  .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(26, 26, 26, 0.98);
      flex-direction: column;
      padding: 20px;
      gap: 20px;
      justify-content: flex-start;
  }

  .nav-links.show {
      display: flex;
  }

  .mobile-menu {
      display: flex;
      justify-self: end;
  }

  .games-btn {
      display: none;
  }

  .hero-cards-row {
      grid-template-columns: 1fr;
      gap: 24px;
  }

  .categories {
      position: static;
      text-align: center;
      margin-bottom: 40px;
  }

  .gamepad-illustration {
      display: none;
  }

  .hero-bottom-section {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 40px;
      padding: 40px 20px;
  }

  .scooter-illustration {
      margin: 0 auto;
  }

  .welcome-card p {
      padding-right: 20px;
  }

  .character-illustration {
      position: static;
      width: auto;
      margin-top: 16px;
      display: flex;
      justify-content: center;
  }

  .features-grid {
      display: flex;
      flex-direction: column;
      gap: 24px;
  }

  .features-column-1 {
      display: flex;
      flex-direction: column;
      gap: 24px;
  }

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

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

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

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

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

  .hero {
      padding: 120px 0 0;
  }

  .hero-main h1 {
      font-size: 2.5rem;
  }

  .features {
      padding: 60px 0;
  }

  .highlights-card {
      padding: 32px 20px;
  }

  .free-to-play-content h2 {
      font-size: 32px;
  }

  .hero-bottom-section {
      margin-bottom: 60px;
  }
}

.play-btn-bl{
  background: #171815;
}








.games-showcase {
  padding: 80px 0;

}
.games-showcase .container{
  background-color: #fff;
  border-radius: 24px;
  padding: 24px;
}

.games-grid {
  display: grid;
  grid-template-columns: 200px 200px 400px 300px;
  grid-template-rows: 180px 200px;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.game-card {
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

/* Top row cards */
.game-card.small {
  grid-row: 1;
}

.game-card.wide {
  grid-row: 1;
}

.game-card.large-square {
  grid-row: 1;
}

/* Bottom row cards */
.game-card.bottom-left {
  grid-column: 2 / 3;
  grid-row: 2;
  max-width: 200px;
}

.game-card.bottom-right {
  grid-column: 3 / 5;
  grid-row: 2;
  max-width: 400px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .games-grid {
      grid-template-columns: 1fr 1fr 2fr 1.5fr;
      max-width: 100%;
      margin: 0 20px;
  }
}

@media (max-width: 968px) {
  .games-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto auto auto;
      gap: 16px;
      grid-auto-rows: 180px;
  }
  
  .game-card.small {
      grid-column: span 1;
      grid-row: auto;
  }
  
  .game-card.wide {
      grid-column: span 2;
      grid-row: auto;
  }
  
  .game-card.large-square {
      grid-column: span 1;
      grid-row: auto;
  }
  
  .game-card.bottom-left,
  .game-card.bottom-right {
      grid-column: span 1;
      grid-row: auto;
  }
}

@media (max-width: 560px) {
  .games-showcase {
      padding: 60px 0;
  }
  
  .games-grid {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(6, 200px);
      gap: 16px;
      margin: 0 16px;
  }
  
  .game-card {
      grid-column: span 1;
      grid-row: auto;
  }
  
  .game-card.small,
  .game-card.wide,
  .game-card.large-square,
  .game-card.bottom-left,
  .game-card.bottom-right {
      grid-column: span 1;
      grid-row: auto;
  }
}

@media (max-width: 480px) {
  .games-showcase {
      padding: 40px 0;
  }
  
  .games-grid {
      gap: 12px;
      margin: 0 12px;
      grid-template-rows: repeat(6, 180px);
  }
}

.highlights-card-game{
  background: #fff;
  margin-bottom: 40px;
}