/* Styles extracted from index.html */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #000; /* Black background */
  color: #ffa500;   /* Orange text */
}

header {
  padding: 10px 20px;
  text-align: center;
}

header h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffa500;
}

header p {
  font-size: 1.2em;
  margin-bottom: 1em;
  color: #fff; /* White for contrast */
}

header p a {
  color: #ffa500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

header p a:hover {
  color: #ffcc00;
  text-decoration: underline;
}

header .header-link {
  font-size: 1rem;
  display: inline-block;
  margin-top: 0.5rem;
}

/* Dragon Showcase */
.dragon-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  background: #000;
}

.dragon-frame {
  width: 300px;
  height: 300px;
  background: #000;
  border: 4px solid #ffa500;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 30px rgba(255, 165, 0, 0.5), inset 0 0 30px rgba(255, 165, 0, 0.1);
  animation: dragon-glow 3s ease-in-out infinite;
}

.dragon-logo {
  width: 250px;
  height: 250px;
  object-fit: contain;
}

@keyframes dragon-glow {
  0%, 100% {
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.5), inset 0 0 30px rgba(255, 165, 0, 0.1);
  }
  50% {
    box-shadow: 0 0 50px rgba(255, 165, 0, 0.8), inset 0 0 40px rgba(255, 165, 0, 0.2);
  }
}

/* Responsive design for dragon showcase */
@media (max-width: 768px) {
  .dragon-frame {
    width: 200px;
    height: 200px;
    font-size: 120px;
    border: 3px solid #ffa500;
  }
}

/* Main Content */
main {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 20px;
}

section {
  background: rgba(255, 165, 0, 0.05);
  border: 2px solid #ffa500;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

section h2 {
  font-size: 2rem;
  color: #ffa500;
  margin-top: 0;
  margin-bottom: 1rem;
  border-bottom: 2px solid #ffa500;
  padding-bottom: 0.5rem;
}

section h3 {
  font-size: 1.4rem;
  color: #ffcc00;
  margin-top: 1rem;
}

section p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

section ul {
  list-style: none;
  margin: 1rem 0;
  padding-left: 0;
}

section ul li {
  color: #fff;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

section ul li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #ffcc00;
  font-weight: bold;
}

section a {
  color: #ffa500;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

section a:hover {
  color: #ffcc00;
  text-decoration: underline;
}

/* Platform Cards */
.platform-card {
  background: rgba(255, 165, 0, 0.08);
  border: 1px solid #ff7f00;
  border-radius: 6px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  transition: all 0.3s ease;
}

.platform-card:hover {
  background: rgba(255, 165, 0, 0.12);
  border-color: #ffa500;
  transform: translateY(-2px);
}

.platform-card h3 {
  margin-top: 0;
  color: #ffcc00;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background: #ffa500; /* Orange button */
  color: #000;         /* Black text */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background: #ff7f00; /* Darker orange on hover */
  color: #fff;
}

footer {
  margin-top: 80px;
  padding: 20px;
  font-size: 0.9em;
  opacity: 0.7;
  color: #ffa500;
  text-align: center;
  border-top: 2px solid #ffa500;
}

footer a {
  color: #ffa500;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffcc00;
}

footer .footer-link {
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 1rem;
  }

  section {
    padding: 1.5rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  section h3 {
    font-size: 1.2rem;
  }

  .platform-card {
    padding: 1rem;
  }
}