@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');

:root {
    --cta-gradient-1: #ff3c00;
    --cta-gradient-2: #b92b00;
    --light-grey: #292d2e;
    --dark-grey: #232626;
    --white: #ffffff;
    --font-family: 'Montserrat', sans-serif;
    --font-size: 16px;
    --font-weight-regular: 400;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 40px;
    --spacing-xxl: 48px;
    --spacing-container: 80px;
    --border-radius: 16px;
    --site-bg: #150F1C;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: var(--dark-grey);
}

::-webkit-scrollbar-thumb {
    background-color: var(--cta-gradient-1);
    border-radius: 6px;
}

body, html {
    overflow-x: hidden;
}

body * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size);
    font-weight: var(--font-weight-regular);
    color: var(--white);
    background: var(--light-grey);
}

p {
    font-size: var(--font-size);
    font-weight: var(--font-weight-regular);
    line-height: 1.2;
}

h1, h2, h3 {
    line-height: 1;
}

h1 {
    font-size: 20px;
    font-weight: var(--font-weight-regular);
    margin-bottom: 15px;
}

h2 {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
}

h3 {
    font-size: 16px;
    font-weight: var(--font-weight-bold);
}

.desktop {
    display: none;
}

.header-site {
    width: 100%;
    height: 80px;
    padding: 5px 16px;
    background: var(--site-bg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-site img {
    height: 100%;
    width: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    position: relative;
    border-radius: var(--border-radius);
    background: linear-gradient(90deg, var(--cta-gradient-1), var(--cta-gradient-2));
    border: 3px solid transparent;
    color: var(--white);
    font-weight: var(--font-weight-bold);
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    padding: calc(var(--spacing-md)/2) var(--spacing-md);
    transition: all 0.6s;
}

.click {
    padding: 0 30px;
    text-align: center;
    cursor: pointer;
    border: 3px solid var(--main-bg);
    animation: shakeme 3s infinite;
}

@keyframes shakeme {
    0% { scale: 1; }
    5% { scale: 0.5; }
    10% { scale: 1.1; }
    15% { scale: 0.8; }
    20% { scale: 1.15; }
    30% { scale: 1.1; }
}

.click:hover {
    animation: none;
}

.btn.btn-large {
    font-size: 26px;
    padding: var(--spacing-sm) var(--spacing-xl);
    gap: var(--spacing-sm);
    border: 3px solid white;
}

.btn.btn-medium {
    font-size: 22px;
    padding: var(--spacing-xs) var(--spacing-md);
    margin-top: 50px;
}

.btn.btn-medium::after {
    width: 12px;
    height: 12px;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

section .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: var(--spacing-container) var(--spacing-sm);
    width: 100%;
    max-width: 1200px;
}

@keyframes btn-animate {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
}

@keyframes header-zoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: var(--spacing-xl);
    background: var(--cta-gradient-1);
    height: 100vh;
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    animation: header-zoom 5s ease-in infinite;
    overflow: hidden;
    position: relative;
}

header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1280px;
}

header .bono-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 1;
    gap: var(--spacing-xl);
    height: 100%;
    justify-content: end;
    padding: 15px;
}

header .header-logo {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: var(--spacing-xl);
}

header .header-logo::after {
    content: '';
    display: block;
    position: relative;
    width: 100%;
    height: 1px;
    background: var(--green);
    margin-top: var(--spacing-xs);
}

header .header-logo img {
    width: auto;
    height: 60px;
}

header .bono-content {
    align-items: center;
    text-align: center;
    max-width: 500px;
    display: flex;
    color: black;
    flex-direction: column;
}

header .bono-content h1 {
    font-size: 22px;
    font-weight: var(--font-weight-regular);
}

header .bono-content .claim {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
}

header .bono-content .bono-value {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    font-size: 26px;
    line-height: .9;
    font-weight: var(--font-weight-black);
    color: var(--cta-gradient-1);
    margin: var(--spacing-sm) 0;
}

.promocode {
    background-color: black;
    color: white;
    padding: 10px;
    font-size: 35px;
    font-weight: var(--font-weight-bold);
    max-width: 250px;
    text-align: center;
    margin-top: 25px;
}

.mobile-logo {
    width: 50%;
    margin-bottom: 35px;
    position: absolute;
    top: 20px;
}

.jugadores {
    width: 150%;
    object-fit: contain;
    position: absolute;
    top: 90px;
}

.header-right-container {
    background-image: url('../images/sports/main-bg-mobile.png');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 70vh;
    position: absolute;
    bottom: 0;
}

section.torneos {
    background: var(--main-bg);
}

section.torneos a {
    text-decoration: none;
}

section.torneos a h2 {
    color: white;
}

section.torneos .content {
    gap: var(--spacing-xxl);
    align-items: center;
}

section.torneos h2 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-wrap: balance;
    text-align: center;
    font-size: 26px;
    font-weight: var(--font-weight-regular);
}

section.torneos h2 small {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--cta-gradient-1);
}

section.torneos .list-torneos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: var(--spacing-xxl);
    align-items: center;
}

section.torneos .list-torneos .torneo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    text-decoration: none;
}

section.torneos .list-torneos .torneo:hover {
    text-decoration: none;
    color: var(--white);
}

.list-torneos img {
    max-width: 150px;
    margin-bottom: 25px;
}

.steps-container-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.steps-container {
    padding: 20px;
    max-width: 1170px;
    text-align: center;
}

.steps {
    display: flex;
    flex-direction: column;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

.step-num {
    font-size: 40px;
    font-weight: var(--font-weight-bold);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--cta-gradient-1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.step span {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--dark-grey);
}

footer .container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
    padding: var(--spacing-container) var(--spacing-sm);
}

footer .container .legal {
    display: flex;
    justify-items: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

footer .container .legal img {
    width: auto;
}

footer .container .legal .mayor {
    height: 32px;
}

footer .container .legal .loteria {
    width: auto;
    height: 37px;
}

footer .container .legal .text-legal {
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    line-height: 1;
    text-transform: uppercase;
    flex: 0 1 240px;
    width: 240px;
    text-align: right;
}

footer .container .legal .help {
    height: 43px;
}

footer .container .legal .linea {
    height: 34px;
}

.logo-footer {
    height: 50px;
    margin-top: 25px;
}

.loterias {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .loterias img {
    max-height: 50px;
    filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
    .desktop {
        display: block;
    }
    .mobile {
        display: none;
    }

    .btn.btn-large {
        font-size: 31px;
        padding: var(--spacing-sm) var(--spacing-lg);
        gap: var(--spacing-sm);
        border: none;
    }

    .btn.btn-medium {
        font-size: 28px;
        padding: var(--spacing-sm) var(--spacing-lg);
    }

    header {
        animation: header-zoom 5s ease-in infinite;
        overflow: hidden;
        background-image: url('../images/sports/main-bg.png');
        background-position: right;
        padding: 50px;
    }

    header .container {
        justify-content: center;
        flex-direction: row;
        color: black;
    }

    header .header-logo {
        align-items: flex-start;
        flex: 0 1;
        width: min-content;
        padding-right: 25px;
        filter: invert(1);
    }

    header .bono-container {
        align-items: end;
        justify-content: center;
        width: 100%;
        flex: 1 1;
    }

    header .bono-content {
        align-items: end;
        text-align: end;
    }

    header .bono-content h1 {
        font-size: 31px;
    }

    header .bono-content .claim {
        font-size: 22px;
    }

    header .bono-content .bono-value {
        font-size: 35px;
        color: var(--cta-gradient-1);
    }

    .header-right-container {
        display: flex;
        align-items: end;
        flex-direction: column;
        width: 50%;
        background: none;
        height: auto;
    }

    .jugadores {
        width: 50%;
        scale: 1.4;
    }

    .torneos-a, .steps-a {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .steps-a {
        flex-direction: column;
        align-items: center;
        color: white;
        text-decoration: none;
    }

    section.torneos h2 {
        font-size: 31px;
        height: 70px;
    }

    section.torneos h2 small {
        font-size: 24px;
    }

    section.torneos .list-torneos {
        height: 200px;
        width: 100%;
    }

    section.torneos .torneo:hover {
        scale: 1.1;
        transition: all 0.6s;
    }

    section.torneos .list-games {
        gap: var(--spacing-lg);
    }

    .steps-container-section {
        padding: 50px 0;
    }

    .steps-container-section h2 {
        font-size: 30px;
    }

    .steps {
        flex-direction: row;
        justify-content: space-between;
        gap: 50px;
        padding: 100px 0;
    }

    .step{
        width: 350px;
    }

    footer .container .legal {
        gap: var(--spacing-md);
        align-items: center;
    }

    footer .container .legal .mayor {
        height: 37px;
    }

    footer .container .legal .loteria {
        width: auto;
        height: 46px;
    }

    footer .container .legal .text-legal {
        font-size: 12px;
        text-align: center;
    }

    footer .container .legal .help {
        height: 50px;
    }

    footer .container .legal .linea {
        height: 47px;
    }

    .jugadores, .header-right-container {
        position: static;
    }

    header .container {
        height: 100%;
    }
}














