@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');


.pokemon-page {
  background-color: #D4AF8C; /* Earthy tan */
  background-image: url('/pokemon/pokemon-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
}

.pokemon-page header::after {
  background: linear-gradient(90deg, #4A7C59, #8B7355, #4A7C59);
}

.pokemon-page .site-title h1 {
  font-family: 'Press Start 2P', cursive;
  color: #FFDE00;
  text-shadow: 
    -2px -2px 0 #003DA5,
    2px -2px 0 #003DA5,
    -2px 2px 0 #003DA5,
    2px 2px 0 #003DA5,
    -2px 0 0 #003DA5,
    2px 0 0 #003DA5,
    0 -2px 0 #003DA5,
    0 2px 0 #003DA5,
    -3px 0 0 #003DA5,
    3px 0 0 #003DA5,
    0 -3px 0 #003DA5,
    0 3px 0 #003DA5;
  font-size: 2.5em;
}

.pokemon-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px;
}


/* ###### INTRO SECTION ###### */
.intro {
  background: repeating-linear-gradient(
    45deg,
    #DC143C,
    #DC143C 10px,
    #B22222 10px,
    #B22222 20px
  );
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.intro p {
  background-color: #003DA5;
  color: #FFDE00;
  border: 3px solid #FFDE00;
  padding: 20px;
  border-radius: 4px;
  margin-top: 15px;
}

.intro-title {
  font-family: 'Press Start 2P', cursive;
  color: #FFDE00;
  text-shadow: 
    -2px -2px 0 #003DA5,
    2px -2px 0 #003DA5,
    -2px 2px 0 #003DA5,
    2px 2px 0 #003DA5,
    -2px 0 0 #003DA5,
    2px 0 0 #003DA5,
    0 -2px 0 #003DA5,
    0 2px 0 #003DA5,
    -3px 0 0 #003DA5,
    3px 0 0 #003DA5,
    0 -3px 0 #003DA5,
    0 3px 0 #003DA5;
  text-align: center;
  font-size: 2.5em;
  clear: both;
}

.intro img {
  margin-right: 10px;
  margin-bottom: 10px;
  float: left;
}

/* ###### GAME TEAM DISPLAY SECTION ###### */
.game-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 500px;
  border-radius: 15px;
  border: 5px solid;
  border-image: conic-gradient(#003DA5 0deg 90deg, #FFDE00 90deg 180deg, #003DA5 180deg 270deg, #FFDE00 270deg 360deg) 1;
}

.section-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.game-section h2 {
  font-family: 'Russo One', sans-serif;
  color: #FFFFFF;
  text-shadow: 
    -2px -2px 0 #000000,
    2px -2px 0 #000000,
    -2px 2px 0 #000000,
    2px 2px 0 #000000,
    -2px 0 0 #000000,
    2px 0 0 #000000,
    0 -2px 0 #000000,
    0 2px 0 #000000,
    -3px 0 0 #000000,
    3px 0 0 #000000,
    0 -3px 0 #000000,
    0 3px 0 #000000;
  font-size: 2.5em;
  margin-bottom: 15px;
}

.team-box {
  display: grid;
  flex: 0 0 auto;
  width: fit-content;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pokemon-slot {
  aspect-ratio: 1;
  border: 2px solid #333;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.pokemon-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
}

.game-cover {
  flex: 0 0 auto;
  width: 200px;  /* adjust as needed */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.game-cover img {
  width: 100%;
  height: auto;
  display: block;
}

/* ###### INDIVIDUAL GAME STYLES ###### */

/* Fire Red */
.fire-red {
  background-color: rgba(255, 182, 193, 0.3);
}

.fire-red {
  background-image: url('/pokemon/fire-red.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fire-red .team-box {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border: 3px solid #C41E3A;
}

/* Emerald */
.emerald {
  background-image: url('/pokemon/emerald.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.emerald .team-box {
  background: linear-gradient(135deg, #98FB98, #90EE90);
  border: 3px solid #228B22;
}

/* Platinum */
.platinum {
  background-image: url('/pokemon/dpp.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.platinum .team-box {
  background: linear-gradient(135deg, #E8E8E8, #D3D3D3);
  border: 3px solid #696969;
}

/* Heart Gold */
.heart-gold {
  background-image: url('/pokemon/heart-gold.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.heart-gold .team-box {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border: 3px solid #B8860B;
}

/* Black */
.black {
  background-image: url('/pokemon/black.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.black h2 {
  color: #2F4F4F;
}

.black .team-box {
  background: linear-gradient(135deg, #404040, #696969);
  border: 3px solid #2F4F4F;
}

/* X */

/* Sword */




.side-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-shrink: 0;
    z-index: 999;
    left: calc(50% - 600px);
    max-height: calc(100vh - 250px);
}

.nav-item {
    text-align: center;
}

.nav-item a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.nav-item a:hover {
    transform: scale(1.2);
}

.nav-icon {
    width: 90px;
    height: 90px;
    display: block;
}

.nav-item p {
    font-family: 'Arial Black', sans-serif;
    font-size: 18px;
    margin: 0;
    font-weight: bold;
    letter-spacing: 1px;
    color: #FFFF00;
    text-shadow: 
        -2px -2px 0 #0066CC,
        2px -2px 0 #0066CC,
        -2px 2px 0 #0066CC,
        2px 2px 0 #0066CC,
        -2px 0 0 #0066CC,
        2px 0 0 #0066CC,
        0 -2px 0 #0066CC,
        0 2px 0 #0066CC;
}