body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    font-family: Arial, Helvetica, sans-serif;
  
    background: linear-gradient(to bottom, #ffb347, #ffcc70, #ff7eb3, #6a0dad, #1a1a40);
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
  }

  body::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%) center/8px 8px repeat,
                radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%) center/12px 12px repeat;
    animation: shimmer 10s ease-in-out infinite alternate;
    opacity: 0.3;
    mix-blend-mode: screen;
    filter: blur(1px);
  }
  
  @keyframes shimmer {
    0% {
      background-position: 0 0, 0 0;
      opacity: 0.2;
    }
    50% {
      background-position: 100px 200px, 200px 100px;
      opacity: 0.5;
    }
    100% {
      background-position: 400px 300px, 300px 400px;
      opacity: 0.2;
    }
  }

html {
    max-width: 100%;
    width: 100%;
    margin: 0;
}
.header {
    display: flex;
    justify-content: space-around; 
    align-items: center;
    padding: 1rem 2rem; 
    background-color: rgb(204, 82, 0);
    height: 100px;
    z-index: 1000;
    width: 95%;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

.header img {
    width: 100px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 5px #e0f7ff, 0 0 10px #a6d9ff;

}

.header-container {
    display: flex;
    gap: 20px;
}

button { 
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background-color: orangered;
    color: #f0f8ff;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid #FFFFFF;
  }

  button:hover {
    transform: scale(1.05);
  }

.modal {
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-color: rgba(0, 0, 0, 0.795); 
    justify-content: center; 
    align-items: center;
    z-index: 2000;
}

.modal-inside {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px; 
    min-width: 300px;
    width: 60%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.modal-inside h2 {
    color: orangered;
}

.modal-inside a {
    color: orangered;
}

.modal-inside input {
    border: 2px solid orangered;
    border-radius: 10px;
    width: 80%; 
    margin: 0.5rem 0; 
    padding: 0.5rem;
    height: 25px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    color: orange;
    font-family: sans-serif;
  }
  
  .checkbox {
    display: none;
  }
  
  .custom-checkbox {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid orange;
    background: transparent;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 4px rgba(170, 136, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .checkbox:checked + .custom-checkbox {
    background: radial-gradient(circle at center, orange, orangered);
    border-color: orangered;
    box-shadow: 0 0 10px orange, 0 0 4px rgba(255, 255, 255, 0.1);
  }
  
  .checkbox:checked + .custom-checkbox::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    background: #fff242cc;
    border-radius: 50%;
    box-shadow: 0 0 4px #d8bb38aa;
  }

  .modal-inside button {
    margin-top: 1rem; padding: 0.5rem 1rem;
    }

    .modal.show {
    display: flex;
    }

    .error {
    color: red;
    font-size: 0.9rem;
    font-weight: 900;
    }

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: orangered;
    border-radius: 50%;
  }

.cookies {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: black;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    z-index: 2000;
}

.cookies-button {
    display: flex;
    border: none;
    border-radius: 8px;
    color: white;
    padding: 6px !important;
    cursor: pointer;
    font-size: 14px !important;
}

.cookies a {
    color: orangered;
    text-decoration: none;
    transition: transform 0.5s ease;
}

.cookies a:hover {
    transform: scale(1.1);
}


.body {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.body-container {
    margin-top: 100px;
    width: 80%;
    background-color: #fae0c7;
    padding: 50px 20px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    z-index: 1000;
}

.body-container-main {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.body-container-main h1{
    margin: 0;
    font-size: 35px;
    color: orangered;
}

.body-container-main p {
    font-style: 25px;
    font-weight: 600;
    color: #444;
}

.body-container-main button { 
    padding: 1rem 1.5rem; 
    cursor: pointer;
    border-radius: 10px;
    color: #FFFFFF;
    transition: transform 0.5s ease, background-color 0.5s ease;
}

.body-container-main button:hover {
    transform: scale(1.05);
}

.body-opacity {
    width: 90%;
    border-radius: 40px;
    background: #fae2c7;
    margin-top: 50px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.body-opacity h1 {
    color: orangered;
    font-weight: 900;
}

.body-opacity p {
    font-weight: 600;
    color: #444;
}

.body-opacity-block {
    display: flex;
    width: 99%;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.opacity-el-text h1 {
    color: orangered;
    text-transform: none;
}

.top {
    display: flex;
    width: 100%;
    gap: 5px;
    margin-top: 20px;
    z-index: 1000;
}

.body-opacity-element {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    background-color: #FFFFFF;
    padding: 5px;
    border-radius: 20px;
}

.body-opacity-element img {
    width: 100px;
    height: 100px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.responsibility {
    z-index: 1000;
    margin-top: 100px;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    color: orangered;
    background-color: #FFF;
}

.responsibility h1 {
    font-size: 35px;
    font-weight: 900;
    color: rgb(100, 0, 0);
}

.responsibility p {
    font-size: 22px;
    font-weight: 900;
}

.responsibility a {
    color: rgb(100, 0, 0);;
}

.body-rel {
    width: 95%;
    border-radius: 50px;
    background: #fae0c7d8;
    margin-top: 50px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    z-index: 1000;
}

.body-rel h1 {
    color: orangered;
    font-weight: 900;
    text-transform: uppercase;
}

.body-rel p {
    font-weight: 600;
    color: #444;
    width: 70%;
    text-align: center;
}

.body-rel-con {
    display: flex;
    width: 60%;
    height: 100%;

    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 50%;
}

.body-rel-el h1 {
    color: orange;
    margin: 0;
}

.body-rel-el {

    height: 260px;
    padding: 10px 20px;
    width: 50%;
    justify-content: space-between;
    align-items: center;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    margin-top: 50px;
    border-radius: 50px;
    gap: 10px;
}

.body-rel-el li {
    list-style: none;
    width: 90%;
    margin: 0;
    text-align: left;

}

.body-rel button {
    margin-top: 100px;
    padding: 1rem 1.5rem; 
    cursor: pointer;

    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.5s ease, background-color 0.5s ease;
}

.body-rel button:hover {
    transform: scale(1.1);
    background-color: red;
}

.body-rel img {
    margin-top: 20px;
    border-radius: 50px;
    border: 3px solid red;
}

.body-smart {
    margin-top: 100px;
    border-radius: 40px;
    width: 92%;
    display: flex;
    gap: 20px;
    background-color: #FFFFFF;
    padding: 50px;
    z-index: 1000;
    align-items: center;
}

.body-smart-block {
    width: 50%;
}

.body-smart img {
    width: 50%;
    border-radius: 40px;
}

.body-smart-block h1 {
    color: orangered;
    text-transform: uppercase;
    font-weight: 900;
}

.body-smart-block h2 {
    color: orange;
    text-transform: uppercase;
    font-weight: 700;
}

.body-smart-block p {
    color: #444;
    font-weight: 600;
}

.body-smart-block li {
    color: #444;
    font-weight: 600;
    margin-top: 5px;
}

.body-smart-block button {
    color: #FFFFFF;
    padding: 1rem 1.5rem; 
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.5s ease, background-color 0.5s ease;
    margin-top: 50px;
}

.body-smart-block button:hover {
    transform: scale(1.05);

}

.exp {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 100px;
}

.exp-con {
    width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.exp-con h1 {
    font-size: 35px;
    text-transform: uppercase;
    color: orangered;
    
    padding:10px 20px;
    border-radius: 30px;
}

.exp-con img {
    width: 50%;
    height: auto;
    z-index: 1000;
    border: 3px solid red;
}

.exp-con-wrapp {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 90%;
    height: 100%;
    gap: 20px;
    margin-top: 50px;
}

.exp-el {
    width: 100%;
    
    justify-content: space-around;
    align-items: center;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, #ffdccc, #d49a6a, #ac4414, #621c0a);
    z-index: 1000;
    padding: 20px;
    height: 250px;
    border-radius: 30px;
    transition: all 0.5s ease;
}

.exp-el:hover {
    transform: scale(1.05);
}

.exp-el h2 {
    color: #FFFFFF;
    text-transform: uppercase;
    width: 100%;
}

.exp-el p {
    font-weight: 700;
    width: 100%;
    color: #FFFFFF;
}

.exp-el li {
    font-weight: 700;
    width: 100%;
    color: #FFFFFF;
}

.exp-con button {
    margin-top: 50px;
    margin-top: 100px;
    padding: 1rem 1.5rem; 
    cursor: pointer;
    border: none;
    border-radius: 10px;
    transition: transform 0.5s ease, background-color 0.5s ease;
}

.exp-con button:hover {
    transform: scale(1.05);
}

  
  .people-say-con-el {
    width: 90%;
    flex-shrink: 0; 
    box-sizing: border-box;
    padding: 30px;
    background: #9b3306;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255, 94, 0, 0.5);
    text-align: center;
    transition: transform 0.3s ease;
  }
  .people-say-con-el:hover {
    transform: scale(0.95);
  }

  .people-say {
    margin-top: 100px;
    width: 100%;
    gap: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    padding: 50px 20px;
    box-sizing: border-box;
  }
  
  .people-say h1 {
    color: #921eff;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .people-say-con {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .people-say-con-el p {
    font-weight: 900;
    margin-bottom: 10px;
  }

.faq {
    width: 100%;
    padding: 50px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq-con {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-con-left {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq-con-left h1 {
    font-weight: 900;
    color: orangered;
    text-transform: uppercase;
    font-size: 35px;
}

.faq-con-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    width: 100%;
    gap: 30px;
}
.faq-con-left h2 {
    color: white;
    text-align: center;
}

.faq-con-left p {
    color: #FFFFFF;
    font-weight: 900;
    width: 100%;
    text-align: center;
}

.faq-con-grid-el {
    align-self: center;
    background-color: orange;

    border-radius: 30px;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
    height: 350px;
    padding: 10px;
}

.faq-con-grid-el:hover {
    transform: scale(1.1);
}

.warn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

.warn-con {
    width: 80%;
    background-color: #FFF;
    z-index: 1000;
    padding: 50px;
    box-shadow: 0px 10px 40px orangered;
    border-radius: 50px;
}

.warn-con h1 {
    font-size: 35px;
    color: orangered;
    font-weight: 900;
    text-transform: uppercase;
}

.warn-con p {
    font-size: 22px;
    color: #000000;
}

.warn-con span {
    color: orangered;
    font-weight: 900;
}

.warn-con a {
    color: orangered;
    font-weight: 900;
}


.footer-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #000000;
    padding: 50px;
    justify-content: center;
    align-items: center;
}

.footer-resources {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    height: 100px;
}

.footer-resources img {
    width: 100px;
    height: auto;
}

.footer-resources a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 100%;
    text-decoration: none;
    color: orangered;
    font-weight: 900;
    font-size: 10px;
}

.footer-main {
    width: 90%;
    display: flex;
    color: snow;
    justify-content: space-around;
    align-items: center;
    margin-top: 50px;
}

.footer-column {
    height: 100%;

}
ul li a{
    text-decoration: none;
    color: snow;
    margin-top: 5px;
}

.footer-column form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subscribe-form input{
    padding: 10px;
    border-radius: 10px;
    border: none;
}

.subscribe-form button {
    padding: 0.5rem 1rem; 
    cursor: pointer;
    border: none;
    border-radius: 10px;
    transition: transform 0.5s ease, background-color 0.5s ease;
}

.subscribe-form button:hover {
    transform: scale(1.05);
}

.footer-note {
    font-size: 10px;
    text-align: center;
    margin-top: 50px;
    color: snow;
}

.ad-text {
    color: snow;
    width: 95%;
    text-align: left;
}

main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #333;
}

main a {
    color: orangered;
    font-weight: 900;
}


main section h1 {
    color: orangered;
    text-transform: uppercase;
}

main section h2 {
    color: orange;
}

main section {
    width: 90%;
    background-color: #FFF;
    padding: 25px;
    border-radius: 50px;

}

@media (max-width: 1000px) {
   h1 {
        font-size: 15px !important;
        text-transform: none !important;
        text-align: center;
   }

   h2 {
        font-size: 15px !important;
   }

   p {
        font-size: 10px !important;
   }

   a {
    font-size: 10px !important;
    }

    .header img{
        width: 50px;
    }

    .header button {
        padding: 5px 10px !important;
    }

    .body-container {
        flex-direction: column !important;
        text-align: center;
    }

    .body-opacity p {
        text-align: center;
    }

    .body-opacity {
        padding: 20px !important;
    }

    .body-opacity-block {
        grid-template-columns: 1fr !important;
    }

    .body-opacity-element img {
        height: 50px !important;
        width: 50px !important;
    }

    .responsibility p {
        text-align: center;
    }

    .body-rel {
        width: 100% !important;
    }

    .body-rel-con  {
        flex-direction: column !important;
        width: 95% !important;
        gap: 20px !important;
    }


    .body-rel-el {
        height: 200px !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .body-rel img {
        width: 95%;
    } 

    li {
        font-size: 10px !important;
    }

    .body-smart {
        flex-direction: column-reverse !important;
    }

    .body-smart img {
        width: 95%; 
    }

    .body-smart-block {
        width: 95%;
    }

    .exp-con{ 
        flex-direction: column !important;
    }

    .exp-con-wrapp {
        flex-direction: column !important;
    }

    .exp-el {
        width: 90% !important;
    }

    .people-say-con {
        flex-direction: column;
    }
    
    .people-say-con-el {
        width: 100%;
    }

    .footer-resources {
        gap: 10px !important;

    }

    .footer-resources img {
        width: 30px !important;
    }

    span {
        font-weight: 600 !important;
        text-align: center;
    }

    .footer-main {
        flex-direction: column;
        width: 90%;
        align-items: start !important;

    }
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.945);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    display: flex;
    
}

.popup {
    background-color: #f3f3f3;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.651);
    width: 90%;
    max-width: 400px;
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 20;
}

.popup-logo {
    width: 120px;
    margin-bottom: 20px;
    border-radius: 50%;
}

.text-verify {
    color: #ff0000;
    font-size: 24px;
    margin-bottom: 15px;
}

.text-small-verify {
    color: #111;
    margin-bottom: 25px;
    line-height: 1.5;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    padding: 6px 15px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-confirm {
    background-color: #65ff70;
    color: white;
    transition: all 0.3s;
    border: 2px solid green;
}

.btn-confirm:hover {
    background-color: #00ff11;
}

.btn-deny {
    background-color: #bb2626;
    color: white;
    transition: all 0.3s;
    border: 2px solid rgb(95, 0, 0);
}

.btn-deny:hover {
    background-color: #ff0000;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.lotto-balls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.ball {
    width: 50px;
    height: 50px;
    background-color: #e60000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-weight: bold;
}