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

body {
    background-color: #1a1a1a;
    font-family: courier, fixed, monospace;
    font-size: 21px;
    line-height: 1.6;
    color: #feffe5;
}

.essay {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 4rem 2rem;
    gap: 1rem;
}

.site-header {
    padding: 1rem 2rem;
}

.nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
}

.logo {
     color: #76B78E;
     font-size: 1.5rem;
}

.nav-links {
     list-style: none;
     display: flex;
     gap: 1.5rem;
}

.nav-links a {
     color: #76b78e;
     text-decoration: none;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #feffe5;
    color: #76b78e;
    border-radius: 999px;
    text-decoration: none;
    font-weight: bold;
}

.section {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: auto;
}

.section h3 {
    margin-bottom: 1rem;
}

.section.alt {
    background: #f1f5f9;
}



.ribbon {
    background: #2d282d;
    color: #fff;
    padding: 2.5rem 2rem;
    margin: -3rem -2rem 3rem;
    text-align: center;
}

.ribbon h2 {
    margin-bottom: 0.5rem;
}

.site-footer {
    text-align: center;
    padding: 1.5rem;
    background: #2d282d;
    color: #76b78e;
    margin-top: 2rem;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    background: #2d282d;
    padding: 2rem 3rem;
    border-radius: 16px;
    color: #feffe5;
}

.hero-images {
    width: 100%;
    border-radius: 16px;
}

.hero-images img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-images img.active {
    opacity: 1;
}
/* mobile fix */
@media (max-width: 600px) {
  .hero {
        grid-template-columns: 1fr;
        text-align: center;
  }
  
  .hero h2 {
        font-size: 2rem;
  }

  .hero-content {
        margin: 0 auto;
  }
  .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
  }
}
/* portfolio */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    
    .card {
      background: #2d282d;
      border-radius: 12px;
      padding: 1rem;
      box-shadow: 0 8px 20px rgba(0,0,0,0.06);
      text-align: center;
      overflow: hidden;
    }
    
    .card img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      margin-bottom: 1rem;
    }
/* game review */
	.review-cards {
	  display: flex;
	  flex-direction: column;
	  gap: 2rem;
	  max-width: 800px;
	  margin: 0 auto;
	}
	.card p {
	  text-align: left !important;
	  text-indent: 1.5em;
	  margin-top: 0.5rem;
	}