:root {
    --black: rgb(23, 24, 25);
    --black1: #20252c;
    --red: #c6050c;
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-family: Inter, Roboto, system-ui, -apple-system, BlinkMacSystemFont,
        Segoe UI, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue,
        sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background: var(--black);
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
a{
    color: #fff;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

main {
    flex: 1 1;
}

ul li,
ol li {
    padding-left: 20px;
}

.footer-links{
    margin-bottom: 20px;
}
.footer-link {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}
/* UTILS */
.flex{
    display: flex;
}
.justify-center{
    justify-content: center;
}
.opacity-50 {
    opacity: 0.5;
}
.justify-between{
    justify-content: space-between;
} 
.items-center{
    align-items: center;
}
.green-text {
    color: greenyellow;
}
.hidden {
    display: none;
}
.mt-1{
    margin-top: 1rem;
}

/* COOKIE CONSENT */
#cookieConsent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px;
    z-index: 1000;
    display: none; 
}
#cookieConsent button {
    background-color: rgb(3 106 3);
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    font-weight: bold;
}
#cookieConsent button#refuseCookies {
    background-color: #181818;
    color: #ccc;
}

/* POPUP */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    overflow-y: auto;
    padding: 50px 20px;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.popup_content {
    background: #fff;
    padding: 20px 40px;
    max-width: 1200px;
    height: min-content;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    /* align-items: center; */
    padding: 40px 20px;
    z-index: 999;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: min-content;
}

.modal.show {
    display: flex;
}
.modal-terms-content {
    padding: 20px;
    width: 100%;
}
.modal-terms-content p > span {
    font-family: sans-serif !important;
}
.modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 18px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 6px;
}
.newsletter-modal-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
/* FORM MESSAGE */
.message-icon{
    font-size: 26px;
    line-height: 50px;
    background: #fff1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.message-icon.success{
    color: rgb(6, 158, 6);
}
.message-icon.error{
    color: rgb(252, 52, 52);
}
.message-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px;
}

/* HEADER */
header {
    background: var(--black1);
    box-shadow: 0 2px 5px #0005;
    height: 60px;
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 1;
}
.verify-ticket-btn button{
    cursor: pointer;
}
.verify-ticket-btn button:active{
    background: red;
}
/* VERIFY INPUT */
.verify-input{
    position: sticky;
    top:60px;
    left: 0;
    right: 0;
    background: #000;
    z-index: 1;
    padding: 5px 15px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
 
}
.verify-input {
    display: none; /* Initially hidden */
    transition: all 0.3s ease; /* Optional: smooth toggle animation */
}
.verify-input.active {
    display: flex; /* Show when active class is added */
}
.verify-input input{
    background: var(--black);
    border:1px solid transparent;
    height: 32px;
    border-radius: 4px ;
    color: #fff;
    padding: 0 10px;
    line-height: 33px;
}
input:focus {
    outline: none; /* Removes the default browser outline */
    border: 1px solid #414141; /* Adds a custom border color */
}
.verify-input input::placeholder{
    font-size: .875rem;
}
.verify-input form{
    display: flex;
    align-items: center;
}
.verify-input button{
    background:rgb(52, 52, 52);
    height: 32px;
    width: 32px;
    color: #fff;
    border:none;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    cursor: pointer;
}
.verify-input button:hover{
    background:rgb(121, 121, 135);
}
footer {
    background: var(--black1);
    padding: 15px;
    text-align: center;
}
.footer-disaclaimer{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:5px;
    padding: 10px 15px;
    padding-bottom: 0;
}
.age-disclaimer{
    text-align: center;
    padding: 10px 5px 0 5px;
}
.resposable{
    text-align: left;
    font-size: .8rem;
    opacity: .5;
}
.banner {
    display: flex;
    justify-content: center;
    position: relative;
}

.banner h1 {
    position: absolute;
    left: 50%;
    top: 25%;
}

.banner img {
    width: 100%;
}

.content {
    text-align: center;
    padding: 15px;
    color: #ccc;
    font-size: 1rem;
}

.form-content {
    display: flex;
    flex-direction: column;
    border: 3px solid #6c0004;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    gap: 3px;
    margin: 20px 0;
}

.form-content input[type="text"] {
    margin-bottom: 15px;
    background: var(--black1);
    border: 0;
    height: 40px;
    border-radius: 4px;
    color: #fff;
    padding: 0 15px;
}
.form-content button[type="submit"] {
    border: 0;
    background: var(--red);
    color: #fff;
    padding: 12px;
    border-radius: 4px;
    margin-top: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-top: 25px;
}

.verify-ticket-btn button {
    background: var(--red);
    border: 0;
    border-radius: 6px;
    padding: 10px;
    color: #fff;
    font-weight: 600;
}
.copyright{
    text-align: center;
    padding-top: 20px;
    padding-bottom: 5px;
    width: 100%;
    border-top: 1px solid #fff1;
    font-size: .75rem;
    color: #fff5;
    margin-top: 15px;
}
.age-disclaimer{
    color:#fff6;
    padding: 20px 10px;
    font-size: .9rem;
}
/* TICKET */
.ticket-popup {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00000090;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 100;
    padding: 0 10px;
}
.ticket-wrapper {
    background: var(--black1);
    padding: 15px;
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
    position: relative;
}
.ticket-close {
    position: absolute;
    right: 10px;
    top: 10px;
}
.ticket-header {
    font-weight: 600;
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 2px;
    height: 30px;
}
.ticket-content {
    max-height: calc(100vh - 60px - 40px);
    display: flex;
    flex-direction: column;
}
.ticket-bets-wrapper {
    flex: 1;
    overflow: auto;
    background: var(--black);
    border-radius: 6px;
    position: relative;
}
.ticket-title {
    text-align: center;
    font-weight: 500;
    position: sticky;
    top: 0;
    background: #2c323a;
    z-index: 1;
    height: 30px;
    display: flex;
    box-shadow: 0 2px 5px #0002;
    justify-content: center;
    align-items: center;
}
.ticket-label {
    opacity: 0.5;
    font-weight: 400;
}
.total-win {
    font-weight: 600;
    font-size: 1.2rem;
}
hr {
    opacity: 0.1;
}
.ticket-details {
    font-size: 0.875rem;
    padding: 5px 10px;
    padding-top: 15px;
}
/* SPORT EVENT */
.event {
    border-bottom: 1px solid var(--black1);
}
.event-no,
.event-date {
    opacity: 0.5;
}
.event-info {
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    font-size: 0.775rem;

    background: var(--black1);
    margin: 10px;
    margin-bottom: 0;
    border-radius: 4px;
}
.event-text-wrapper {
    display: flex;
    padding: 5px 12px;
    padding-left: 20px;
    align-items: center;
}
.event-text {
    flex: 1;
}
.event-tournament {
    opacity: 0.5;
    font-size: 0.75rem;
    padding-top: 5px;
}
.event-name {
    padding: 5px 0;
}
.market-name {
    font-size: 0.8rem;
    opacity: 0.5;
    flex: 1;
    border-right: 0;
    border-radius: 4px 0 0 4px;
    min-height: 30px;
    background: #000000;
    text-align: center;
    display: flex;
    align-items: center;
    padding: 0 10px;
}
.event-status-icon {
    font-size: 18px;
}
/* EVENT BET */
.event-bet-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 10px;
    margin-top: 0;
}
.event-bet {
    display: flex;
    gap: 10px;
    background: #000;
    padding: 5px 10px;
    border-radius: 0 4px 4px 0;
    height: 32px;
    align-items: center;
    flex: 1;
    font-size: 0.875rem;
    font-weight: 600;
}
.event-odd-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.event-odd-row span {
    opacity: 0.5;
    font-size: 0.775rem;
}
.bet-name {
    color: #cda42b;
    flex: 1;
    text-align: center;
}
.bet-odd {
    flex: 1;
    text-align: center;
}
.ticket-status {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
}
.ticket-columns {
    display: flex;
    gap: 10px;
}
.ticket-column {
    flex: 1;
}
.ticket-col-row {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
}
.ticket-win-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

/* BALL SIX */

.bs-numbers {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    flex-wrap: wrap;
}
.bs-number {
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #cccccc9f;
    border-radius: 50%;
    font-weight: 600;
}
/* BALLS COLORS */
.bs-3,
.bs-10,
.bs-17,
.bs-24,
.bs-31,
.bs-38,
.bs-45 {
    background: #eb1e1e;
    border: 1px solid #eb1e1e;
}
.bs-2,
.bs-9,
.bs-16,
.bs-23,
.bs-30,
.bs-37,
.bs-44 {
    background: #924c92;
    border: 1px solid #924c92;
}
.bs-1,
.bs-8,
.bs-15,
.bs-22,
.bs-29,
.bs-36,
.bs-43 {
    background: #3d4ebc;
    border: 1px solid #3d4ebc;
}
.bs-5,
.bs-12,
.bs-19,
.bs-26,
.bs-33,
.bs-40,
.bs-47 {
    background: #fefe68;
    color: #000;
    border: 1px solid #eec870;
}
.bs-6,
.bs-13,
.bs-20,
.bs-27,
.bs-34,
.bs-41,
.bs-48 {
    background: #eb6e41;
    border: 1px solid #eb6e41;
}
.bs-7,
.bs-14,
.bs-21,
.bs-28,
.bs-35,
.bs-42,
.bs-49 {
    background: #292828;
    border: 1px solid #292828;
}
.bs-4,
.bs-11,
.bs-18,
.bs-25,
.bs-32,
.bs-39,
.bs-46 {
    background: #358535;
    border: 1px solid #358535;
}

/* KENO */
.keno-numbers {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
}
.keno-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff1;
    border: 1px solid #fff2;
}
.keno-number.active {
    background: green;
}
.keno-wins {
    display: flex;
    flex-wrap: wrap;
}
.keno-win {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
    padding: 2px;
}
.keno-win-title {
    padding: 3px;
}
.keno-win-value {
    padding: 3px;
    padding-top: 0;
}

/* ROULETTE */

.rl-bets {
    border-radius: 0 0 6px 6px;
}
.rl-bet {
    border-bottom: 1px solid var(--black1);
    padding: 5px 0;
}
.rl-bet:last-child {
    border-bottom: none;
}
.rl-numbers {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.rl-number {
    background: #000;
    font-size: 0.875rem;
    width: 30px;
    height: 22px;
    border-radius: 4px;
    justify-content: center;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 4px;
    font-weight: 600;
}
.rl-active {
    position: absolute;
    color: yellow;
    right: 2px;
    bottom: -5px;
}
.rl-bet-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 8px;
    align-items: center;
}
.rl-bet-info {
    font-size: 0.8rem;
    opacity: 0.5;
}
.rl-special-type {
    text-transform: uppercase;
    font-size: 0.8rem;
}

.rl-0 {
    background: green;
}
.rl-1,
.rl-3,
.rl-5,
.rl-7,
.rl-9,
.rl-12,
.rl-14,
.rl-16,
.rl-18,
.rl-19,
.rl-21,
.rl-23,
.rl-25,
.rl-27,
.rl-30,
.rl-32,
.rl-34,
.rl-36 {
    background: rgb(172, 6, 6);
}

/* ROCKET */
.ra-round-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 10px;
}
.ra-bet {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    border-bottom: 1px solid var(--black);
    opacity: 0.5;
}
.ra-bet.active {
    background: rgba(11, 129, 11, 0.273);
    color: greenyellow;
    opacity: 1;
}
.ra-bet-amount {
    font-size: 0.85rem;
}
.ra-round-win {
    text-align: center;
    padding: 10px;
    padding-top: 0;
    opacity: 0.5;
    font-size: 0.875rem;
}
.ra-altitude {
    display: flex;
    align-items: center;
}
.ra-altitude span {
    font-size: 1.05rem;
}
.ra-round-no {
    opacity: 0.6;
}

/* LOTTO */
.lt-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    font-size: 0.875rem;
    height: unset;
}
.lt-title span {
    opacity: 0.6;
}

.lt-bet-numbers {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    padding-top: 15px;
}

.lt-bet-no {
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #cccccc9f;
    border-radius: 50%;
}
.lt-bet-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.8rem;
    opacity: 0.5;
}
.lt-bet-system {
    display: flex;
    gap: 5px;
    padding: 10px;
    padding-top: 5px;
}
.lt-win {
    padding: 10px;
    padding-top: 5px;
}
