/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: rgba(52, 52, 52, 1);
  font-family: "League Spartan";
  line-height: 1.6;
  color: #333;
}
/* Header */
header {
  background: rgba(255, 107, 0, 1);
  color: white;
  padding: 32px;
  text-align: center;
  margin-bottom: 16px;
}
header h1 {
  font-family: "Libre Baskerville";
  font-size: 25.6px;
  margin-bottom: 8px;
}
header h2 {
  color: #e8e8e8;
  margin-bottom: 16px;
  font-size: 16px;
  font-family: "Libre Baskerville"; 
}
/* Content Area */
.content {
  max-width: 95%;
  margin: 0 auto;
  padding: 32px;
  background-image: url(https://snipboard.io/HYEQBK.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: calc(100vh - 200px);
}
.content section {
  background-position: center;
  background-size: cover;
  padding: 32px;
  margin-bottom: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  isolation: isolate;
}
.content section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(52, 52, 52, 0.8);
  border-radius: 8px;
  z-index: -1;
}
.content h2 {
  color: #e8e8e8;
  margin-bottom: 16px;
  font-size: 27.2px;
  font-family: "Libre Baskerville";
}
.content p {
  margin-bottom: 16px;
  color: #E8E8E8;
  line-height: 1.3;
  max-width: 800px;
}
.content strong {
  color: #E8E8E8;
  font-weight: 600;
}
/* Back Link */
.back-link {
  display: inline-block;
  background: rgba(0, 102, 255, 0.73);
  color: #ecf0f1;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 4px;
  transition: background 0.3s;
  margin-bottom: 32px;
  font-weight: 600;
}
.back-link:hover {
  background: rgba(50, 82, 123, 0.8);
}
/* Footer */
footer {
  background: rgba(255, 107, 0, 1);
  color: white;
  text-align: center;
  padding: 24px;
}
footer a {
  color: white;
  text-decoration: none;
  margin: 0 16px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background 0.3s;
  background: rgba(255, 255, 255, 0.2);
}
footer a:hover {
  background: rgba(0, 102, 255, 0.73);
}
/* Mobile Styles */
@media (max-width: 768px) {
  header h1 {
    font-size: 20.8px;
  }
  header h2 {
    font-size: 14.4px;
  }
  .content {
    padding: 16px;
  }
  .content section {
    padding: 24px;
  }
  .content h2 {
    font-size: 22.4px;
  }
}