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

body {
  font-family: 'Roboto Mono', monospace;
  background-color: #2d2d2d;
  color: #fff;
  overflow-x: hidden;
}

.container {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Header */
.header {
  background-color: #60D2F6;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-family: 'Press Start 2P', cursive;
  font-size: 26px;
  color: #fff;
  text-shadow: 3px 3px 0px #000;
  letter-spacing: 1px;
}

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

.nav a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.3s;
}

.nav a:hover {
  opacity: 0.7;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 100;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: #000;
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  background: #60D2F6;
  padding: 100px 50px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url(/wp-content/themes/trundexor/assets/images/bg1.png);
  background-size: cover;
  background-position: center/center;

}
.tuch{
  position: absolute;
  left: 0px;
  top: 20%;
}

.pixel-cloud-left {
  position: absolute;
  left: 30px;
  top: 150px;
  width: 180px;
  height: 120px;
  background: rgba(200, 200, 200, 0.6);
  clip-path: polygon(
      0 30%, 20% 30%, 20% 20%, 40% 20%, 40% 10%, 60% 10%, 60% 0, 
      80% 0, 80% 10%, 100% 10%, 100% 70%, 80% 70%, 80% 80%, 
      60% 80%, 60% 90%, 40% 90%, 40% 100%, 20% 100%, 20% 90%, 0 90%
  );
}

.pixel-blocks {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
}

.pixel-block {
  flex: 1;
  background: rgba(100, 180, 200, 0.5);
  border-right: 2px solid rgba(80, 150, 180, 0.3);
}

.pixel-block:nth-child(odd) {
  height: 60%;
  align-self: flex-end;
}

.pixel-block:nth-child(even) {
  height: 80%;
  align-self: flex-end;
}

.pixel-block:nth-child(3n) {
  height: 40%;
  align-self: flex-end;
}

.hero-title {
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(32px, 6vw, 72px);
  color: #FFD700;
  text-shadow: 0 8px 0 #000;
  margin-bottom: 30px;
  line-height: 1.4;
  position: relative;
  z-index: 2;




  
}
.hero-title img{
  width: 80%;
}
@media (max-width: 768px) {
  .hero-title img{
    width: 100%;
  }
}

.hero-subtitle {
  font-size: clamp(14px, 2vw, 18px);
  margin-bottom: 50px;
  color: #000;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.btn-primary {
  background-color: #ffa500;
  color: #000;
  border: 5px solid #000;
  padding: 18px 50px;
  font-family: 'Press Start 2P', cursive;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 8px 8px 0px #000;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 2;
}

.btn-primary:hover {
  transform: translate(3px, 3px);
  box-shadow: 5px 5px 0px #000;
}

.btn-primary:active {
  transform: translate(5px, 5px);
  box-shadow: 3px 3px 0px #000;
}

/* Players Section */
.section-players {
  background: #60D2F6;
  padding: 80px 50px;
  position: relative;
}

.section-title {
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(24px, 4vw, 52px);
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
  text-shadow: 4px 4px 0px #000;
  line-height: 1.5;

  color: #FFF;
text-align: center;
text-shadow: 0 6px 0 #000;
-webkit-text-stroke-width: 3px;
-webkit-text-stroke-color: #000;
font-family: "Press Start 2P";
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: 56px; /* 140% */
font-size: clamp(24px, 4vw, 52px);

}

.players-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
}

.player-card {
  background-color: #fff;
  border: 5px solid #000;
  border-radius: 60px;
  padding: 22px 35px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 5px 5px 0px #000;
  transition: transform 0.2s;
}
@media (max-width: 768px) {
  .player-card{
    font-size: 12px;
  }
  .player-card{
    gap: 5px;
    padding: 5px;
  }
 
}

.player-card:hover {
  transform: translateY(-3px);
}

.player-avatar {
  min-width: 65px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 4px solid #000;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
}

.player-info {
  flex: 1;
  min-width: 0;
}

.player-name {
  font-family: 'Press Start 2P', cursive;
  font-size: 16px;
  color: #000;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-game {
  font-size: 13px;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-amount {
  font-family: 'Press Start 2P', cursive;
  font-size: 15px;
  color: #000;
  white-space: nowrap;
}

/* Collectible Section */
.section-collectible {
  background: #60D2F6;
  padding: 80px 50px;
  position: relative;
}

.collectible-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 80px;
  align-items: center;
}

.collectible-image-wrapper {
  width: 100%;
}

.collectible-image {
  width: 100%;
  border: 5px solid #000;
  border-radius: 30px;
  box-shadow: 6px 6px 0px #000;
  display: block;
}

.collectible-info {
  text-align: left;
}

.tag {
  font-size: 16px;
  color: #000;
  margin-bottom: 15px;
  font-weight: 500;
}

.collectible-title {
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
  text-shadow: 4px 4px 0px #000;
  margin-bottom: 25px;
  line-height: 1.3;

  color: var(--T, #FFF);
text-shadow: 4px 4px 0 #000;

/* Heading/Heading 1 40 */
-webkit-text-stroke-width: 2px;
-webkit-text-stroke-color: var(--T, #000);
font-family: "Press Start 2P";
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: 56px; /* 140% */
}

.collectible-text {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #000;
  font-weight: 400;
}

.creator {
  font-size: 16px;
  margin-bottom: 35px;
  color: #000;
  font-weight: 500;
}

/* Promo Section */
.section-promo {
  background: #60D2F6;
  padding: 80px 50px;
  position: relative;
  background: url(/wp-content/themes/trundexor/assets/images/bg1.png);
  background-size: cover;
}

.promo-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 80px;
  align-items: center;
}

.promo-title {
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
  text-shadow: 4px 4px 0px #000;
  margin-bottom: 25px;
  line-height: 1.3;
}

/* Developers Section */
.section-developers {
  background: #754930;
  padding: 80px 50px;
}

.dev-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}
.dev-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}
@media (max-width: 768px) {
  .dev-content {
    flex-direction: column;
  }
}

.dev-title {
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(28px, 4vw, 52px);
  color: #fff;
  text-shadow: 4px 4px 0px #000;
  margin-bottom: 30px;
  line-height: 1.5;

  
  color: #FFF;
text-shadow: 4px 4px 0 #000;

/* Heading/Heading 1 40 */
-webkit-text-stroke-width: 2px;
-webkit-text-stroke-color: var(--T, #000);
font-family: "Press Start 2P";
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: 56px; /* 140% */
}

.dev-text {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 50px;
  color: #fff;
}

.stats {
  display: flex;
  justify-content: flex-end;
  gap: 100px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  text-shadow: 4px 4px 0px #000;
  margin-bottom: 12px;

  color: #FFF;
text-shadow: 4px 4px 0 #000;

/* Heading / Heading 2 32 */
-webkit-text-stroke-width: 2px;
-webkit-text-stroke-color: var(--T, #000);
font-family: "Press Start 2P";
font-size: 32px;
font-style: normal;
font-weight: 400;
line-height: 56px; /* 175% */
}

.stat-label {
  font-size: 18px;
  color: #fff;
}

/* Footer */
.footer {
  background: #754930;
  padding: 50px 50px 30px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  gap: 40px;
}

.footer-logo {
  font-family: 'Press Start 2P', cursive;
  font-size: 28px;
  color: #fff;
  text-shadow: 3px 3px 0px #000;
}

.footer-info {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
}

.footer-contact {
  font-size: 16px;
  color: #fff;
  text-align: right;
  line-height: 1.8;
}

.footer-bottom {
  background: #754930;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 1400px;
  margin: 0 auto;
  gap: 30px;
}

.footer-copyright {
  font-size: 15px;
  color: #fff;
}

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

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

.footer-links a:hover {
  opacity: 0.7;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background-color: #fff;
  border-radius: 50%;
  border: 3px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-content {
  background-color: #60D2F6;
  border: 5px solid #000;
  padding: 45px 50px;
  max-width: 600px;
  width: 100%;
  box-shadow: 10px 10px 0px #000;
}

.cookie-title {
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(24px, 5vw, 36px);
  color: #fff;
  text-shadow: 4px 4px 0px #000;
  margin-bottom: 25px;
  line-height: 1.4;
}

.cookie-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 35px;
  color: #000;
  font-weight: 500;
}

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

.btn-accept {
  flex: 1;
  background-color: #ffa500;
  color: #000;
  border: 5px solid #000;
  padding: 18px;
  font-family: 'Press Start 2P', cursive;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 5px 5px 0px #000;
  transition: all 0.2s;
}

.btn-accept:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0px #000;
}

.btn-learn {
  flex: 1;
  background-color: #60D2F6;
  color: #000;
  border: 5px solid #000;
  padding: 18px;
  font-family: 'Press Start 2P', cursive;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 5px 5px 0px #000;
  transition: all 0.2s;
}

.btn-learn:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0px #000;
}

/* Responsive */
@media (max-width: 1200px) {
  .collectible-content,
  .promo-content {
      grid-template-columns: 400px 1fr;
      gap: 50px;
  }

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

@media (max-width: 968px) {
  .header {
      padding: 20px 30px;
  }

  .logo {
      font-size: 20px;
  }

  .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #60D2F6;
      flex-direction: column;
      padding: 20px;
      border-top: 3px solid #000;
      gap: 20px;
  }

  .nav.active {
      display: flex;
      z-index: 999;
  }

  .hamburger {
      display: flex;
  }

  .hero {
      padding: 80px 30px 100px;
  }

  .section-players,
  .section-collectible,
  .section-promo,
  .section-developers,
  .footer {
      padding: 60px 10px;
  }

  .collectible-content,
  .promo-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }

  .collectible-image-wrapper {
      max-width: 400px;
      margin: 0 auto;
  }

  .stats {
      justify-content: center;
      gap: 60px;
  }

  .footer-content {
      flex-direction: column;
      gap: 30px;
  }

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

  .footer-bottom {
      flex-direction: column;
      padding: 30px;
      gap: 20px;
  }

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

@media (max-width: 768px) {
  .players-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }

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

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

  .collectible-title,
  .promo-title {
      font-size: 32px;
  }

  .dev-title {
      font-size: 28px;
  }

  .stats {
      flex-direction: column;
      gap: 40px;
  }

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




/* Games Catalog Section */
.section-catalog {
  background: #60D2F6;
  padding: 80px 50px;
  position: relative;
  background: url(/wp-content/themes/trundexor/assets/images/bg1.png);
  background-size: cover;
}

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

.catalog-title {
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(32px, 5vw, 56px);
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
  text-shadow: 0 6px 0 #000;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #000;
  line-height: 1.4;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.game-card {
  background: #fff;
  border: 5px solid #000;
  border-radius: 20px;
  padding: 20px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 6px 6px 0px #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0px #000;
}

.game-card:active {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0px #000;
}

.game-image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 3px solid #000;
}

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

.game-title {
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(14px, 2vw, 20px);
  color: #000;
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

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

@media (max-width: 768px) {
  .section-catalog {
      padding: 60px 20px;
  }

  .games-grid {
      grid-template-columns: 1fr;
      gap: 25px;
      max-width: 400px;
  }

  .catalog-title {
      font-size: 28px;
      margin-bottom: 40px;
  }

  .game-card {
      padding: 15px;
  }

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


/* Game Detail Section */
.section-game-detail {
  background: #60D2F6;
  padding: 80px 50px;
  position: relative;
}

.game-detail-container {
  max-width: 1400px;
  margin: 0 auto;
}

.game-detail-title {
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(32px, 5vw, 56px);
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
  text-shadow: 0 6px 0 #000;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #000;
  line-height: 1.4;
}

.game-detail-content {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 80px;
  align-items: center;
}

/* Game Card */
.game-detail-card {
  background: #fff;
  border: 5px solid #000;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 6px 6px 0px #000;
  text-align: center;
}

.game-detail-image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 25px;
  border: 4px solid #000;
}

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

.game-detail-card-title {
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(18px, 2.5vw, 24px);
  color: #000;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

/* Game Info */
.game-detail-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.game-detail-description {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.8;
  color: #000;
  font-weight: 400;
  margin: 0;
}

.btn-play {
  background-color: #ffa500;
  color: #000;
  border: 5px solid #000;
  padding: 20px 60px;
  font-family: 'Press Start 2P', cursive;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 8px 8px 0px #000;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  align-self: flex-start;
  border-radius: 10px;
}

.btn-play:hover {
  transform: translate(3px, 3px);
  box-shadow: 5px 5px 0px #000;
}

.btn-play:active {
  transform: translate(5px, 5px);
  box-shadow: 3px 3px 0px #000;
}

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

@media (max-width: 768px) {
  .section-game-detail {
      padding: 60px 20px;
  }

  .game-detail-title {
      font-size: 28px;
      margin-bottom: 40px;
  }

  .game-detail-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }

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

  .game-detail-info {
      gap: 30px;
  }

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

  .btn-play {
      width: 100%;
      padding: 18px 40px;
      font-size: 16px;
  }
}