* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
  font-family: 'Orbitron', sans-serif;
  background-color: #1c1c1c;
  color: #f0f0f0;
  padding: 20px;
  line-height: 1.6;
}

/* Header */
h1 {
  font-size: 2.5rem;
  color: #ffcc00;
  text-shadow: 1px 1px 4px #000;
  text-align: center;
}

/* Navigation */
nav {
  background-color: #2e2e2e;
  padding: 10px;
  margin: 20px 0;
  border-radius: 10px;
  text-align: center;
}
nav a {
  color: #ffcc00;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}
nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Gallery */
.image-gallery {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px 0;
}
.image-box img,
img {
  width: 100%;
  max-width: 300px;
  border: 4px solid #ffcc00;
  border-radius: 10px;
  box-shadow: 0 0 15px #000;
  display: block;
  margin: 20px auto;
  transition: transform 0.3s;
}
.image-box img:hover {
  transform: scale(1.05);
}

/* Sections */
.section {
  margin-bottom: 40px;
}
h2 {
  font-size: 1.8rem;
  margin: 20px 0;
  color: #ffcc00;
  text-align: center;
}

/* Footer */
footer {
  border-top: 1px solid #444;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #aaa;
  text-align: center;
}

/* Responsive Table/Grid */
.table-grid {
  width: 100%;
  border-collapse: collapse;
  margin: 40px auto;
  max-width: 960px;
}
.table-grid th, .table-grid td {
  border: 1px solid #444;
  padding: 12px;
  text-align: center;
}
.table-grid th {
  background-color: #333;
  color: #ffcc00;
}
.table-grid td {
  background-color: #2b2b2b;
}
.table-grid a {
  color: #4db8ff;
  text-decoration: none;
}
.table-grid a:hover {
  text-decoration: underline;
}

/* Fancy Buttons */
.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.fancy-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ffcc00;
  color: #1c1c1c;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.fancy-button:hover {
  background-color: #e6b800;
  transform: scale(1.05);
}

.intro-text {
  text-align: center;
  margin: 20px auto;
  max-width: 800px;
}

.center-text {
  display: block;
  max-width: 800px;
  margin: 20px auto;
  text-align: center;
}
