:root {
    --group-1: #d2d2d2;
    --group-2: #6d6f73;
    --group-3: #111111;
    --group-4: #5e5e5e;
    --group-5: #ededed;
    --group-6: #151515;
    --registration-button-text: #ffffff;
    --promo-banner-text: #111111;
    --container-width: 1165px;
    --tc-header-offset: 122px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    background: var(--group-5);
}

html.is-scroll-bottom {
    background: var(--group-1);
}

body {
    background: var(--group-5);
    color: var(--group-4);
    font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.45;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2 {
    color: var(--group-3);
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.tc-container {
    margin-inline: auto;
    max-width: calc(var(--container-width) + 48px);
    padding-inline: 24px;
    width: 100%;
}

.tc-header {
    background: var(--group-1);
    left: 0;
    min-height: 72px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 50;
}

body.admin-bar .tc-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .tc-header {
        top: 46px;
    }
}

.tc-header__inner {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-areas:
        "brand toggle"
        "actions actions";
    grid-template-columns: 1fr auto;
    min-height: 72px;
    padding-block: 10px;
    position: relative;
}

.tc-header__brand {
    align-items: center;
    background: transparent;
    border-radius: 0;
    color: var(--group-6);
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0.02em;
    line-height: 1;
    min-width: 0;
    padding: 0;
    grid-area: brand;
}

.tc-header__brand img {
    display: block;
    height: auto;
    max-height: 52px;
    max-width: 100%;
    width: auto;
}

.tc-header__toggle {
    align-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    height: 40px;
    justify-content: center;
    grid-area: toggle;
    justify-self: end;
    padding: 0;
    width: 40px;
}

.tc-header__toggle-line {
    background: var(--group-6);
    border-radius: 4px;
    display: block;
    height: 2px;
    width: 20px;
}

.tc-header__nav-wrap {
    background: var(--group-1);
    border-top: 0;
    display: none;
    left: 0;
    padding: 16px 24px 22px;
    position: absolute;
    right: 0;
    top: 100%;
}

.tc-header__nav-wrap.is-open {
    display: block;
}

.tc-header__menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tc-header__menu a {
    color: var(--group-6);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: color 0.2s ease;
}

.tc-header__menu a:hover,
.tc-header__menu a:focus-visible {
    color: var(--group-2);
}

.tc-header__actions {
    display: grid;
    gap: 10px;
    grid-area: actions;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    width: 100%;
}

.tc-btn {
    align-items: center;
    border-radius: 15px;
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0.02em;
    min-height: 46px;
    padding-inline: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background-color 0.2s ease, filter 0.2s ease;
}

.tc-header__actions .tc-btn {
    min-height: 50px;
    width: 100%;
}

.tc-btn--primary {
    background: var(--group-2);
    border: 1px solid var(--group-2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
    color: var(--registration-button-text);
    min-width: 155px;
}

.tc-btn--ghost {
    background: transparent;
    border: 1px solid var(--group-2);
    color: var(--group-6);
    min-width: 135px;
}

.tc-btn:hover {
    transform: translateY(-1px);
}

.tc-btn--primary:hover,
.tc-btn--primary:focus-visible {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
    filter: brightness(0.88);
}

.tc-btn--ghost:hover,
.tc-btn--ghost:focus-visible {
    background: var(--group-2);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
    color: var(--registration-button-text);
    filter: brightness(0.92);
}

.tc-btn:focus-visible {
    outline: 2px solid var(--group-2);
    outline-offset: 3px;
}

.site-main {
    padding-bottom: 36px;
    padding-top: var(--tc-header-offset);
}

.tc-front-page-content,
.tc-page-content {
    max-width: 863px;
}

.tc-cta-block {
    display: flex;
    justify-content: center;
    margin: 32px 0;
}

.tc-cta-block__button {
    min-height: 50px;
    min-width: 190px;
}

.tc-faq-block {
    margin: 8px 0 32px;
}

h2 + .tc-faq-block {
    margin-top: -14px;
}

.tc-faq-block__item {
    border-bottom: 1px solid var(--group-4);
}

.tc-faq-block__question {
    color: var(--group-3);
    cursor: pointer;
    display: flex;
    font-size: 22px;
    font-weight: 700;
    justify-content: space-between;
    line-height: 1.2;
    list-style: none;
    padding: 16px 34px 16px 0;
    position: relative;
}

.tc-faq-block__question::-webkit-details-marker {
    display: none;
}

.tc-faq-block__question-heading {
    color: inherit;
    font: inherit;
    margin: 0;
}

.tc-faq-block__question::after {
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    content: "";
    height: 14px;
    position: absolute;
    right: 6px;
    top: 19px;
    transform: rotate(45deg);
    width: 14px;
}

.tc-faq-block__item[open] .tc-faq-block__question {
    color: var(--group-2);
}

.tc-faq-block__item[open] .tc-faq-block__question::after {
    top: 25px;
    transform: rotate(-135deg);
}

.tc-faq-block__answer {
    color: var(--group-4);
    font-size: 1rem;
    line-height: 1.45;
    padding: 8px 0 22px;
}

.tc-faq-block__answer p {
    margin: 0 0 16px;
}

.tc-faq-block__answer p:last-child {
    margin-bottom: 0;
}

.tc-error-404 {
    padding: 48px 0;
}

.tc-error-404__panel {
    background: var(--group-1);
    border: 1px solid color-mix(in srgb, var(--group-6) 16%, transparent);
    border-radius: 28px;
    color: var(--group-4);
    margin-inline: auto;
    max-width: 760px;
    padding: 42px 24px;
    text-align: center;
}

.tc-error-404__eyebrow {
    color: var(--group-2);
    font-size: clamp(3rem, 12vw, 6rem);
    font-weight: 700;
    line-height: 1;
    margin: 0 0 16px;
}

.tc-error-404 h1 {
    color: var(--group-3);
    font-size: clamp(2rem, 7vw, 3.25rem);
    line-height: 1.1;
    margin: 0 0 16px;
}

.tc-error-404 p:not(.tc-error-404__eyebrow) {
    color: var(--group-4);
    font-size: 18px;
    margin: 0 auto 28px;
    max-width: 520px;
}

.tc-error-404__button {
    min-height: 50px;
    min-width: 160px;
}

.tc-promo-banner {
    padding-top: 0;
}

.tc-promo-banner .tc-container {
    max-width: none;
    padding-inline: 0;
}

.tc-promo-banner__panel {
    background: var(--group-1);
    min-height: 480px;
    overflow: hidden;
    position: relative;
}

.tc-promo-banner__media {
    display: block;
    inset: 0;
    pointer-events: none;
    position: absolute;
    user-select: none;
    z-index: 0;
    -webkit-user-drag: none;
}

.tc-promo-banner__image {
    display: block;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    width: 100%;
    -webkit-user-drag: none;
}

.tc-promo-banner__content {
    max-width: 620px;
    padding: 48px 24px;
    position: relative;
    z-index: 1;
}

.tc-promo-banner__title {
    color: var(--promo-banner-text, var(--group-3));
    font-size: clamp(2.125rem, 9.5vw, 3.3125rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 20px;
}

.tc-promo-banner__description {
    color: var(--promo-banner-text, var(--group-3));
    font-size: 18px;
    line-height: 1.25;
    margin: 0 0 30px;
    max-width: 430px;
}

.tc-btn--promo {
    animation: tc-promo-button-pulse 2.6s ease-in-out infinite;
    min-height: 50px;
    min-width: 190px;
}

.tc-btn--promo:hover,
.tc-btn--promo:focus-visible {
    animation: none;
    transform: translateY(-1px);
}

@keyframes tc-promo-button-pulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.07);
    }
}

@media (prefers-reduced-motion: reduce) {
    .tc-btn--promo {
        animation: none;
    }
}

.tc-hero {
    padding-top: 18px;
}

.tc-hero__panel {
    background: var(--group-1);
    border-radius: 24px;
    min-height: 260px;
    padding: 32px 20px;
}

.tc-hero h1,
.tc-top-slots h2,
.tc-content-faq h2,
.tc-content-faq h3 {
    color: var(--group-3);
    font-weight: 700;
    margin: 0 0 18px;
}

.tc-hero h1 {
    font-size: clamp(2rem, 7vw, 3.4rem);
    line-height: 1.1;
}

.tc-hero p {
    font-size: 18px;
    margin: 0 0 28px;
    max-width: 520px;
}

.tc-btn--hero {
    min-width: 190px;
}

.tc-top-slots {
    padding-bottom: 32px;
    padding-top: 24px;
}

.tc-top-slots__header {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: space-between;
}

.tc-top-slots__title {
    color: var(--group-3);
    flex: 1 1 auto;
    font-size: clamp(1.25rem, 5.1vw, 1.75rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    min-width: 0;
}

.tc-search {
    align-items: center;
    background: transparent;
    border: 1px solid var(--group-2);
    border-radius: 15px;
    display: inline-flex;
    gap: 10px;
    color: var(--group-4);
    flex: 0 1 auto;
    font-size: 18px;
    height: 47px;
    max-width: min(62vw, 360px);
    min-width: 150px;
    padding: 0 16px;
    width: max-content;
}

.tc-search__icon {
    color: var(--group-2);
    flex: 0 0 auto;
}

.tc-search__text {
    color: var(--group-4);
    flex: 1 1 auto;
    min-width: 0;
    opacity: 0.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .tc-top-slots__title {
        font-size: clamp(1rem, 4.7vw, 1.45rem);
    }

    .tc-search {
        max-width: 58vw;
        min-width: 145px;
    }
}

.tc-top-slots__grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
}

.tc-slot-card {
    aspect-ratio: 210 / 265;
    background: var(--group-1);
    border-radius: 24px;
    display: block;
    overflow: hidden;
    position: relative;
}

.tc-slot-card__image {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
    width: 100%;
}

.tc-slot-card__overlay {
    align-items: center;
    background: rgba(0, 0, 0, 0.46);
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    position: absolute;
    transition: opacity 0.2s ease;
}

.tc-slot-card__play {
    font-size: 14px;
    min-height: 42px;
    min-width: 92px;
    padding-inline: 18px;
}

.tc-slot-card:hover .tc-slot-card__overlay,
.tc-slot-card:focus-visible .tc-slot-card__overlay {
    opacity: 1;
}

.tc-slot-card:hover .tc-slot-card__image,
.tc-slot-card:focus-visible .tc-slot-card__image {
    transform: scale(1.03);
}

.tc-slot-card--hide-mobile {
    display: none;
}

.tc-content-faq {
    padding-top: 30px;
}

.tc-content-faq__inner {
    max-width: 740px;
}

.tc-content-faq h2,
.tc-content-faq h3 {
    font-size: clamp(1.9rem, 5vw, 2.5rem);
}

.tc-content-faq h3 {
    font-size: clamp(1.4rem, 4vw, 1.5rem);
    margin-top: 28px;
}

.tc-content-faq p {
    font-size: 18px;
    margin: 0 0 22px;
}

.tc-faq__item {
    border-bottom: 1px solid var(--group-4);
    margin-bottom: 14px;
    padding-bottom: 14px;
}

.tc-faq__item summary {
    color: var(--group-3);
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    list-style: none;
    padding-right: 28px;
    position: relative;
}

.tc-faq__item summary::after {
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    content: "";
    height: 10px;
    position: absolute;
    right: 4px;
    top: 10px;
    transform: rotate(45deg);
    width: 10px;
}

.tc-faq__item[open] summary {
    color: var(--group-2);
}

.tc-faq__item[open] summary::after {
    transform: rotate(-135deg);
    top: 16px;
}

.tc-footer {
    background: var(--group-1);
    box-shadow: 0 100vh 0 100vh var(--group-1);
    margin-top: 36px;
    padding: 36px 0 28px;
}

.tc-footer__top {
    align-items: start;
    display: grid;
    gap: 28px;
}

.tc-footer__brand {
    align-items: center;
    display: inline-flex;
    line-height: 1;
    min-height: 48px;
}

.tc-footer__logo-image {
    display: block;
    height: auto;
    max-height: 54px;
    max-width: 180px;
    width: auto;
}

.tc-footer__follow {
    color: var(--group-6);
    font-size: 15px;
    font-weight: 700;
    margin: 16px 0 10px;
}

.tc-footer__social {
    display: flex;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tc-footer__social-link {
    align-items: center;
    border: 1px solid var(--group-6);
    border-radius: 7px;
    color: var(--group-6);
    display: inline-flex;
    flex: 0 0 35px;
    height: 35px;
    justify-content: center;
    line-height: 0;
    overflow: hidden;
    padding: 5px;
    transition: border-color 0.2s ease, color 0.2s ease;
    width: 35px;
}

.tc-footer__social-link:hover,
.tc-footer__social-link:focus-visible {
    border-color: var(--group-2);
    color: var(--group-2);
}

.tc-footer__social-link:empty::before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
}

.tc-footer__social-icon-placeholder {
    display: block;
    height: 100%;
    width: 100%;
}

.tc-footer__social-icon {
    color: currentColor;
    display: block;
    fill: currentColor;
    height: 23px;
    object-fit: contain;
    stroke: currentColor;
    width: 23px;
}

.tc-footer__menu {
    column-gap: 36px;
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
    list-style: none;
    margin: 0;
    padding: 0;
    row-gap: 14px;
}

.tc-footer__nav {
    min-width: 0;
    width: 100%;
}

.tc-footer__menu a,
.tc-footer__legal,
.tc-footer__help {
    color: var(--group-6);
    font-size: 15px;
    font-weight: 700;
}

.tc-footer__menu a {
    transition: color 0.2s ease;
}

.tc-footer__menu a:hover,
.tc-footer__menu a:focus-visible {
    color: var(--group-2);
}

.tc-footer__menu li + li {
    margin-top: 0;
}

.tc-footer__help-title {
    color: var(--group-6);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.1;
    margin: 0 0 8px;
}

.tc-footer__help p:not(.tc-footer__help-title) {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.03em;
    margin: 0 0 10px;
}

.tc-footer__email {
    align-items: center;
    color: var(--group-6);
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    gap: 8px;
    transition: color 0.2s ease;
}

.tc-footer__email svg {
    color: currentColor;
    flex: 0 0 auto;
}

.tc-footer__email:hover,
.tc-footer__email:focus-visible {
    color: var(--group-2);
}

.tc-footer__bottom {
    border-top: 1px solid var(--group-4);
    display: grid;
    gap: 22px;
    margin-top: 36px;
    padding-top: 28px;
}

.tc-footer__legal p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.45;
    margin: 0;
}

.tc-footer__legal p:first-child {
    font-weight: 700;
}

.tc-footer__badges {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
}

.tc-footer__badge {
    color: var(--group-6);
    display: inline-flex;
}

.tc-footer__badge-image {
    color: currentColor;
    display: block;
    fill: currentColor;
    height: 34px;
    object-fit: contain;
    stroke: currentColor;
    width: var(--tc-footer-badge-width, 110px);
}

@media (max-width: 767px) {
    .tc-footer__badges .tc-footer__badge:last-child {
        display: none;
    }
}

@media (min-width: 1024px) {
    :root {
        --tc-header-offset: 100px;
    }

    .tc-header {
        left: 0;
        min-height: 100px;
        position: fixed;
        right: 0;
        top: 0;
    }

    body.admin-bar .tc-header {
        top: 32px;
    }

    .site-main {
        padding-top: var(--tc-header-offset);
    }

    .tc-header__inner {
        display: flex;
        gap: 12px;
        grid-template-areas: none;
        grid-template-columns: none;
        justify-content: space-between;
        min-height: 100px;
        padding-block: 0;
    }

    .tc-header__toggle {
        display: none;
    }

    .tc-header__nav-wrap {
        align-items: center;
        background: transparent;
        border-top: 0;
        display: flex;
        flex: 1;
        gap: 24px;
        justify-content: space-between;
        margin-left: 28px;
        padding: 0;
        position: static;
    }

    .tc-header__nav {
        display: flex;
        flex: 1;
        justify-content: center;
        margin-right: 0;
    }

    .tc-header__menu {
        align-items: center;
        flex-direction: row;
        gap: clamp(29px, 2.5vw, 47px);
        justify-content: center;
        width: 100%;
    }

    .tc-header__brand img {
        max-height: 74px;
    }

    .tc-header__actions {
        align-items: center;
        display: flex;
        flex-shrink: 0;
        gap: 16px;
        grid-template-columns: none;
        margin-top: 0;
        order: 3;
        width: auto;
    }

    .tc-header__actions .tc-btn {
        min-height: 50px;
        width: auto;
    }

    .tc-header__actions .tc-btn--primary {
        order: 1;
    }

    .tc-header__actions .tc-btn--ghost {
        order: 2;
    }

    .tc-promo-banner {
        padding-top: 28px;
    }

    .tc-promo-banner .tc-container {
        max-width: calc(var(--container-width) + 48px);
        padding-inline: 24px;
    }

    .tc-promo-banner__panel {
        border-radius: 40px;
        min-height: 470px;
    }

    .tc-promo-banner__content {
        padding: 90px 96px;
    }

    .tc-promo-banner__title {
        font-size: 53px;
    }

    .tc-hero {
        padding-top: 28px;
    }

    .tc-hero__panel {
        border-radius: 40px;
        min-height: 470px;
        padding: 90px 96px;
    }

    .tc-top-slots {
        padding-bottom: 38px;
        padding-top: 28px;
    }

    .tc-top-slots__title {
        font-size: 40px;
        min-width: 0;
    }

    .tc-search {
        max-width: none;
        min-width: 295px;
        width: auto;
    }

    .tc-top-slots__grid {
        gap: 22px;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        margin-top: 20px;
    }

    .tc-slot-card {
        border-radius: 30px;
    }

    .tc-slot-card--hide-mobile {
        display: block;
    }

    .tc-slot-card:hover {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .tc-footer {
        margin-top: 44px;
        padding-top: 56px;
    }

    .tc-footer__top {
        grid-template-columns: 1fr 0.9fr 1fr;
        justify-items: start;
    }

    .tc-footer__nav {
        justify-self: center;
        min-width: 320px;
    }

    .tc-footer__menu {
        column-gap: 72px;
        grid-auto-flow: column;
        grid-template-rows: repeat(5, auto);
        row-gap: 18px;
    }

    .tc-footer__menu li + li {
        margin-top: 0;
    }

    .tc-footer__help {
        justify-self: end;
    }

    .tc-footer__bottom {
        align-items: center;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .tc-footer__badges {
        justify-content: flex-end;
    }
}
