/* General Styling */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', Arial, Poppins;
    font-style: normal;
}

:root {
    --bg-color: #0D0D0D;
    --snd-bf-color: #141414;
    --text-color: #fff;
    --main-color: #59B2F4;
    --text-color-2: hsla(40, 22%, 92%, .6);
    --red: #f31616;
}

body {
    min-height: 100vh;
    width: 100%;
    background: var(--bg-color);
    color: var(--text-color);
}

header {
    top: 5%;
    left: 5%;
    position: fixed;
    z-index: 999;
}

header img {
    height: 50px;
    width: auto;
}

.container {
height: auto;
width: auto;
}

.heading {
    font-size: 90px;
    font-weight: 900;
}

h1 {
    font-size: 40px;
    font-weight: 700;
}

h2 {
    font-size: 30px;
    font-weight: 700;
}

h3 {
    font-weight: 100;
    font-size: 18px;
    font-family: "Questrial", sans-serif;
}

.description {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: url("../images/event-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.description-bg {
    height: 100%;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(transparent 10%, #0D0D0D 90%, #0D0D0D 100%);
    backdrop-filter: blur(0px);
}

.description-main {
    background: rgb(13, 13, 13, 0.25);
    height: 100%;
    min-height: 100vh;
    max-width: 100%;
    padding: 10% 5% 5% 10%;
}

.description-main h1 {
    margin-top: 40px;
}

.description-main h2, .description-main p {
    padding: 10px;
    padding-left: 0;
}

.description-main h2 {
    padding-bottom: 5px;
}

.description-main h3 {
    padding-bottom: 25px;
    color: var(--text-color-2);
}

.description-main p {
    max-width: 1000px;
    font-family: "Questrial", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: var(--text-color-2);
    padding-bottom: 40px;
}

.button {
    background: var(--main-color);
    font-size: 16px;
    color: var(--bg-color);
    letter-spacing: .1rem;
    font-weight: 600;
    transition: .5s ease;
    height: 50px;
    width: 200px;
    border-radius: 2px;
    border: 2px solid var(--main-color);
}
#ad-zap-button-1, #ad-zap-button-2 {
    background: var(--red);
    border: 2px solid var(--red);
    color: var(--bg-color);
}
#ad-zap-button-1:hover, #ad-zap-button-2:hover {
    background-color: transparent;
    color: var(--red
    );
}
#ad-zap-button-1:hover .fa-arrow-right , #ad-zap-button-2:hover .fa-arrow-right{
    transform: translateX(3px);
    color: var(--red);
}


.button:hover {
    background-color: transparent;
    color: var(--main-color);
}

.button i{
    transform: translateX(0);
    transition: transform 0.5s ease;
}

.button:hover .fa-arrow-right{
    transform: translateX(3px);
    color: var(--main-color);
}

.guidelines, .contact {
    margin: 0;
    width: 100%;
    overflow: hidden;
    padding: 5% 5% 5% 10%;
}

.guidelines {
    background-color: var(--bg-color);
}

.guidelines h1 {
    padding-bottom: 10px;
}

.guidelines h3 {
    padding-bottom: 10px;
    font-family: "Questrial", sans-serif;
}

li {
    padding-bottom: 5px;
    font-family: "Questrial", sans-serif;
}

.prize{
    padding-top: 0;
    padding-top: 25px;
}
.contact {
    padding-top: 10px;
    padding-bottom: 100px;
}

ul {
    list-style-type: square; /* Changes bullets to squares */
    padding-left: 20px; /* Adds spacing from the edge */
}


.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.modal-content {
    background-color: var(--snd-bf-color);
    border-radius: 10px;
    margin: 10% auto;
    padding: 2rem;
    border: 2px solid #888;
    color: var(--text-color);
    width: 80%;
    max-width: 600px;
    border-radius: 2rem;
    position: relative;
}

.modal-content h2 {
    width: 95%;
    font-size: 35px;
    color: var(--main-color);
    margin-bottom: 30px;
    text-align: center;
}

.modal-content li {
    font-size: 18px;
    color: var(--text-color);
    text-align: justify;
    margin-bottom: 5px;
}

.modal-content div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.modal-content .button {
    width: 150px;
}

.close {
    color: var(--text-color);
    float: right;
    font-size: 32px;
    font-weight: bold;
    transition: transform 0.3s ease, color 0.3s ease;
    -webkit-transition: transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: var(--main-color);
    text-decoration: none;
    cursor: pointer;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}



/* Media Queries */
@media (max-width: 1024px) { /* desktop View */
    .description, .description-bg,
    .description-main{
        height: auto;
        min-height: auto;
    }
    .description-main{
        padding-top: 150px;
    }
    .heading {
        font-size: 70px;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 18px;
    }

    .button {
        font-size: 16px;
    }

    ul {
        padding-left: 15px;
    }
}

@media (max-width: 768px), (max-height: 520px){ /* tablet View */
    .heading {
        font-size: 50px;
    }
    header img {
        height: 40px;
        width: auto;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 16px;
    }

    .description {
        align-items: flex-start;
    }

    .description-main {
        padding: 10%;
        padding-top: 60px;
    }

    .button {
        height: 45px;
        width: 180px;
        font-size: 14px;
    }

    ul {
        padding-left: 10px;
        font-size: 16px;
    }
    .contact{
        padding-bottom: 50px;
    }

    .modal-content {
        width: 90%;
    }
    .modal-content h2 {
        font-size: 32px;
    }
    
    .modal-content li {
        font-size: 16px;
    }
    .modal-content .button{
        width: 140px;
    }
}

@media (max-width: 520px) , (max-height: 520px) { /* mobile View */
    .heading{
        font-size: 35px;
    }
    header img {
        height: 30px;
        width: auto;
    }
    h3{
        font-size: 14px;
    }
    h2{
        font-size: 18px;
    }
    .description-main p {
        font-size: 14px;
    }

    .button {
        height: 40px;
        width: 160px;
        font-size: 12px;
    }
    
    .prize-amount{
        font-size: 16px;
    }
    ul{
        font-size: 14px;
    }

     .modal-content h2 {
        font-size: 28px;
    }
    
    .modal-content li {
        font-size: 14px;
    }
    .modal-content .button{
        width: 140px;
    }
}
@media (max-width: 520px) {
    .modal-content {
        padding-top: 20px;
        padding-bottom: 20px;
        padding: 1rem;
    }
}