@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Quicksand:wght@300..700&family=Sixtyfour&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;

.bg-nqxblack {
    background-color: #1D1923;
}

.bg-nqxbtnblack {
    background-color: #30253F;
}

.bg-nqxpanelblack {
    background-color: #141A26;
}

.bg-nqxfooter {
    background-color: #13141F;
    border-top: 1px solid white;
}

.bg-success {
    background-color: #98ff98;
}

.bg-error {
    background-color: #ff6666;
}

.bg-nqxhomeimg{
    background-size: 100% 75vh;
}

@media screen and (max-height: 950px) {
    .bg-nqxhomeimg{
        background-size: 100% 150vh;
    }
}

@media screen and (max-height: 1600px) {
    .bg-nqxhomeimg{
        background-size: 100% 100vh;
    }
}

.flex-wrapper {
    display: flex;
    min-height: 93vh;
    flex-direction: column;
    justify-content: space-between;
}

.min-h-half {
    min-height: 51.5vh;
}

.border-nqxorange-1 {
    border-color: #FFA400;
}

.bg-nqxorange-2 {
    background-color: #FD7A19;
}

.bg-nqxorangewave {
    background-color: orange;
}

.border-nqxorange-2 {
    border-color: #FD7A19;
}

.text-white-fade {
    color: rgba(255, 255, 255, 0.7);
}

.text-black-fade {
    color: rgba(0, 0, 0, 0.7);
}

.text-nqxorange {
    color: #F47909;
}

.hp {
    display: none;
}

.hr-white-fade{
    height: 1px;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
}

h1 {
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 5px !important;
}

h3 {
    font-family: "Bebas Neue", serif;
    font-size: 30px;
}

h4 {
    font-family: "Quicksand", serif;
    font-size: 10px;
}

p {
    font-family: "Quicksand", serif;
}

li::marker {
    color: #F47909;
}

input {
    border: none;
}

.nqxunderline-text {
    display: inline;
    background: linear-gradient(to bottom, transparent 55%, #E29D2E 45%);
}

.required-field::after {
    content: "*";
    color: red;
    margin-left:2px
}

.switch {
    display: inline-block;
    height: 20px;
    position: relative;
    width: 40px;
}

.switch input {
    display:none;
}

.slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

.slider:before {
    background-color: #fff;
    bottom: 2px;
    content: "";
    height: 16px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 16px;
}

input:checked + .slider {
    background-color: #FD7A19;
}

input:checked + .slider:before {
    transform: translateX(16px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.navlink {
    font-family: "Quicksand", serif;
    font-size: 14px;
}

.newspanel {
    height:350px;
}

.newstag {
    background-color:#fff;
    color:#111;
    display:inline-block;
    padding-left:8px;
    padding-right:8px;
    text-align:center;
    font-family: "Quicksand", serif;
    font-size: 14px;
}

.gamepaneltag {
    background-color: #FD7A19;
    border-bottom-left-radius: 33px;
    border-top-right-radius: 0.125rem;
    color:#FFF;
    display:inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 35px;
    padding-right: 25px;
    text-align:center;
    font-family: "Quicksand", serif;
    font-size: 14px;
}

/* Create a Parallax Effect */
.parabgimg-1, .parabgimg-1, .parabgimg-1 {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* First image (Logo. Full height) */
.parabgimg-1 {
    min-height: 100%;
}

.video-container {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.video-container video {
    /* Make video to at least 100% wide and tall */
    min-width: 100%;
    min-height: 100%;

    /* Setting width & height to auto prevents the browser from stretching or squishing the video */
    width: auto;
    height: auto;

    /* Center the video */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}


.text-container {
    color: #fff; /* Text color to contrast the background */
}

.animated-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

.animated-text:nth-child(2) {
    animation-delay: 1s; /* Delay for the second text element */
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wave-wrapper {
    position: relative;
    overflow: hidden;
}

.wave-top,
.wave-bottom {
    width: 100%;
    height: 300px;
    line-height: 0;
}

.wave-top svg,
.wave-bottom svg {
    display: block;
    width: 100%;
    height: 100%;
}

.wave-content {
    background: linear-gradient(165deg, #fca604 0%, #fd7a19 100%);
}

.client-wrapper {
    position: relative;
    overflow: hidden;
}
