/* ----------------- Global Styles ----------------- */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: 'Bangers', cursive;
  color: #ff6600;
  margin: 0 0 15px 0;
}

p, li {
  font-size: 1.1em;
  margin-bottom: 10px;
}

/* ----------------- Buttons ----------------- */
a.button, button {
  background: linear-gradient(45deg, #ff6600, #ff3300);
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  font-size: 1.1em;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  border: none;
}

a.button:hover, button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

/* ----------------- Footer ----------------- */
footer {
  text-align: center;
  padding: 25px;
  background-color: #333;
  color: white;
}

footer a {
  color: #ffcc00;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

footer a:hover {
  color: #ffffff;
  text-shadow: 0 0 6px #ffcc00;
}

/* ----------------- Social Links ----------------- */
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  font-size: 1em;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.social-links a.twitter { background: #1DA1F2; }
.social-links a.facebook { background: #1877F2; }
.social-links a.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-links a.bluesky { background: #00acee; }


.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Mobile: icon-only social buttons */
@media (max-width: 500px) {
  .social-links a span { display: none; }
  .social-links a {
    width: 44px;
    height: 44px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    font-size: 1.2em;
  }
}

/* ----------------- Sections ----------------- */
section {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

ul { list-style: none; padding: 0; }
ul li { margin-bottom: 10px; }

/* ----------------- Utility Classes ----------------- */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
