/* CSS VARIABLES */
:root {
    --primary-red: #e63946;
    --primary-orange: #f4a261;
    --black: #1d1d1d;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: rgba(0, 0, 0, 0.1);
    --gradient-bg: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    --desktop-px: 10%;
    --desktop-py: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #414A45;
}

h1{
    font-size: 30px;
    color: white;
}

a{
    text-decoration: none;
}


/* HEADER - header1 */
header{
    display:flex;
    justify-content: space-around;
    flex-direction: row;
    background-color:#103837;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    color: white;
    box-shadow: 1px 3px 10px #02454F;
    flex-wrap: wrap;
    padding: var(--desktop-py) var(--desktop-px);
    
}

header h1{
    margin: 30px 30px;
}

.nav-list{
    margin-top: 30px;
    display:flex;
    flex-direction: row;
    list-style-type: none;
    flex-wrap: wrap;

}

.nav-list-item{
    margin: 0 10px;
    text-decoration: none;
    padding: 10px;
    border-radius: 20px;
}
.nav-list-item a{
    text-decoration: none;
    color: white;
}

.nav-list-item:hover{
    background-color: #DBD307;
}

.nav-list-item a:hover{
    color: black;
}

.about-us-wrapper{
    background-color: #898C6E;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 20px;
    border-radius: 30px;
    /*margin-top: 100px;*/
    margin: 100px 20px 0 20px;
    color: white;
    text-align: center;
}

.about-us-wrapper p{
    font-size: 25px;
}

.about-us{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url("images/background.avif");
    scroll-behavior: smooth;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 600px;
}



/* OFFERS - offers2 */
.offer-text{
    font-size: 20px;
    width: 50%;
}

.offers{
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: var(--desktop-py) var(--desktop-px);
}

.offers h1{
    font-size: 60px;
    padding-bottom: 20px;
}

.offers h3{
    color:white;
}

.offers-img{
    height: 200px;
    padding: 20px 0 20px 0;
}

.offers-wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 20px auto;
    width: 100%;
}

.offer{
    background-color: #738C7F;
    border-radius: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    gap: 10px;
    box-shadow: 1px 3px 10px #000000;
}

.offer h3{
    padding-bottom: 10px;
    margin: auto 20px;
    color: white;
    font-size: 25px;
}

.offer p{
    padding-bottom: 20px;
    margin: auto 30px;
    color: white;
}


.play-now{
    background-color: #F6F7C0;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    color: black;
    font-size: 20px;
}

.play-now:hover{
    background-color: #DBD307
}
/* INFO - inf2 */
.play-smart{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--desktop-py) var(--desktop-px);
    width: 100%;
}

.play-smart h1{
    font-size: 60px;
    padding-bottom: 20px;
}

.play-smart-wrapper{
    background-color: #738C7F;
    border-radius: 20px;
    padding: 40px;
    color: white;
    width: 100%;
    box-shadow: 1px 3px 10px #000000;
}

.play-smart-wrapper h3{
    font-size:30px;
    padding-bottom: 10px;
    padding-top: 10px;
}

.play-smart-wrapper p{
    font-size: 20px;
    margin: 10px 0;
}

/* FOOTER - footer3 */
footer {
    background: #103837;
    color: var(--white);
    padding: var(--desktop-py) var(--desktop-px);
}

.footer-content {
   display: flex;
    flex-direction: row;
    justify-content: space-around ;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--white);
}

.footer-links a:hover {
    color: black;
}

.footer-disclaimer {

    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom,#B6BA93, #194643);
    justify-content: center;
    align-items: center;

}

.popup-content {
    background-color: #738C7F;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
}

.popup-content h2{
    padding-bottom: 10px;
}


.accept-btn, .reject-btn{
    border: none;
    margin-top: 20px;
    background-color: #F6F7C0;
    padding: 10px;
    cursor: pointer;
    border-radius: 20px;
}

.reject-btn{
    background-color: #FF5B5B;
}

.reject-btn:hover{
    color:white;

}

.accept-btn:hover{
    background-color:  #DBD307;
    color: white;
}



.registration{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;

}

.main-register{
    background-image: linear-gradient(to bottom, #738C7F, #194643);
}

.main-register h1{
    text-align: center;
    padding: 50px 0;
}

.registration-element{
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.registration-element input{
    border: none;
    background-color: peachpuff;
    height: 40px;
    width: 200px;
    padding: 10px;
    border-radius: 20px;
}

.space{
    height: 200px;
}

.submit-message-btn{
    margin-top: 20px;
    padding: 20px;
    border:none;
    background-color: #F6F7C0;
    border-radius: 30px;
    font-weight: bold;
    font-size: 20px;
}

.submit-message-btn:hover{
    background-color: #DBD307;
    color: black;
}

.footer-text{
    text-align: center;
}

.rules{
    color: white;
    padding: 40px;
}

.rules h1{
    padding-bottom: 20px;
}

.rules h3{
    padding: 10px;
}

.rules ul{
    padding-left: 30px;
}

.footer-disclaimer a img{
    height: 50px;
}

@media only screen and (max-width: 1100px) {
    .footer-disclaimer{
        display: flex;
        flex-direction: column;
    }
}

@media only screen and (max-width: 800px) {
    .footer-content{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo{
        padding-bottom: 20px;
    }

    .footer-disclaimer a img{
        height: 50px;
    }

    .footer-disclaimer{
        padding-bottom: 20px;
    }

    .offer p{
        width: 90%;
    }

    .about-us{
        display: none;
    }

}