body{
    color: white;
    margin: 0;
    background-color: #040405;
    max-width: 2000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Orbitron;
    margin: auto;
}
header {
    max-width: 2000px;
    width: 100%;
    margin: 0 auto;
}
.logo_header{
    max-width: 2000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem clamp(4rem, 200px, 10rem);
}
.logo_header img {
    width: 16vw;
    height: auto;
}
h1 {
    margin:0;
    font-weight: 900;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
    font-size: clamp(0.5rem, 35px, 3.5rem);
}
h2 {
    margin:0;
    font-weight: 900;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
    font-size: clamp(0.5rem, 35px, 3.5rem);
}
.divider{
    max-width: 2000px;
    width: 100%;
    margin: 0 auto;
}
.vip-only{
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.vip-only img {
    max-width: 70vw;
    max-height: 1000px;
    width: auto;
    padding: 30px;
}

.mobile {
    display: none;
}
.cards{
    width: 100%;
    margin-block: 5vh;
    background-image: url("/static/images/cards_background.5d16d8c85855.gif");
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.cards .content{
    width: 95%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: top;
    justify-items: center;
}
.card {
    width: 48vw;
    max-width: 520px;
    height: 30vw;
    max-height: 325px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 83%,
        90% 100%,
        0 100%
    );
    border-radius: 12px;
    background: rgba(148, 148, 148, 0.1);
    backdrop-filter: blur(50px);
    transition: background 1.5s ease;
}
.card-border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.card-border path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.card:hover {
    background: rgba(148, 148, 148, 0.3);
}
.no-active:hover {
    background: rgba(148, 148, 148, 0.1);
}
.card .coming-soon-label{
    position: absolute;
    top: 10px;
    left: 10px;
}
.card .logo{
    max-width: 75%;
}
.card .coming-soon{
    max-width: 75%;
    filter: brightness(0.5);
}

.hero {
    position: relative;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    position: relative;
    max-width: 1200px;
    width: 99%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    z-index: 2;
}

.hero-frame {
    position: absolute;
    max-width: 1200px;
    z-index: 0;
}

.hero-frame img {
    max-width: 1200px;
    object-fit: cover;
}

.hero-image {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.hero-image img {
    width: 520px;
    height: auto;
    border-radius: 40px;
    object-fit: cover;
}

.hero-card {
    z-index: 2;
    max-height: 180px;
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.hero-card h2 {
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    font-size: 2rem;
    line-height: 1.4;
}

.cta-button {
    background: white;
    color: black;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-button:hover {
    background: #eee;
    transform: translateY(-2px);
}

.close-btn {
    position: absolute;
    top: 0.6rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

footer{
    margin-top: 50px;
    height: 120px;
}

footer img {
    max-width: 1200px;
    width: 100%;
    object-fit: cover;
}

footer .content{
    position: relative;
    z-index: 2;
    top: -100px;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: space-around;
    align-items: center;
}
.overlay{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    backdrop-filter: blur(30px);
    background: #000000CC;
}
.modal{
    position: fixed;
    top: 50px;
    z-index: 10;
    width: 70%;
    backdrop-filter: blur(50px);
    padding: 25px;
    margin: 10px;
    background: linear-gradient(90deg, rgba(191, 191, 191, 0.2) 0%, rgba(124, 124, 124, 0.2) 100%);
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    border-radius: 12px;
    border: 1px solid #FFFFFFAB;
}
.scroll {
    height: 80%;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE & Edge */
}
.scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}
.modal header{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.modal header div{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
#logo-container{
    justify-content: start;
    flex-wrap: wrap;
    gap: 1rem;
}
.modal header .logo{
    height: 40px;
    max-width: 30%;
    object-fit: contain;
}
.modal header .croos{
    height: 40px;
    cursor: pointer;
}
.modal h2{
    font-family: "Russo One", sans-serif;
    letter-spacing: 1px;
    font-size: 1.3rem;
    margin-block: 10px;
}
.modal pre{
    font-size: 1.3rem;
    font-family: Montserrat;
    white-space: pre-wrap;
}
select{
    cursor: pointer;
    background: #808080;
    color: white;
    font-family: "Segoe UI Emoji", "Noto Color Emoji", "Apple Color Emoji", "Segoe UI", sans-serif;
}
option{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 10px;
    background: #808080;
}
option:hover{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #293133;
}
form{
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
form .contacts{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
input,
textarea {
    padding: 12px 16px;
    margin-bottom: 16px;
    background-color: #2c2c2c;
    border: 1px solid #444;
    border-radius: 6px;
    color: #ddd;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

input::placeholder,
textarea::placeholder {
    color: #888;
}

input:focus,
textarea:focus {
    border-color: #666;
}
form .cta-button{
    width: 30%;
    align-self: center;
}
@media (max-width: 450px) {
    body{
        max-width: 450px;
        font-size: 1rem;
        font-family: Orbitron;
    }
    h1 {
        font-size: 1rem;
    }
    .logo_header{
        max-width: 450px;
        padding: 1rem 0.6rem;
    }
    .logo_header img {
        width: 130px;
    }
    .vip-only{
        height: fit-content;
    }
    .desktop {
        display: none;
    }
    .mobile{
        display: block;
    }
    .vip-only .mobile {
        padding: 0;
        max-width: 450px;
        width: 100%;
    }
    .cards .content, .cards .content2{
        width: 95%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .card {
        width: 300px;
        height: 187.5px;
    }
    .hero-container{
        height: 640px;
    }
    .hero .mobile{
        width: 100%;
        position: absolute;
        z-index: 0;
    }
    .hero .mobile img{
        width: 100%;
    }
    .hero-card {
        position: relative;
        z-index: 2;
        top: 25%;
        width: 90%;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .hero-card h2 {
        text-align: center;
        font-size: 1.5rem;
    }
    .hero .cta-button{
        width: 80%;
        align-self: center;
    }
    footer .content {
        top: -180px;
        flex-direction: column;
    }
    .modal header .logo{
        max-width: 200px;
    }
    .modal header div{
        align-items: flex-start;
    }
    form .contacts{
        display: grid;
        grid-template-columns: 1fr;
        gap: unset;
    }
}