/* navbar stuff */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #1b1b1b;
    border-bottom: 3px solid #ff5555;

    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;

    box-sizing: border-box; /* makes padding stay inside width */
}

.logo {
    color: #ff5555;
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    margin: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: #ff5555;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.1s ease-in-out, text-shadow 0.1s ease-in-out;
}

.nav-links li a:hover {
    color: #fff;
    text-shadow: 0 0 8px #ff0000;
    transform: rotate(-2deg);
}

/* bottom nav */
.bottom-nav {
    position: fixed; /* sticks to viewport */
    bottom: 0; /* at the bottom */
    left: 0; /* span full width */
    width: 100%;
    background-color: #1b1b1b; /* match theme */
    border-top: 3px solid #ff5555;
    padding: 10px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 40px;
    z-index: 9999;   
}

.bottom-nav a {
    color: #ff5555;/* same red as logo/nav */
    text-decoration: none;/* remove underline */
    font-weight: bold;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    padding: 5px 10px;
    transition: transform 0.1s ease-in-out, text-shadow 0.1s ease-in-out, color 0.2s;
}

.bottom-nav a:hover {
    color: #fff; /* highlight on hover */
    text-shadow: 0 0 8px #ff0000; /* red glow like navbar hover */
    transform: rotate(-2deg); /* slight tilt */
}

.navbar-user-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.navbar-user {
    color: #ff5555;
    font-weight: bold;
}

.navbar-form {
    display: inline-block;
    margin: 0;
}

.navbar-button {
    display: inline-block;
    background-color: #ff5555;
    color: #1b1b1b;
    font-weight: bold;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 6px 15px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-size: 0.9rem;
}

.navbar-button:hover {
    background-color: #1b1b1b;
    color: #ff5555;
    border: 2px solid #ff5555;
    box-shadow: 0 0 10px #ff5555;
    transform: translateY(-2px) rotate(-1deg);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .content-wrapper {
    padding-top: 70px; /* adjust to navbar height */
}


html, body {
    height: 100%;
    margin: 0;
}

.scroll-wrapper {
    min-height: 100vh;
    overflow-y: auto; /* better than scroll */
    scroll-snap-type: y mandatory;
}

.panel {
    height: 100vh; /* each panel fills screen */
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}





