@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

body {
    min-height: 100vh;
    background-color: #EAEFFF;
    margin: auto;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    overflow-x: hidden;
}

.main-image-container
{
    position: relative;
    left: 0px;
}

.main-image
{
    left: 0px;
    width: 100vw;
    object-fit: cover;
    object-position: top;
    z-index: 0;
}

.main-image-cover
{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: black;
    opacity: 0.75;
    z-index: 1;
}

.main-text
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 2;
}

.main-text-large
{
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: clamp(2rem, 10vw, 5rem);
    color: white;
    line-height: 1.2;
}

.main-text-win
{
    display: inline-block;
    position: relative;
}

.main-text-win::before
{
    content: ""; /* required for pseudo-elements */
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-53%, -45%);
    width: 150%;
    height: 150%;
    background-image: url('ring.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.main-text-small
{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: clamp(1.5rem, 2vw, 2.0rem);
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    margin-left: 20px;
    margin-right: 20px;
    color: white;
}

.sign-up-button
{
    margin: auto;
    display: block;
    position: relative;
    padding: 17px 24px;
    font-size: large;
    cursor: pointer;
    background-color: #4C79FF;
    color: white;
    border: none;
    border-radius: 5px;
    transition: transform 0.2s ease;
    width: fit-content;
    white-space: nowrap;
}

.sign-up-button:hover {
    transform: scale(1.1);
}

.product-name
{
    font-weight: bold;
}

/* ************************************************************** */

.points-container {
    display: flex;
    align-items: center;
    justify-content: left;
    /* background-color: yellow; */
    text-align: center;
    padding-top: 6rem;
    padding-bottom: 6rem;
    color: black;
}

.why {
    display: flex;
    flex-direction: column;
    justify-content: center;
    vertical-align: top;
    text-align: left;
    width: 40vw;
    margin-right: 5vw;
    /* background-color: antiquewhite; */
}

.why-title,
.point-text-title
{
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2;
}

.why-text,
.point-text-text
{
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
    margin-top: 35px;
    font-size: 17px;
    line-height: 1.4;
}

.why-type
{
    background-color: black;
    color: white;
    padding: 0px 4px 3px 4px;
}

.points
{
    display: inline-block;
    width: 50vw;
    /* background-color: antiquewhite; */
}

.point-margin
{
    margin-top: 50px;
}

.point-icon
{
    display: inline-block;
    border-radius: 30px;
    width: 100px;
    height: 100px;
    margin-right: 20px;
    background-color: #92CEFF;
}

.point-icon img
{
    position: relative;
    left: 0px;
    top: 5px;
    width: 90px;
}

.point-text
{
    vertical-align: top;
    text-align: left;
    display: inline-block;
    /* background-color: aquamarine; */
}

.point-text-title
{
    font-size: 22px;
}

.point-text-text
{
    margin-top: 15px;
}

/* ************************************************************** */

.lower-area
{
    background-color: #303030;
    color: white;
    padding-top: 10px;
    padding-bottom: 25px;
}

.main-image-text-lower
{
    margin: auto;
    margin-top: 70px;
    margin-bottom: 70px;
    position: relative;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: clamp(2rem, 4vw, 5rem);
    /* background-color: aliceblue; */
}

.main-image-text-lower .sign-up-button
{
    margin-top: 20px;
}

.Footer
{
    margin: auto;
    margin-top: 70px;
    text-align: center;
    max-width: 80%;
}

@media (max-width: 1100px) {
    .main-image-text-header-callout
    {
        font-size: 26px;
    }
}

@media (max-width: 900px) {
    .main-image-text-header-callout
    {
        font-size: 22px;
    }
}

@media (max-width: 850px) {
    .main-text-small
    {
        font-size: clamp(1.1rem, 3vw, 2.0rem);
    }
    .points-container {
        display: block;
    }
    .why {
        display: block;
        margin: auto;
        margin-bottom: 50px;
    }
    .points
    {
        text-align: center;
    }
    .point
    {
        margin: auto;
        margin-bottom: 40px;
    }
    .point-icon
    {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .points-container
    {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    .sign-up-button
    {
        font-size: medium !important;
    }
    .thank-you-area
    {
        font-size: medium !important;
    }
}

/* ************************************************************** */

.section-title
{
    font-size: xx-large;
    font-weight: bold;
    margin-top: 100px;
    margin-bottom: 30px;
    text-align: center;
    max-width: 700px;
    color: #770000;
}

.feature-list
{
    text-align: left;
    margin: auto;
    width: fit-content;
    padding-left: 5%;
    padding-right: 5%;
    max-width: 100vw;
    margin-top: 150px;
}

.list-item
{
    margin: auto;
    margin-top: 15px;
    position: relative;
    max-width: 600px;
    font-size: large;
    line-height: 24px;
    color: black;
}

.list-item-image
{
    position: absolute;
    width: 10%;
    top: 0;
    left: 0;
}

.list-item-text
{
    padding-left: 15%;
    padding-top: 0px;
}

.main-bullet
{
    max-width: 150px;
    margin-bottom: 15px;
    position: relative;
    left: -10px;
}

/* ***************************************************** */

.signup-body
{
    margin: auto;
}

.signup-top-section
{
    background-color: #303030;
    color: white;
    padding: 10px 30px;
    text-align: center;
    line-height: 1.4;
}

.logo
{
    display: block;
    width: 150px;
    margin: auto;
    margin-top: 50px;
}

.signup-body .main-text-large
{
    margin-top: 30px;
    font-size: clamp(1rem, 8vw, 3rem);
   line-height: 0.9;
}

.email-entry,
.user-type-section
{
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.list-item-text2
{
    text-align: center;
    max-width: 400px;
    margin: auto;
}

.user-type-area,
.user-details-area
{
    text-align: center;
    margin: auto;
    margin-top: 40px;
    width: fit-content;
}

.user-details-area
{
    text-align: left;
    padding-bottom: 40px;
}

.user-details-area-instructions
{
    max-width: 400px;
    margin-bottom: 30px;
    font-size: large;
    font-weight: bold;
}

.user-type-gamer,
.user-type-programmer
{
    margin: auto;
    margin-bottom: 20px;
    border: 4px dashed #CCC;
    border-radius: 10px;
    padding: 5px;
    max-width: 80%;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.user-type-gamer:hover,
.user-type-programmer:hover
{
    transform: scale(1.05);
    border: 4px solid black;
    background-color: white;
}

.user-type-selected
{
    background-color: white;
    border: 4px solid black;
}

.user-type-text
{
    font-size: large;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    width: 100%;
}

.user-type-image
{
    border-radius: 10px;
    width: 100%;
    max-width: 300px;
}

.player-details,
.programmer-details
{
    margin: auto;
    max-width: 95%;
}

.details-label
{
    margin-top: 10px;
}

.details-text-entry
{
    padding: 4px 4px;
    font-size: medium;
    margin-top: 5px;
    width: 95%;
    border: 2px solid #303030;
}

.details-email-address
{
    margin-top: 10px;
}

.details-first-name,
.details-name-or-company-name,
.details-email
{
    width: 95%;
}

.details-first-name,
.details-name-or-company-name
{
    max-width: 300px;
}

select
{
    padding: 4px 2px;
    margin-top: 3px;
    font-size: 16px;
}

.join-button,
.submit-info-button
{
    display: block;
    margin: auto;
    margin-top: 30px;
    padding: 9px 12px;
    font-size: large;
    cursor: pointer;
    background-color: darkblue;
    background-color: #4C79FF;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    transition: transform 0.2s ease;
}

.join-button:hover,
.submit-info-button:hover
{
    transform: scale(1.1);
}

.thank-you-area
{
    font-size: large;
    font-weight: bold;
    max-width: calc( min( 500px, 90% ) );
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    padding: 10px;
}

.details-thank-you-area
{
    margin-bottom: 50px;
}

/* ***************************************************** */

.hidden
{
    display: none !important;
}

.Content
{
    margin: auto;
    padding: 10px;
    max-width: 700px;
}

.LegalHeading
{
    font-weight: bold;;
}

/* ***************************************************** */

.Footer a
{
    color: white;
}

/***********************************************************/

.message-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.message-box {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    min-width: 250px;
    max-width: 400px;
    margin: 20px;
}

.message-box p {
    margin-bottom: 20px;
    font-size: 1.2em;
    color: #333;
}

.close-button {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.2s ease;
    margin-top: 20px;
}

.close-button:hover {
    background-color: darkblue;
}

/***********************************************************/

/* For WebKit browsers (Chrome, Safari, Edge) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    /* Change 'white' to your desired background color */
    -webkit-text-fill-color: black !important;
    /* Optional: change text color as well */
    transition: background-color 5000s ease-in-out 0s;
    /* Optional: This can help "hide" the transition the browser applies */
}

/* For browsers supporting the standard :autofill pseudo-class (Firefox, modern browsers) */
input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
    box-shadow: 0 0 0 1000px white inset !important;
    /* Change 'white' to your desired background color */
    color: black !important;
    /* Optional: change text color as well */
    transition: background-color 5000s ease-in-out 0s;
}
