:root {
    --primary-color: #ff0000;
    --primary-color-hover: #a80000;
    --text-color: #fff;
}

/* Resetting styles for consistency */
* {
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background-color: #1a1a1a; /* Dark background */
    color: var(--text-color);
}

/* Header styling */
header {
    width: 100%;
    height: 60px;
    padding: 0 10px 0 10px;
    background-color: var(--primary-color); /* Red background */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 1.5em;
}

header nav a {
    text-decoration: none;
    margin: 0 10px;
}

header nav a:hover {
    text-decoration: underline;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar .nav-links {
  display: flex;
  list-style: none;
}

.navbar .nav-links .nav-item {
  padding: 15px 10px 15px 10px;
}

.navbar .nav-links .nav-item:hover {
  background-color: var(--primary-color-hover);
}

.navbar .nav-links a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Dropdown Styles */
.navbar .dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    list-style: none;
    padding: 0;
    min-width: 150px;
}

.navbar .dropdown-menu li {
    border-bottom: 1px solid #555;
}

.navbar .dropdown-menu li:last-child {
    border-bottom: none;
}

.navbar .dropdown-menu a {
    padding: 10px;
    color: white;
    display: block;
}

/* Show dropdown on hover */
.navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
      display: block;
      color: white;
      border: 1px solid #fff;
      border-radius: 8px;
      padding: 10px;
      transition: border-color 0.3s ease;
  }

  .menu-toggle:hover {
    background-color: var(--primary-color-hover);
  }

  .navbar .nav-links {
      display: none; /* Hide menu by default */
  }

  .navbar .nav-links.active {
      display: flex; /* Show menu when toggled */
      flex-direction: column;
      background-color: var(--primary-color);
      position: absolute;
      top: 44px;
      right: 0;
      width: 200px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }

  .navbar .nav-links a {
      padding: 10px;
      text-align: center;
  }
}
/* Container styling */
.container {
    text-align: center;
    padding: 40px;
    border-radius: 8px;
    background-color: #333; /* Dark container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin: 10px;
}

a.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: var(--primary-color); /* Darker red for button */
    color: var(--text-color);
    border-radius: 4px;
    text-decoration: none;
}

a.button:hover {
    background-color: var(--primary-color-hover);
}

/* Footer styling */
footer {
    width: 100%;
    padding: 10px 20px;
    background-color: var(--primary-color); /* Red background */
    text-align: center;
    position: absolute;
    z-index: -1;
}

.social-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding-top: 10px;
}

.social-icons a {
  text-decoration: none;
  font-size: 30px;
  color: #000;
  transition: color 0.3s ease;
}

.social-icons a.youtube:hover {
  color: #FF0000;
}

.social-icons a.twitter:hover {
  color: #1DA1F2;
}

.social-icons a.github:hover {
  color: #fff;
}

.social-icons a.twitch:hover {
  color: #9146FF;
}

.social-icons a.steam:hover {
  color: #fff;
}

.image-container {
  border-radius: 8px;
  margin: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: #333;
}

.image-container .image {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 10px;
}

.image-container .image:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); 
}
