/* css/style.css */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0c0f12;
  color: #eee;
  transition: background 0.3s, color 0.3s;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: #12161b;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 100;
}

.logo img {
  height: 400px;
  max-width: 90vw;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: #1a1f25;
  padding: 1rem;
  border-radius: 0.5rem;
  width: max-content;
}

.nav-links a {
  color: #00d4ff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

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

.hamburger {
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/* HERO */
.hero {
  text-align: center;
  padding: 4rem 2rem 2rem;
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(to bottom, #1a1f25, #0c0f12);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: #aaa;
}

/* ABOUT */
.about {
  padding: 2rem;
  max-width: 700px;
  font-size: 1.25rem;
  margin: auto;
  text-align: center;
  line-height: 1.6;
  animation: fadeIn 1.2s ease-in-out forwards;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(to bottom, #1a1f25, #0c0f12);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

/* GAMES */
.games {
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
  animation: fadeIn 1.4s ease-in-out forwards;
}

.games .game-preview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(to bottom, #1a1f25, #0c0f12);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.game-preview img {
  width: 75%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s;
}

.game-preview img:hover {
  transform: scale(1.03);
}

.game-preview div {
  text-align: center;
  font-size: 1.25rem;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #00a5c0;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #00c5e0;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem;
  background: #12161b;
  margin-top: 4rem;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.socials img {
  height: 32px;
  cursor: pointer;
  transition: transform 0.3s;
}

.socials img:hover {
  transform: scale(1.2);
}
.donate-content{
    max-width:900px;
    margin:auto;
    line-height:1.9;
    font-size:1.1rem;
}

.donate-content p{
    margin-bottom:1.8rem;
    color:#ddd;
}

.donate-content h3{
    font-size:2rem;
    color:#ffffff;
    margin:3rem 0 1.5rem;
    border-left:5px solid #6c63ff;
    padding-left:15px;
}

.support-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
    margin:30px 0;
}

.support-card{
    background:#1c1c1c;
    padding:25px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.08);
    transition:.3s;
}

.support-card:hover{
    transform:translateY(-6px);
    border-color:#6c63ff;
}

.support-card h4{
    margin-bottom:10px;
    color:white;
}

.support-card p{
    margin:0;
    color:#bbb;
}

.btn-primary{
    display:inline-block;
    margin:40px auto;
    padding:15px 35px;
    font-size:1.1rem;
    border-radius:8px;
    text-decoration:none;
}
.support-card ul{
    padding-left:20px;
    margin-top:10px;
}

.support-card li{
    margin-bottom:10px;
    color:#ddd;
}
.tierbound-page {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
}

.tierbound-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.tierbound-hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.tagline {
  max-width: 750px;
  margin: 0 auto 2rem;
  font-size: 1.25rem;
  line-height: 1.7;
  color: #ddd;
}

.tierbound-img {
  max-width: 850px;
  width: 100%;
  margin: 2rem auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.65);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid #6c63ff;
  color: #fff;
}

.tierbound-section {
  margin: 5rem 0;
}

.tierbound-section h2 {
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.tierbound-section p {
  max-width: 850px;
  margin: 0 auto 1.5rem;
  line-height: 1.9;
  font-size: 1.1rem;
  color: #ddd;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}