/* General Body Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: url("https://raw.githubusercontent.com/gasterikuri/project-black-raven-site/main/image_2025-05-30_201919344.png") 
    no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

/* Header */
header {
  background: linear-gradient(135deg, #333 30%, #444);
  color: #8c00ff;
  text-align: center;
  padding: 1.5em;
  font-size: 26px; /* Slightly larger for emphasis */
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Enhanced depth */
}

/* Navigation */
nav {
  background-color: rgba(68, 68, 68, 0.95); /* Slight transparency for better blending */
  color: #ffffff;
  padding: 1em;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px; /* Increased spacing */
  border-radius: 8px;
}

nav a {
  color: #ffffff;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

nav a:hover {
  background: #8c00ff;
  transform: scale(1.08);
}

/* Headings */
h1 {
  text-shadow: 3px 3px rgba(255, 0, 0, 0.7); /* More prominent shadow */
  font-size: 34px;
  text-align: center;
  margin-top: 25px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Improved Text Contrast */
p {
  font-size: 18px;
  line-height: 1.8;
  color: #f4f4f4;
  text-align: center;
  max-width: 800px;
  margin: 20px auto;
}
