/* General page styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #001100;
    background: linear-gradient(to right, #111111, #333333, #111111);
    color: #ffffff;
    min-height: 100vh;
}

/* Logo */

header{
    width: 100%;
    height: 70px;
    background-color: #004400;
    text-align: left;
    position: sticky;
    z-index: 100;
    box-shadow: 0 0 10px #007700;
}

.logo {
    width: 50px;
    height: 50px;
    margin: 10px;
    border-radius: 50%;
    box-shadow: 0 0 20px #00ff00;
    background-color: #002200;
}

a{
    color: #00ff00;
}

footer{
    width: 100%;
    text-align: center;
    color: #88ff88;
    background-color: #004400;
    box-shadow: 0 0 10px #007700;
    font-weight: bold;
}

.footer-icons {
    height: 100px;
    width: 100%;
    background-color: #001100;
}

.footer-content{
    padding: 20px;
}

.center-class{
    text-align: center;
}

/* Main heading */
h1 {
    margin-top: 20px;
    font-size: 2.5rem;
    color: #00ff00;
    text-shadow: 0 0 5px #00aa00;
}

/* Auth sections */
p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

/* Divider */
hr {
    border: 1px solid #00aa00;
    width: 60%;
    margin: 2rem auto;
}

button{
    padding: 12px 24px;
    background-color: #00cc00;
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 0 10px #00ff00;
}

.game-icons{
    width: 50%;
    height: auto;
}

/* Install Button */
#installButton {
    padding: 12px 24px;
    background-color: #00cc00;
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 0 10px #00ff00;
    margin-top: 20px;
    transition: background-color 0.3s, transform 0.2s;
}

#installButton:hover {
    background-color: #00ff00;
    transform: scale(1.05);
}

/* Login/signup forms (optional) */
form {
    background: #001500;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    box-shadow: 0 0 10px #004400;
}

input[type="text"],
input[type="password"],
input[type="email"] {
    width: 90%;
    padding: 5%;
    border-radius: 5px;
    border: 1px solid #007700;
    background: #002200;
    color: #ffffff;
}

input[type="submit"] {
    background: #00cc00;
    color: #000;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 1rem;
}

input[type="submit"]:hover {
    background: #00ff00;
}

 .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* allows items to wrap onto a new row */
    width: 90%;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  text-decoration: none;
}

.container .box {
  flex: 1 1 calc(50% - 10px); /* each box takes up 50% of container width */
  box-sizing: border-box; /* so padding/borders don’t mess up widths */
  padding: 20px;
  margin: 5px;
  border-radius: 10px;
  box-shadow: 0 0 10px #333333;
  text-align: center;
  background: #222222;
  text-decoration: none;
}

.box:hover {
  background-color: #222222;
  transform: scale(1.01);
}

nav{
    position: fixed;
    bottom: 20px;
    right: 30px;
    background-color: #004400;
    border-radius: 10px;
    padding: 0px 20px;
    box-shadow: 0 0 10px #007700;
    color: #00ff00;
    z-index: 300;
    cursor: pointer;
    font-weight: bold;
}

#navIcon{
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

#navMenu{
    width: 300px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 200;
    background-color: #004400;
    padding: 20px;
    box-shadow: 0 0 10px #007700;
    overflow-y: scroll;

    height: 100vh;    
    height: 100dvh;
    display: none;
}

.landing-con {
  position: relative;
  width: 100%;
  height: calc(100vh - 70px);
  height: calc(100dvh - 70px);
  background-color: black;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.landing-overlay{
    position: absolute;
    top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    z-index: 2;
}

.landing-overlay h2{
    font-weight: blod;
    font-size: 4em;
    text-align: center;
    text-shadow: 0 0 10px #ffffff;
    color: white;
    margin: 0;
    padding: 0;
}

.landing-overlay p{
    font-weight: blod;
    text-align: center;
    text-shadow: 0 0 10px #ffffff;
    color: white;
}

.scroll-link{
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.tt{
    background-color: #002200 !important;
    box-shadow: 0 0 10px #003300 !important;
}

.tt:hover{
    background-color: #002200;
}

.ws{
    background-color: #000022 !important;
    box-shadow: 0 0 10px #000033 !important;
}

.ws:hover{
    background-color: #000022;
}

.signup-form{
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.signup-form-center{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.signup-form-center input{
    margin-top: 10px;
    padding: 10px;
    max-width: 300px;
}
