@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Outfit:wght@400;600;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 {
    --color-light: #ffffff;
    --color-accent: #fdc942;
    --color-accent-hover: rgba(253, 201, 66, 0.8);
    --color-primary:  #ff0066;
    --color-primary-hover: rgba(255, 0, 102, 0.77);
    --color-secondary: #581000;
    --color-secondary-hover: rgba(88, 16, 0, 0.7);
    --color-bg:  #190023;

    --font-fantasy: 'Luckiest Guy', cursive;
    --font-ui: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-light);
    background-color: var(--color-bg);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.cbs-title,
.cbs-subtitle,
.cbs-heading {
    font-family: var(--font-fantasy);
    font-weight: 400;
    margin-bottom: 1rem;
}

.cbs-title {
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: clamp(2.2rem, 1.9143rem + 1.4286vw, 3.2rem);
}

.cbs-subtitle {
    color: var(--color-light);
    font-size: clamp(1.5rem, 0.8vw + 1.2rem, 2.5rem);
}

.cbs-heading {
    font-size: clamp(1.2rem, 0.6vw + 1rem, 2rem);
    color: var(--color-light);
}

.cbs-text, li {
    font-family: var(--font-ui);
    font-weight: 300;
    color: var(--color-light);
    font-size: clamp(1rem, 0.8571rem + 0.7143vw, 1.2rem);
}

.cbs-text-dark, li {
    color: var(--color-bg);
}

.cbs-link {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cbs-link:hover {
    color: var(--color-accent-hover);
}

.cbs-btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 28px;
    border: 1px solid var(--color-accent);
    background: var(--color-accent);
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    font-family: var(--font-fantasy);
}

.cbs-btn:hover {
    background: var(--color-accent-hover);
}

.cbs-btn-outline {
    display: inline-block;
    padding: 12px 36px;
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    font-family: var(--font-fantasy);
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 28px;
    font-size: 1.2rem;
}

.cbs-btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-bg);
}

.cbs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/**/
.cbs-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(25, 0, 35, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cbs-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.cbs-logo {
    font-family: var(--font-fantasy);
    font-size: 1.8rem;
    color: var(--color-accent);
    letter-spacing: 1px;
    text-decoration: none;
}

.cbs-nav {
    display: flex;
    gap: 32px;
}

.cbs-nav__link {
    font-family: var(--font-ui);
    font-size: 1.2rem;
    color: var(--color-accent);
    text-decoration: none;
    transition: text-shadow 0.3s ease;
}

.cbs-nav__link:hover {
    text-shadow: 0 0 8px var(--color-accent);
}

.cbs-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.cbs-burger span {
    width: 24px;
    height: 3px;
    background-color: var(--color-accent);
    display: block;
    border-radius: 5px;
}

.cbs-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background-color: var(--color-bg);
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.4);
    padding: 2rem 1.5rem;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    z-index: 1001;
}

.cbs-mobile-menu.open {
    right: 0;
}

.cbs-mobile-close {
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--color-accent);
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.cbs-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cbs-mobile-nav .cbs-nav__link {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .cbs-nav {
        display: none;
    }

    .cbs-burger {
        display: flex;
    }
}
/**/
.cbs-hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    z-index: 1;
}

.cbs-hero__bg {
    position: absolute;
    inset: 0;
    background: url('img/hero-background.jpeg') center center / cover no-repeat;
    z-index: 0;
}

.cbs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(71 29 11 / 47%);
    backdrop-filter: blur(3px);
    z-index: 1;
}

.cbs-hero__inner {
    padding: 140px 24px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.cbs-hero__content {
    flex: 1 1 500px;
}

.cbs-hero__pretitle {
    font-family: var(--font-ui);
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--color-accent);
    text-transform: uppercase;
}

.cbs-hero__title {
    font-family: var(--font-fantasy);
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: var(--color-light);
    margin: 12px 0;
    line-height: 1.2;
}

.cbs-hero__title span {
    color: var(--color-accent);
}

.cbs-hero__line {
    width: 50%;
    height: 3px;
    background-color: var(--color-accent);
    border: none;
    margin: 24px 0;
}

.cbs-hero__text {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    color: var(--color-light);
    line-height: 1.8;
    max-width: 600px;
}

.cbs-hero__image-wrapper {
    flex: 1 1 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cbs-hero__image {
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
    box-shadow: 0 0 30px var(--color-accent);
    transition: all 0.4s ease;
}

.cbs-hero__image:hover {
    transform: translate(10px, 10px) scale(1.05);
    box-shadow: 0 0 40px var(--color-accent);
}
.hero__buttons {
    display: flex;
    gap: 20px;
    margin: 15px 0;
}
/**/
.cbs-disclaimer {
    background-color: var(--color-secondary);
    padding: 80px 0;
    color: var(--color-light);
}

.cbs-disclaimer__title {
    font-family: var(--font-fantasy);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--color-accent);
    margin-bottom: 32px;
    text-align: center;
}

.cbs-disclaimer__text p {
    font-family: var(--font-ui);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--color-light);
}

.cbs-disclaimer__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cbs-disclaimer__icon {
    height: 56px;
    width: auto;
    filter: brightness(1.1);
}

.cbs-disclaimer__logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
}
/**/
.cbs-footer {
    background-color: var(--color-secondary);
    padding: 60px 0;
    color: var(--color-light);
    font-family: var(--font-ui);
}

.cbs-footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 48px;
    padding: 10px 24px;
}

.cbs-footer__logo {
    font-family: var(--font-fantasy);
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.cbs-footer__copy {
    text-align: center;
}
.cbs-footer__icon {
    color: var(--color-accent);
    margin-right: 8px;
    font-size: 1rem;
}

.cbs-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.cbs-footer__link {
    color: var(--color-light);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.cbs-footer__link:hover {
    color: var(--color-accent);
}

@media (max-width: 640px) {
    .cbs-footer__inner {
        flex-direction: column;
        gap: 32px;
    }
}
/**/
.cbs-age-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-ui);
}

.cbs-age-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.cbs-age-modal__content {
    position: relative;
    background-color: var(--color-secondary);
    padding: 40px 32px;
    max-width: 420px;
    border-radius: 20px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 0 30px var(--color-accent);
    margin: 20px;
}

.cbs-age-modal__title {
    font-family: var(--font-fantasy);
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.cbs-age-modal__text {
    color: var(--color-light);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.cbs-age-modal__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}