/* Reset some default styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

/* Cyberpunk theme */
:root {
    --primary-color: #0DF;
    --secondary-color: #F0F;
    --background-color: #222;
    --input-background-color: #333;
    --input-color: #FFF;
    --body-text-color: #CCC;
    --title-color: #FFF;
}

body {
    background-color: var(--background-color);
    color: var(--primary-color);
}

h1, h3 {
    color: var(--title-color);  
    border-bottom: 2px solid var(--secondary-color);
}

/* Ensure the header image takes the full width of the screen */
header .row img {
    width: 100%;
    object-fit: cover;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  background-color: #333;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  font-size: 18px;
  line-height: 1.5;
  color: var(--body-text-color);
  text-shadow: 1px 1px 1px #000;
}

li:hover {
  box-shadow: 0 4px 8px rgba(13, 221, 255, 0.6), inset 0 0 20px rgba(13, 221, 255, 0.6);
  background-color: #222;
  color: #fff;
}

/* Form styles */
form {
  display: flex;
  margin-bottom: 15px;
}

input[type="text"] {
  flex-grow: 1;
  background-color: var(--input-background-color);
  color: var(--input-color);
  border: 1px solid var(--secondary-color);
  border-radius: 5px;
  padding: 5px 10px;
  margin-right: 10px;
  outline: none;
  transition: all 0.3s ease;
}

input[type="text"]:focus {
  box-shadow: 0 0 10px var(--secondary-color);
}

button[type="submit"] {
  background-color: var(--secondary-color);
  color: var(--background-color);
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  padding: 10px 20px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}

button[type="submit"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

button[type="submit"]:hover {
  color: var(--primary-color);
  box-shadow: 0 0 15px var(--secondary-color);
}

button[type="submit"]:hover:before {
  left: 100%;
}

a.bottom-link {
  display: block;
  font-size: 24px;
  font-weight: bold;
  background-color: var(--secondary-color);
  color: var(--background-color);
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  margin: 100px auto;
  padding: 25px;
  text-align: center;
  cursor: pointer;
}

a.bottom-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

a.bottom-link:hover {
  color: var(--primary-color);
  box-shadow: 0 0 15px var(--secondary-color);
}

a.bottom-link:hover:before {
  left: 100%;
}