body {
    margin: 0;
    padding: 0;
    background-image: url("assets/img/background.jpg");
    background-size: cover;
    background-position: center;
    font-family: Arial, sans-serif;
    background-attachment: fixed;
    font-family: "Roboto Mono", monospace;
    font-weight: 600;
}

.roboto-mono-semibold {
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

body::after {
    content: "";
    background-color: rgba(32, 18, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    animation: fadeIn 0.5s ease-in forwards;
}

.changa-one-regular {
  font-family: "Changa One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.changa-one-regular-italic {
  font-family: "Changa One", sans-serif;
  font-weight: 400;
  font-style: italic;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.7;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #5c2c00;
    z-index: 1;
    height: 4.6vh;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin-right: 7vh;
}

.navbar ul li {
    margin-right: 20px;
}

.navbar ul li:last-child {
    margin-right: 0;
}

.navbar a {
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    position: relative;
    transition: background-color 0.3s ease;
    border: 2px solid transparent;
}

.navbar a:hover {
    background-color: #a06800;
    border-color: #3f2200;
}

.navbar a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.navbar a:hover::before {
    opacity: 1;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    max-height: 200px;
    width: auto;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.main-content {
    text-align: center;
    color: #fff;
    overflow-y: auto;
}

section {
    padding: 50px 20px;
    height: 83.9vh; 
    scroll-snap-align: end;
}

.scroll-container {
    height: 100vh; 
    overflow: auto;
    scroll-snap-type: y mandatory;
}

.welcome {
    text-align: center;
    margin-top: 30vh;
    width: 1000px;
    margin-left: 44vh;
}

.team {
    height: 77vh; 
    width: 100%;
    background-color: #381b00;
    padding-top: 4vh;
    border-radius: 20px;
    text-align: center;
}

.text-team2 {
    text-align: center;
    margin-bottom: 20px;
}

.team-text h1 {
    margin: 0 0 15px 0;
    font-size: 36px;
}

.text-team2 p {
    margin: 0;
    font-size: 18px;
}

.player-card {
    background-color: #472300;
    border-radius: 20px;
    margin: 20px;
    width: 300px; 
    height: calc(76vh - 200px);
    display: inline-block;
    vertical-align: bottom;
    padding: 20px;
    box-shadow: 0 0 10px rgba(37, 11, 0, 0.554);
    transition: transform 0.3s ease;
}

.player-card:hover {
    transform: scale(1.05);
}

.player-avatar {
    margin-top: 3vh;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-avatar img {
    max-width: 87%;
    max-height: 87%;
    border-radius: 50%;
}

.player-info {
    text-align: center;
}

.player-name {
    font-size: 24px;
    margin: 0px 0 5px 0;
}

.player-rank {
    font-size: 18px;
    margin: 5px 0;
}

.joinus {
    padding-top: 30vh;
    text-align: center;
}

.joinus h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.joinus a {
    display: inline-block;
    margin: 0 20px;
    vertical-align: middle;
}

.joinus img {
    height: 80px;
    width: auto;
    cursor: pointer;
    transition: all 0.4s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    display: block;
}

.joinus a:hover img {
    transform: scale(1.15) translateY(-5px);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.joinus a:active img {
    transform: scale(1.05) translateY(-3px);
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #5c2c00;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    font-size: 14px;
}

.iframe {
    border: none;
    border-radius: 20px;
}

.pdf-container {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    margin-top: 11vh;
    width: 75%;
    max-width: 1300px;
    font-size: 20px;
    color: #fff;
}

.pdf-container a {
    color: #cb841a;
}

.application-section {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    margin-top: 25vh;
}

.application-btn-section {
    display: flex;
    flex-direction: row; 
    align-items: center; 
    justify-content: center;
    margin-top: 5vh;
}

.application-section h1 {
    color: #cb841a;
    font-size: 45px;
}

.application-section p {
    color: #fff;
    text-align: center;
    width: 1000px;
}

.application-window {
    width: 200px;
    height: 100px;
    background-color: #da7b00; 
    border-radius: 10px; 
    padding: 10px; 
    box-shadow: 0 0 10px rgba(14, 6, 0, 0.894); 
    margin-bottom: 20px;
    text-align: center;
    flex: 0 0 auto; 
    margin-right: 20px;
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.application-window::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(1.5px);
    z-index: 1;
}

.application-window > * {
    position: relative;
    z-index: 2;
}

.application-header {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 10px;
    color: #fff;
}

.application-header2 {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 10px;
    margin-top: 10px;
    color: #c1c1c1;
}

.apply-button {
    background-color: #251500; 
    color: #fff; 
    padding: 10px 20px; 
    border-radius: 10px; 
    font-size: 16px; 
    cursor: pointer; 
    transition: background-color 0.3s ease; 
    border: 2px solid #251500;;
}

.apply-button:hover {
    background-color: #a06800; 
}

.application-form {
    width: 800px; 
    margin-bottom: 8vh; 
}

.question {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    margin-bottom: 20px;
    width: 100%;
}

.question label {
    margin-bottom: 5px; 
}

.answer-input {
    width: 100%; 
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #251500;
    border-radius: 10px;
}

.send-btn-section {
    display: flex;
    justify-content: center; 
}

.send-button {
    display: flex;
    justify-content: center; 
    background-color: #251500; 
    color: #fff; 
    padding: 10px 20px; 
    border: 2px solid #251500; 
    border-radius: 10px; 
    font-size: 16px; 
    cursor: pointer; 
    transition: background-color 0.3s ease; 
    box-shadow: 0 0 60px #572a00a4;
}

.send-button:hover {
    background-color: #a06800; 
}

.thankyou-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 35vh;
    margin-left: 45vh;
    background-color: #381b00;
    width: 500px;
    height: 300px;
    border-radius: 20px;
}

.thankyou-section h1 {
    color: #cb841a;
    font-size: 55px;
    margin: 0;
    text-align: center;
}

.thankyou-section p {
    color: #fff;
    font-size: 20px;
    margin: 10px 0 0 0;
    text-align: center;
}

.gifthankyou {
    position: absolute;
    top: 20vh; 
    left: 110vh; 
}

.gifthankyou img {
    width: 600px;
}

::-webkit-scrollbar {
    width: 12px; 
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1); 
}

::-webkit-scrollbar-thumb {
    background-color: #151827a9; 
    border-radius: 6px; 
    border: 3px solid rgba(0, 0, 0, 0); 
}

.project-leader {
    color: #f1c40f;
    text-transform: uppercase;
    text-shadow:
        0 0 5px #f1c40f,
        0 0 10px #f1c40f,
        0 0 20px rgba(241, 196, 15, 0.8);
}

.co-owner {
    color: #c27c0e;
    text-transform: uppercase;
    text-shadow:
        0 0 5px #c27c0e,
        0 0 10px #c27c0e,
        0 0 20px rgba(241, 162, 15, 0.8);
}

.developer {
    color: #1c4da1;
    text-transform: uppercase;
    text-shadow:
        0 0 5px #1c4da1,
        0 0 10px #1c4da1,
        0 0 20px rgba(41, 62, 255, 0.8);
}

.head-admin {
    color: #c1121f;
    text-transform: uppercase;
    text-shadow:
        0 0 5px #c1121f,
        0 0 10px #c1121f,
        0 0 20px rgba(214, 14, 14, 0.8);
}
.application-window-lspd {
    background-image: url('assets/img/lspd-bg.png');
}

.application-window-ems {
    background-image: url('assets/img/ems-bg.png');
}

.application-window-lsc {
    background-image: url('assets/img/lsc-bg.png');
}

.application-window-crime {
    background-image: url('assets/img/crime-bg.png');
}

.application-window-tsupport {
    background-image: url('assets/img/tsupport-bg.png');
}