/* ========== BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0f0f1f;
  color: #f3f3f3;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: #7fffd4;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #00ffe0;
}

/* ========== CONTAINERS & SECTIONS ========== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 4rem 0;
}

.section {
  margin-bottom: 6rem;
  animation: fadeIn 1.2s ease-out;
}

h1, h2, h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

p {
  color: #cccccc;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

/* ========== HEADER ========== */
.header {
  background-color: #151538;
  padding: 1.5rem 0;
  border-bottom: 1px solid #292955;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header h1 {
  font-size: 2.2rem;
  color: #7fffd4;
  text-shadow: 0 0 6px #00ffe0;
  animation: glowIn 3s infinite alternate;
}
@keyframes glowIn {
  from { text-shadow: 0 0 6px #00ffe0; }
  to { text-shadow: 0 0 20px #00ffe0; }
}

/* ========== GRID SYSTEM ========== */
.grid {
  display: grid;
  gap: 2rem;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media(max-width: 768px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ========== BUTTONS ========== */
.button {
  display: inline-block;
  background-color: #00ffe0;
  color: #000;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s ease;
  box-shadow: 0 0 10px #00ffe0;
}
.button:hover {
  background-color: #7fffd4;
  box-shadow: 0 0 16px #00ffe0;
}

/* ========== FOOTER ========== */
footer {
  background-color: #151538;
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid #292955;
  color: #888;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ========== MONETIZATION BLOCKS ========== */
.tile {
  background: #191933;
  border: 1px solid #333;
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 12px #00ffe0;
}
.tile h2 {
  color: #7fffd4;
}
.tile p {
  font-size: 0.9rem;
  color: #bbb;
}

/* ========== SPECIAL ========== */
.glow-text {
  color: #00ffe0;
  text-shadow: 0 0 6px #00ffe0, 0 0 10px #00ffe0;
}
