@import url('https://fonts.googleapis.com/css2?family=Shrikhand&family=Work+Sans:wght@400;500;700&display=swap');
/* Reset and base styles  */
* {
    padding: 0px;
    margin: 0px;
    border: none;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
a, a:link, a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
aside, nav, footer, header, section, main {
    display: block;
}
h1, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
}
ul, ul li {
    list-style: none;
}
img {
    vertical-align: top;
}
img, svg {
    max-width: 100%;
    height: auto;
}
address {
    font-style: normal;
}
input, textarea, button, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}
input::-ms-clear {
    display: none;
}
button, input[type=submit] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}
input:focus, input:active,
button:focus, button:active {
    outline: none;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
label {
    cursor: pointer;
}
legend {
    display: block;
}
html {
    scroll-behavior: smooth;
}
/**/
:root {
    --white: #ffffff;
    --beige: #e8d4b7;
    --pink: #ff0066;
    --pink-hover: rgba(255, 0, 102, 0.8);
    --purple: #934790;
    --purple-hover: rgba(147, 71, 144, 0.8);
    --purple-dark: #6a0066;

    --font-head: 'Shrikhand', cursive;
    --font-base: 'Work Sans', sans-serif;
}

body {
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--purple-dark);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    line-height: 1.2;
    color: var(--white);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 1.2143rem + 1.4286vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: clamp(3rem, 6vw, 6rem) 0;
    background-color: var(--purple);
}

.section__title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--beige);
    text-align: center;
    margin-bottom: 0.5em;
}

.section__subtitle {
    font-family: var(--font-base);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--white);
    text-align: center;
    margin-bottom: 2em;
    opacity: 0.9;
}

.button {
    font-family: var(--font-base);
    font-size: 1rem;
    font-weight: 700;
    padding: 0.75em 1.75em;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button--pink {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 0, 102, 0.3);
}

.button--pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 102, 0.5);
    filter: brightness(1.1);
}

.button--outline {
    background: transparent;
    border: 2px solid var(--beige);
    color: var(--beige);
    font-weight: 700;
    transition: all 0.3s ease;
}

.button--outline:hover {
    background: var(--beige);
    color: var(--purple-dark);
    transform: scale(1.03);
    box-shadow: 0 0 10px rgba(232, 212, 183, 0.3);
}

/**/
.tsl-header {
    background-color: var(--purple-hover);
    padding: 1rem 0;
}

.tsl-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tsl-header__logo img {
    max-height: 70px;
    display: block;
}

.tsl-header__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.tsl-nav__list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tsl-nav__list a {
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-base);
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.tsl-nav__list a:hover {
    opacity: 0.7;
}

.tsl-header__cta {
    margin-left: 2rem;
}
.tsl-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.tsl-burger span {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.tsl-burger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
}

.tsl-burger.active span:nth-child(2) {
    opacity: 0;
}

.tsl-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
}

.tsl-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: var(--purple);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 8rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 100;
}

.tsl-mobile-menu.active {
    transform: translateX(0);
}

.tsl-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.tsl-mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .tsl-header__nav {
        display: none;
    }
    .tsl-burger {
        display: flex;
    }
}
/**/
.tsl-hero {
    padding-top: clamp(4rem, 8vw, 8rem);
    padding-bottom: clamp(4rem, 8vw, 8rem);
    background: url("img/hero-bg.webp") center/cover no-repeat;
    background-blend-mode: darken;
    animation: fadePattern 6s ease-in-out infinite alternate;
    color: var(--white);
    overflow: hidden;
}
@keyframes fadePattern {
    0% {
        background-position: center 0%;
        opacity: 1;
    }
    50% {
        background-position: center 50%;
        opacity: 0.95;
    }
    100% {
        background-position: center 100%;
        opacity: 1;
    }
}

.tsl-hero__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

.tsl-hero__content {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: slideInLeft 1s ease forwards;
}

.tsl-hero__title {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tsl-hero__title--white { color: var(--white); }
.tsl-hero__title--gradient {
    background: linear-gradient(90deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tsl-hero__title--accent { color: var(--pink); }

.tsl-hero__subtitle {
    font-family: var(--font-base);
    font-size: 1.125rem;
    max-width: 500px;
    opacity: 0.9;
}

.tsl-hero__cta {
    margin-top: 1rem;
    animation: pulse 2s infinite;
    max-width: 220px;
    text-align: center;
}
.tsl-hero__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.tsl-hero__features li {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0;
}

.tsl-hero__features li:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.tsl-hero__features i {
    font-size: 1.8rem;
    color: var(--pink);
    margin-bottom: 0.5rem;
}

.tsl-hero__features span {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.3;
}

.tsl-hero__features small {
    display: block;
    font-size: 0.75rem;
    color: var(--beige);
    opacity: 0.85;
    margin-top: 0.25rem;
}

.tsl-hero__visual {
    flex: 1 1 400px;
    text-align: center;
    animation: slideInRight 1s ease forwards;
}

.tsl-hero__visual img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}
.tsl-disclaimer {
    max-width: 700px;
    margin: 3rem auto 0;
    padding: 1rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--pink);
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
}


.tsl-disclaimer__icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}


.tsl-disclaimer__text {
    color: var(--beige);
    opacity: 0.9;
    margin: 0;
    text-align: justify;
}


.tsl-disclaimer__text a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 500;
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .tsl-hero__container {
        flex-direction: column;
        text-align: center;
    }
    .tsl-hero__features {
        flex-direction: column;
        align-items: center;
    }
    .tsl-hero__features li {
        flex: 1 1 100%;
        max-width: 280px;
    }
}
/**/
.tsl-draw {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background-color: var(--purple-dark);
    color: var(--white);
}

.tsl-draw__container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
}

.tsl-draw__column {
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 1.5rem;
    border-radius: 12px;
    height: 100%;
}
.tsl-draw__info,
.tsl-draw__timer,
.tsl-draw__winners {
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 1.5rem;
    border-radius: 12px;
}

.tsl-draw__title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tsl-draw__title i {
    font-size: 2rem;
    color: var(--pink);
}

.tsl-draw__label {
    font-size: 0.9rem;
    color: var(--beige);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tsl-draw__amount {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    margin: 0;
}

.tsl-countdown {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tsl-countdown li {
    background: var(--purple);
    padding: 0.75rem 1rem;
    width: 90px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
}

.tsl-time-num {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}

.tsl-time-label {
    font-size: 0.75rem;
    color: var(--beige);
}

.tsl-winners {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tsl-winners li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--purple);
    border-radius: 6px;
}

.tsl-winner-amount {
    font-weight: bold;
    color: var(--beige);
}

.tsl-winner-city {
    font-size: 0.9rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .tsl-draw__container {
        flex-direction: column;
        align-items: stretch;
    }
    .tsl-draw__column {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }
    .tsl-countdown {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tsl-countdown li {
        width: 45%;
        margin-bottom: 0.5rem;
    }
    .tsl-draw__info .button {
        width: 100%;
        text-align: center;
    }
}
/**/
.tsl-upcoming {
    padding: clamp(4rem, 8vw, 6rem) 0;
    color: var(--white);
}

.tsl-upcoming__container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.tsl-upcoming__heading {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.tsl-draws-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    width: 100%;
    padding: 2rem;
    border-radius: 32px;

    position: relative;
    overflow: hidden;
    z-index: 1;
}
.tsl-draws-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("img/upcoming-bg.webp") center/cover no-repeat;
    animation: animateBackground 20s linear infinite;
    z-index: -1;
}

.tsl-draw-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tsl-draw-card:hover {
    transform: translateY(-6px) scale(1.03) rotate(-0.5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tsl-draw-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.tsl-draw-card:hover::after {
    opacity: 1;
}

.tsl-draw-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.tsl-draw-card__jackpot {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--beige);
}

.tsl-draw-card__time {
    font-size: 0.95rem;
    color: var(--white);
    opacity: 0.85;
}

.tsl-card__btn {
    max-width: 160px;
    margin: 0 auto;
}

.gradient-pink {
    background: linear-gradient(135deg, var(--pink), var(--purple));
}


.gradient-purple {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
}


.gradient-dark {
    background: linear-gradient(135deg, #2e0032, #4e0060);
}

@media (max-width: 768px) {
    .tsl-draw-card {
        padding: 1.5rem 1rem;
    }
}
    @media (max-width: 400px) {
        .tsl-draws-grid {
            grid-template-columns: auto;
        }
    }
/**/
.tsl-why {
    padding: clamp(4rem, 8vw, 6rem) 0;
    color: var(--white);
    position: relative;
    z-index: 1;
}


.tsl-why__container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}


.tsl-why__title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
}


.tsl-why__subtitle {
    font-size: 1.125rem;
    color: var(--beige);
    max-width: 640px;
    text-align: center;
}


.tsl-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    width: 100%;
}


.tsl-why-card {
    position: relative;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(4px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.tsl-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}


.tsl-why-card__bg {
    content: '';
    position: absolute;
    inset: 0;
    background: url("img/upcoming-bg.webp") center/cover no-repeat;
    z-index: -1;
    opacity: 0.3;
}


.tsl-why-card i {
    font-size: 2rem;
    color: var(--pink);
}


.tsl-why-card h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}


.tsl-why-card p {
    font-size: 0.95rem;
}

@keyframes animateBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}
/**/
.tsl-cta {
    position: relative;
    padding: clamp(4rem, 8vw, 6rem) 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}


.tsl-cta__bg {
    position: absolute;
    inset: 0;
    background: url("img/cta-bg.webp") center/cover no-repeat;
    animation: animateCTABackground 20s linear infinite;
    z-index: 0;
    filter: brightness(0.6) blur(2px);
}


.tsl-cta__content {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}


.tsl-cta__title {
    font-family: var(--font-head);
    margin: 0;
}


.tsl-cta__subtitle {
    font-family: var(--font-base);
    font-size: 1.125rem;
    opacity: 0.9;
}


.tsl-cta .button {
    max-width: 200px;
    animation: pulse 2.5s infinite;
}


@keyframes animateCTABackground {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}
/**/
.tsl-security {
    padding: clamp(4rem, 8vw, 6rem) 0;
    color: var(--white);
    background-color: var(--purple-dark);
}


.tsl-security__container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}


.tsl-security__title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
}


.tsl-security__subtitle {
    font-family: var(--font-base);
    max-width: 600px;
    font-size: 1.125rem;
    opacity: 0.85;
}


.tsl-security__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    width: 100%;
    margin-top: 2rem;
}


.tsl-security__card {
    background-color: var(--purple);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}


.tsl-security__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}


.tsl-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--beige);
}


.tsl-security__card h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}


.tsl-security__card p {
    font-size: 1rem;
    color: var(--beige);
    opacity: 0.9;
}
/**/
.tsl-safety {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(to right, #1a0e24, #110c1a);
    color: var(--white);
    overflow: hidden;
}

.tsl-safety__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
}

.tsl-safety__heading {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3rem);
}

.tsl-safety__subheading {
    max-width: 680px;
    font-size: 1.1rem;
    opacity: 0.85;
    line-height: 1.6;
}

.tsl-safety__grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: stretch;
}

.tsl-safety__guarantee {
    flex: 1 1 300px;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

.tsl-safety__icon-wrap {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--pink);
}

.tsl-safety__badge {
    margin-top: auto;
    background: var(--pink);
    color: var(--white);
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    width: fit-content;
}

.tsl-safety__features {
    flex: 1 1 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tsl-safety__features li {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.25rem;
    border-radius: 16px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.tsl-safety__features li:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.tsl-feature-icon-wrap {
    background: rgba(255, 255, 255, 0.05);
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    font-size: 1.2rem;
}

.tsl-safety__features h4 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.tsl-safety__features p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--beige);
    opacity: 0.9;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .tsl-safety__grid {
        flex-direction: column;
        gap: 2rem;
    }

    .tsl-safety__features {
        grid-template-columns: 1fr;
    }

    .tsl-safety__guarantee {
        text-align: center;
        align-items: center;
    }

    .tsl-safety__badge {
        margin: 0 auto;
    }
}
/**/
.tsl-footer {
    background-color: var(--purple-dark);
    color: var(--white);
    font-family: var(--font-base);
}
.tsl-footer a {
    color: var(--pink);
}

.tsl-footer__safety {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.tsl-footer__safety-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.tsl-footer__icon-wrap img {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.tsl-footer__safety-text h3 {
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
    font-weight: 700;
    font-family: var(--font-head);
}

.tsl-footer__safety-text p {
    font-size: 0.95rem;
    color: var(--beige);
    margin: 0.25rem 0;
}

.tsl-footer__main {
    margin-bottom: 2rem;
}

.tsl-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.tsl-footer__col h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
}
.tsl-footer__col {
    max-width: 200px;
}

.tsl-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tsl-footer__col a {
    color: var(--beige);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tsl-footer__col a:hover {
    color: var(--pink);
}

.tsl-footer__desc {
    font-size: 0.95rem;
    color: var(--beige);
    line-height: 1.5;
    margin-top: 1rem;
}

.tsl-footer__phone {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--pink);
}

.tsl-footer__logos {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.tsl-footer__logos img {
    height: 38px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.tsl-footer__disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--beige);
    margin-bottom: 1rem;
    opacity: 0.75;
}

.tsl-footer__copy {
    font-size: 0.8rem;
    color: var(--beige);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem;
    text-align: center;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .tsl-footer__safety-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .tsl-footer__grid {
        grid-template-columns: 1fr;
    }

    .tsl-footer__logos {
        justify-content: center;
    }
}
/**/
.tsl-age-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.tsl-age-popup__content {
    background: var(--purple-dark);
    padding: 2rem;
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.6s ease;
}

.tsl-age-popup__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.tsl-age-popup__title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-family: var(--font-head);
}

.tsl-age-popup__text {
    font-size: 1rem;
    color: var(--beige);
    margin-bottom: 2rem;
}

.tsl-age-popup__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.tsl-cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--purple-dark);
    color: var(--white);
    padding: 1rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 9998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    font-size: 0.95rem;
}

.tsl-cookies__text {
    flex: 1 1 60%;
    margin: 0;
    color: var(--beige);
}

.tsl-cookies__text a {
    color: var(--pink);
    text-decoration: underline;
}

.tsl-cookies__actions {
    display: flex;
    gap: 1rem;
    flex: 1 1 35%;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

@media (max-width: 600px) {
    .tsl-cookies {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .tsl-cookies__actions {
        justify-content: center;
    }
}
