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

body {
  font-family: 'Arial', sans-serif;
  background: #fff;
  color: #222;
  min-width: 320px;
  overflow-x: hidden;
  line-height: 1.4;
}

/* Top Bar */
header.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: #fff;
  position: relative;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header-left {
  flex: 1;
  display: flex;
  align-items: center;
}
.header-logo {
  height: 38px;
  width: auto;
  display: block;
}
.header-center {
  flex: 2;
  display: flex;
  justify-content: center;
}
.header-center ul {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.header-center ul li a {
  font-size: 1.1rem;
  color: #333;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.header-center ul li a:hover {
  color: #ffb400;
}
.header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}
.header-right .btn {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.header-right img {
  height: 32px;
  width: auto;
}


.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

nav ul li a {
  font-size: 1rem;
  color: #555;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: color 0.2s;
}

nav ul li a:hover {
  color: #333;
}

/* Section Base */
.section {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  min-height: 320px;
  padding: 0;
}

.wood-bg {
  background: url('../materials/Layer 1.png') repeat top center;
  background-size: cover;
  position: relative;
}

.angled-separator.top {
  width: 100%;
  height: 48px;
  background: linear-gradient(285deg, #ffe44c 0%, #fff 100%);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.angled-separator.bottom {
  width: 100%;
  height: 48px;
  background: linear-gradient(105deg, #fff 60%, #ffe44c 100%);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}


.bg-img-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  z-index: 1;
  overflow: hidden;
}

.bg-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.angled-separator.bottom {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 40px;
  z-index: 3;
  background: linear-gradient(105deg, #fff 60%, #ffe44c 100%);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* Character Containers */
/* Characters and Animals */
.character-container, .animal-container {
  position: absolute;
  z-index: 4;
  bottom: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.character-container.left {
  left: 5%;
  bottom: 0;
}

.character-container.right {
  right: 5%;
  bottom: 0;
}

.animal-container.left {
  left: 20%;
  bottom: 15%;
}

.animal-container.right {
  right: 20%;
  bottom: 15%;
}

.character {
  height: 400px;
  width: 250px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: 5;
}

.animal {
  height: 180px;
  width: 180px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: 4;
}

/* Character images */
.character.female {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 350"><rect width="200" height="350" fill="transparent"/><ellipse cx="100" cy="80" rx="50" ry="60" fill="#f8d38d"/><path d="M 100 20 L 150 80 L 100 140 L 50 80 Z" fill="#ff69b4"/><rect x="60" y="140" width="80" height="150" fill="#ffd700"/><rect x="60" y="140" width="80" height="60" fill="#ffd700"/><rect x="60" y="200" width="80" height="90" fill="#8b0000"/></svg>');
}

.character.male {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 350"><rect width="200" height="350" fill="transparent"/><ellipse cx="100" cy="80" rx="50" ry="60" fill="#f8d38d"/><path d="M 100 20 L 150 80 L 100 140 L 50 80 Z" fill="#4682b4"/><rect x="60" y="140" width="80" height="150" fill="#cd7f32"/><rect x="60" y="140" width="80" height="60" fill="#b8860b"/><rect x="60" y="200" width="80" height="90" fill="#8b0000"/></svg>');
}

.character.cowboy {
  background-image: url('../materials/Layer 1.png');
}

.character.warrior {
  background-image: url('../materials/Layer 2.png');
}

.animal.bear {
  background-image: url('../materials/Layer 3.png');
}

.animal.tiger {
  background-image: url('../materials/Layer 4.png');
}

.animal.wolf {
  background-image: url('../materials/wolf.png');
}

/* Gold Piles */
.gold-pile {
  position: absolute;
  width: 250px;
  height: 180px;
  bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: 3;
  background-image: url('../materials/gold-pile.png');
}

.gold-pile.left {
  left: 5%;
  transform: scaleX(-1);
  background-image: url('../materials/Layer 5.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 180px;
  height: 90px;
  position: absolute;
  bottom: 0;
  z-index: 15;
}

.gold-pile.right {
  right: 5%;
  background-image: url('../materials/Layer 5.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 180px;
  height: 90px;
  position: absolute;
  bottom: 0;
  z-index: 15;
}

/* Game Board */
.game-board-container {
  position: relative;
  z-index: 5;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-board-container.hero-board {
  margin-top: 20px;
}

.game-board-container.showcase-board {
  margin: 0;
  position: relative;
}

.game-logo {
  position: relative;
  padding: 15px 25px;
  background: #1a1a3a;
  border-radius: 15px;
  border: 5px solid #ffd700;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  margin-bottom: 25px;
  max-width: 400px;
  text-align: center;
  transform: perspective(500px) rotateX(5deg);
}

.game-logo:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.game-logo-text {
  font-size: 3rem;
  font-weight: 800;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  letter-spacing: 2px;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
}

.game-board {
  width: 180px;
  height: 180px;
  background: #1a1a3a;
  border-radius: 10px;
  border: 5px solid #ffd700;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 2px;
  padding: 2px;
  overflow: hidden;
  position: relative;
}

.game-board.large {
  width: 300px;
  height: 300px;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 3px;
  padding: 3px;
}

.game-board:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 1;
}

/* Game Gems */
.gem {
  border-radius: 4px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Main gem colors matching the reference design */
.gem.yellow {
  background-color: #ffd700;
  background-image: radial-gradient(circle at 30% 30%, #fff8c0 5%, #ffd700 60%);
}

.gem.blue {
  background-color: #1e90ff;
  background-image: radial-gradient(circle at 30% 30%, #c0f0ff 5%, #1e90ff 60%);
}

.gem.purple {
  background-color: #9932cc;
  background-image: radial-gradient(circle at 30% 30%, #e6c0ff 5%, #9932cc 60%);
}

.gem.red {
  background-color: #ff4500;
  background-image: radial-gradient(circle at 30% 30%, #ffc0c0 5%, #ff4500 60%);
}

.gem.green {
  background-color: #32cd32;
  background-image: radial-gradient(circle at 30% 30%, #c0ffc0 5%, #32cd32 60%);
}

.gem.pink {
  background-color: #ff69b4;
  background-image: radial-gradient(circle at 30% 30%, #ffc0e0 5%, #ff69b4 60%);
}

/* Additional gem types */
.gem.crown {
  background-color: #ffd700;
  background-image: radial-gradient(circle at 30% 30%, #fff8c0 5%, #ffd700 60%);
}

.gem.bomb {
  background-color: #4169e1;
  background-image: radial-gradient(circle at 30% 30%, #c0e1ff 5%, #4169e1 60%);
}

.gem.water {
  background-color: #1e90ff;
  background-image: radial-gradient(circle at 30% 30%, #c0f0ff 5%, #1e90ff 60%);
}

.gem.fire {
  background-color: #ff4500;
  background-image: radial-gradient(circle at 30% 30%, #ffc0c0 5%, #ff4500 60%);
}

.gem.leaf {
  background-color: #32cd32;
  background-image: radial-gradient(circle at 30% 30%, #c0ffc0 5%, #32cd32 60%);
}

.gem.heart {
  background-color: #ff69b4;
  background-image: radial-gradient(circle at 30% 30%, #ffc0e0 5%, #ff69b4 60%);
}

/* Hero Section */
.full-section {
  width: 100vw;
  max-width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  display: block;
}

.full-img {
  width: 100vw;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: none;
  object-fit: cover;
}

main {
  padding: 0;
  margin: 0;
}

section {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
}
.hero-bg {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-illustration {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slant-separator {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 48px;
  background: linear-gradient(105deg, #fff 60%, #ffe44c 100%);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: 2;
}

  min-height: 500px;
  background: none;
  padding-top: 0;
  padding-bottom: 32px;
}

.hero-bg {
  width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  width: 100%;
}

/* Match League Logo */
.match-league-logo {
  width: 250px;
  height: 130px;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  background-color: #ffd700;
  border: 5px solid #ffd700;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.match-league-logo:before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background-color: #1a1a3a;
  border-radius: 10px;
  z-index: -1;
}

.match-league-logo:after {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  background-color: #ffd700;
  border-radius: 5px;
  z-index: -1;
}

.logo-text {
  font-size: 2.2rem;
  color: #00ccff;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 
    2px 2px 0 #1a1a3a,
    -1px -1px 0 #1a1a3a,
    1px -1px 0 #1a1a3a,
    -1px 1px 0 #1a1a3a;
  text-align: center;
  line-height: 0.9;
  font-family: 'Arial Black', 'Arial Bold', sans-serif;
  text-transform: uppercase;
  position: relative;
  z-index: 5;
}

.hero-sub {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Game Showcase Section */
.game-showcase {
  min-height: 600px;
  padding: 40px 0 80px 0;
  z-index: 1;
}

.showcase-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  position: relative;
  z-index: 3;
}

.popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fffbe0;
  border-radius: 10px;
  padding: 12px 15px;
  max-width: 250px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #e6d798;
  z-index: 20;
}

.popup h2 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 6px;
  font-weight: bold;
  text-align: center;
}

.popup p {
  color: #666;
  font-size: 0.85rem;
  text-align: center;
}

/* Game Cards */
.game-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 10;
}

.pvp-cards {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  position: absolute;
  top: 80px;
  right: 50px;
  z-index: 10;
}

.card {
  width: 110px;
  height: 150px;
  background: #fff;
  border-radius: 15px;
  border: 4px solid #ffd700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
  transition: all 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border-color: #ffe44c;
}

.card.bank-heist {
  background-color: #ffd700;
  background-image: linear-gradient(to bottom, #ffd700, #ffb700);
}

.card.golden-chance {
  background-color: #ff9e2c;
  color: #fff;
  background-image: linear-gradient(to bottom, #ff9e2c, #ff7e2c);
}

.card.jungle-cruise,
.card.royal-crown,
.card.barrel-race {
  background-color: #4caf50;
  color: #fff;
  background-image: linear-gradient(to bottom, #4caf50, #2e8b57);
}

.card-label {
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  background-color: rgba(0, 0, 0, 0.2);
  padding: 5px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.card-bonus {
  background: #ffd700;
  color: #333;
  padding: 3px 6px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 0.7rem;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.card-price {
  font-size: 1.2rem;
  font-weight: bold;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.card-cta {
  background: #4caf50;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.8rem;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.card-title {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.card-bonus {
  background: #ffd700;
  color: #333;
  padding: 5px 10px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 0.9rem;
  margin: 10px 0;
}

.card-price {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 10px 0;
}

.card-cta {
  background: #4caf50;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* PvP Section */
.pvp-section {
  min-height: 450px;
  padding: 0;
  position: relative;
}

.pvp-content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
}

.pvp-title {
  color: #ffe44c;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 30px;
  right: 10%;
}

.pvp-info-box {
  background: #fffbe0;
  border-radius: 10px;
  padding: 10px 15px;
  max-width: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 20%;
  top: 40%;
}

.pvp-info-box p {
  color: #666;
  font-size: 0.85rem;
  text-align: center;
}

.coins-display {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 15px;
  z-index: 5;
}

.coin {
  width: 30px;
  height: 30px;
  background: #ffd700;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  background-image: radial-gradient(circle at 30% 30%, #fff8c0 5%, #ffd700 60%);
}

.coin-count {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Download Section */
.download-section {
  min-height: 400px;
  padding: 60px 0 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(120deg, #3bb2f7 0%, #eaf6fd 100%);
  padding: 70px 0 48px 0;
  text-align: center;
  box-shadow: 0 8px 32px rgba(59,178,247,0.12);
  animation: fadeIn 1s;
}
.about-hero h1 {
  font-size: 2.8rem;
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
  text-shadow: 2px 4px 16px rgba(59,178,247,0.25);
  letter-spacing: 0.03em;
  font-family: 'Poppins', 'Arial Black', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.btn.app-store,
.btn.play-store {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font-size: 1rem;
  border-radius: 0;
  transition: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: none;
}

.btn.app-store:hover,
.btn.play-store:hover {
  background: none;
  border: none;
  transform: none;
}

.btn.app-store:before,
.btn.play-store:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.btn.app-store img {
  margin-right: 8px;
}
.btn.play-store img {
  margin-right: 8px;
}

.download-cta {
  color: #ffe44c;
  font-size: 1.8rem;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  margin-top: 20px;
  position: relative;
  z-index: 3;
}

/* Footer */
footer {
  background: linear-gradient(to bottom, #3bb2f7 0%, #eaf6fd 100%);
  padding: 40px 0 24px 0;
  color: #222;
  border-top: 6px solid #ffb400;
  box-shadow: 0 -2px 16px rgba(59,178,247,0.08);
  min-height: 120px;
  width: 100vw;
  margin: 0;
  border-radius: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1 0 auto;
}
footer {
  flex-shrink: 0;
}

.footer-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 32px;
  margin-bottom: 18px;
  justify-content: center;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
  opacity: 0.92;
}
.footer-links a:hover {
  color: #ffb400;
  opacity: 1;
}
.footer-copyright {
  color: #fff;
  font-size: 0.92rem;
  margin-top: 8px;
  opacity: 0.85;
}

.footer-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-logo {
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  gap: 32px;
  margin-bottom: 18px;
  justify-content: center;
}
.footer-links a {
  color: #0a3d62;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #ffb400;
}
.footer-copyright {
  color: #555;
  font-size: 0.9rem;
  margin-top: 8px;
}

.footer-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.footer-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.footer-links {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

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

.footer-copyright {
  color: #333;
  font-size: 0.92rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .character-container .character {
    height: 300px;
    width: 170px;
  }
  
  .game-board {
    width: 250px;
    height: 250px;
  }
  
  .card {
    width: 150px;
    height: 220px;
  }
}

@media (max-width: 900px) {
  .character-container .character {
    height: 250px;
    width: 140px;
  }
  
  .showcase-cards {
    gap: 15px;
  }
  
  .card {
    width: 130px;
    height: 190px;
  }
  
  .card-title {
    font-size: 1rem;
  }
  
  .download-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .top-bar {
    padding: 15px 20px;
  }
  
  .hero-title-bg {
    width: 300px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .character-container .character {
    height: 200px;
    width: 110px;
  }
  
  .game-board {
    width: 220px;
    height: 220px;
  }
  
  .card {
    width: 110px;
    height: 160px;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .top-bar {
    flex-direction: column;
    gap: 15px;
  }
  
  .top-links {
    gap: 15px;
  }
  
  .hero-title-bg {
    width: 250px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .character-container .character {
    height: 150px;
    width: 85px;
  }
  
  .game-board {
    width: 180px;
    height: 180px;
  }
  
  .showcase-cards {
    gap: 10px;
  }
  
  .card {
    width: 90px;
    height: 130px;
  }
  
  .card-title {
    font-size: 0.8rem;
  }
  
  .download-buttons img {
    width: 120px;
  }
  
  .download-content h2 {
    font-size: 2rem;
  }
  
  .footer-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
