/* General Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Courier New", Courier, monospace;
  font-weight: bolder;
  background: #111;
  color: #f8f8f8;
}

body {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
  line-height: 1.6;
  background: #1a1a1a;
}

/* Headings */
h1 {
  font-size: 3rem;
  color: #00ffcc;
  text-align: center;
  margin-bottom: 0.2em;
  text-shadow: 0 0 5px #00fff7, 0 0 15px #00d9ff;
}

h2 {
  font-size: 2rem;
  margin: 1.5em 0 0.5em;
  color: #44ce92;
  border-bottom: 2px solid #444;
  padding-bottom: 0.2em;
  text-shadow: 0 0 50px #00ff6a, 0 0 15px #136840;
}

h3 {
  font-size: 1.3rem;
  color: #33ddcc;
  text-shadow: 0 0 3px #00ff8c;
}

/* Navigation */
.bottom-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #000;
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.nav-links a {
  color: #00ffee;
  text-decoration: none;
  font-weight: bold;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  transition: background 0.2s;
  text-shadow: 0 0 5px #00fff7, 0 0 15px #00d9ff;
}

.nav-links a:hover {
  background: #00ffee33;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #fff;
}

/* Tagline */
.tagline {
  text-align: center;
  color: #ccc;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

/* Section Styling */
section {
  padding: 1rem 0;
  border-bottom: 1px solid #333;
}

ul {
  padding-left: 1.2rem;
  list-style-type: square;
}

a {
  color: #00ffee;
}

a:hover {
  color: #33ffcc;
}

/* Collapsible Details */
details {
  background: #222;
  border: 1px solid #444;
  border-radius: 6px;
  margin: 1rem 0;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

details[open] {
  background: #1c1c1c;
}

summary {
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.5rem 0;
  list-style: none;
  color: #00ffee;
}

summary:hover {
  color: #66ffe6;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0 1rem;
  font-size: 0.9rem;
  color: #888;
}

/* Responsive */
@media (max-width: 720px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  iframe {
    width: 100% !important;
    height: 400px !important;
  }
}
.platforms a {
  display: inline-block;
  padding: 10px 16px;
  margin: 6px 4px;
  text-decoration: none;
  color: #ffffff;
  background-color: #007BFF;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.25s, transform 0.15s;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.25);
}

.platforms a:hover {
  background-color: #0056d2;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.35);
}

.platforms a:active {
  transform: scale(0.97);
  background-color: #0041a8;
}

.platforms ul {
  list-style: none;
  padding: 0;
}

.platforms li {
  margin-bottom: 10px;
}