*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.2;
    color: #0f0f19;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

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

button {
    font: inherit;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: inherit;
}

:root {
    --color-bg: #ffffff;
    --color-pink: #fbd9fd;
    --color-pink-deep: #755477;
    --color-ink: #0f0f19;
    --color-white: #ffffff;
    --max-width: 1200px;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.site-header {
    background: var(--color-pink);
    border-bottom: 2px solid var(--color-ink);
    position: relative;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand__logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand__name {
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav__link {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1;
}

.nav__link:hover {
    opacity: 0.7;
}

.burger {
    display: none;
    width: 38px;
    height: 26px;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.burger:hover {
    opacity: 0.7;
}

.burger img {
    width: 100%;
    height: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-ink);
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.2;
    padding: 20px 60px;
    transition: opacity 0.2s ease;
}

.btn:hover {
    opacity: 0.85;
}

.site-footer {
    background: var(--color-pink);
    border-bottom: 2px solid var(--color-ink);
    padding: 60px 80px;
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.site-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.site-footer__nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-footer__nav a {
    font-size: 16px;
    text-transform: uppercase;
}

.site-footer__nav a:hover {
    opacity: 0.7;
}

.site-footer__contacts {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.contact-pill {
    background: var(--color-ink);
    color: var(--color-white);
    padding: 14px 30px;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.site-footer__socials {
    display: flex;
    gap: 26.471px;
    align-items: center;
}

.site-footer__socials a {
    display: inline-flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.site-footer__socials a:hover {
    transform: translateY(-2px);
}

.site-footer__socials img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-footer__copy {
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
}

.hero {
    background: var(--color-pink);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.hero__row {
    display: flex;
    flex-direction: column;
    /* gap: 40px; */
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    margin-bottom: 20px;
}

.hero__title {
    font-weight: 700;
    font-size: 100px;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    /* width: 529px; */
    /* flex-shrink: 0; */
    word-break: break-word;
}

.hero__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 20px;
    padding-top: 60px;
    width: 511px;
    flex-shrink: 0;
}

.hero__text {
    font-size: 16px;
    line-height: 1.2;
    text-align: right;
    width: 100%;
}

.hero__text p {
    margin: 0 0 16px;
}

.hero__text p:last-child {
    margin-bottom: 0;
}

.hero__image {
    width: 528px;
    height: 170px;
    object-fit: cover;
    align-self: flex-end;
    margin-left: auto;
}

.section {
    padding: 60px;
}

.section--white {
    background: var(--color-bg);
}

.about {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.about__col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.about__title {
    font-weight: 700;
    font-size: 70px;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    width: 100%;
}

.about__text {
    font-size: 16px;
    line-height: 1.2;
    width: 100%;
}

.about__text p {
    margin: 0 0 16px;
}

.about__text p:last-child {
    margin-bottom: 0;
}

.about__image-wrap {
    flex: 1 1 0;
    min-width: 0;
    height: 440px;
    position: relative;
}

.about__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.types {
    background: var(--color-bg);
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.types__title {
    font-weight: 700;
    font-size: 70px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    margin: 0;
    width: 1080px;
    max-width: 100%;
}

.types__list {
    width: 1200px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 43px;
    align-items: flex-end;
    position: relative;
}

.types__image {
    position: absolute;
    left: 228px;
    top: 0;
    width: 303px;
    height: 324px;
    object-fit: cover;
    z-index: 3;
}

.types__item {
    width: 561px;
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    line-height: 0.9;
    margin: 0;
    margin-left: auto;
    color: var(--color-ink);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.types__item-link {
    display: block;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.types__item--active {
    background: var(--color-ink);
    color: var(--color-pink);
    width: 100%;
    padding: 13px 60px 16px;
    height: 69px;
    justify-content: flex-end;
}

.types__item-inner {
    width: 501px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.types__arrow {
    width: 35px;
    height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.types__arrow img {
    width: 35px;
    height: 39px;
    transform: rotate(45deg);
}

.features {
    background: linear-gradient(to bottom, var(--color-pink), var(--color-pink-deep));
    padding: 60px;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.features__image {
    flex: 1 1 0;
    min-width: 0;
    align-self: stretch;
    position: relative;
    min-height: 695.79px;
}

.features__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features__right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    width: 529px;
    flex-shrink: 0;
}

.features__title {
    font-weight: 700;
    font-size: 70px;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    width: 529px;
}

.features__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    align-content: center;
    justify-content: center;
}

.feature-card {
    width: 250px;
    border: 0.877px solid var(--color-ink);
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: transparent;
    overflow: hidden;
}

.feature-card__inner {
    display: flex;
    flex-direction: column;
    gap: 13.158px;
    width: 100%;
}

.feature-card__icon {
    width: 52.632px;
    height: 52.632px;
}

.feature-card__title {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    margin: 0;
}

.feature-card__text {
    font-size: 16px;
    line-height: 1.2;
    margin: 13.158px 0 0;
}

.faq {
    background: var(--color-bg);
    padding: 60px;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.faq__left {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.faq__title {
    font-weight: 700;
    font-size: 70px;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    width: 100%;
}

.faq__image {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.faq__list {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 13.158px;
}

.faq-item {
    border: 0.877px solid var(--color-ink);
    padding: 18px;
    background: transparent;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-item__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
}

.faq-item__text-wrap {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item__question {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    margin: 0;
    width: 100%;
}

.faq-item__answer {
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq-item--open .faq-item__answer {
    max-height: 500px;
    opacity: 1;
}

.faq-item__icon {
    width: 17.544px;
    height: 17.544px;
    flex-shrink: 0;
    margin-top: 6px;
    transition: transform 0.3s ease;
}

.faq-item--open .faq-item__icon {
    transform: rotate(180deg);
}

.catalog {
    background: var(--color-bg);
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    align-items: center;
}

.catalog__title {
    font-weight: 700;
    font-size: 80px;
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
    margin: 0;
    width: 1080px;
    max-width: 100%;
}

.catalog__lead {
    font-size: 16px;
    line-height: 1.2;
    width: 1080px;
    max-width: 100%;
    text-align: center;
}

.catalog__lead p {
    margin: 0 0 16px;
}

.catalog__lead p:last-child {
    margin-bottom: 0;
}

.catalog__grid {
    display: flex;
    gap: 17.544px;
    align-items: center;
    justify-content: center;
    width: 1080px;
    max-width: 100%;
    margin: 0 auto;
}

.catalog__col {
    display: flex;
    flex-direction: column;
    gap: 17.544px;
}

.catalog__col--left {
    width: 275.439px;
    align-items: flex-end;
}

.catalog__col--mid {
    width: 150.877px;
    padding-top: 62.28px;
}

.catalog__col--right {
    width: 275.439px;
    align-items: flex-start;
}

.game-card {
    display: block;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.game-card:hover {
    transform: translateY(-4px);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-card--lg {
    width: 275.439px;
    height: 275.439px;
}

.game-card--sm {
    width: 150.877px;
    height: 150.877px;
}

@media (max-width: 1024px) {
    .catalog {
        padding: 40px 20px;
        gap: 20px;
    }

    .catalog__title {
        font-size: 40px;
        width: 100%;
    }

    .catalog__lead {
        width: 100%;
        text-align: center;
    }

    .catalog__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        width: 100%;
    }

    .catalog__col {
        display: contents;
    }

    .catalog__col--mid {
        padding-top: 0;
    }

    .game-card--lg,
    .game-card--sm {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

.game-page {
    background: var(--color-bg);
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.game-page__poster {
    width: 175.439px;
    height: 175.439px;
    overflow: hidden;
}

.game-page__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-page__title {
    font-weight: 700;
    font-size: 70px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    margin: 0;
    width: 100%;
}

.game-page__lead {
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    width: 100%;
}

.game-page__lead p {
    margin: 0 0 16px;
}

.game-page__lead p:last-child {
    margin-bottom: 0;
}

.game-features {
    background: var(--color-bg);
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.game-features__title {
    font-weight: 700;
    font-size: 48px;
    text-transform: uppercase;
    line-height: 1.05;
    margin: 0;
    width: 100%;
}

.game-features__grid {
    display: flex;
    gap: 17.544px;
    width: 100%;
    align-items: stretch;
    justify-content: center;
}

.game-features__grid .feature-card {
    width: 250px;
    align-self: stretch;
}

.game-features__banner {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.game-features__banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .game-page {
        padding: 40px 20px;
    }

    .game-page__title {
        font-size: 40px;
    }

    .game-features {
        padding: 40px 20px;
        gap: 30px;
    }

    .game-features__title {
        font-size: 32px;
    }

    .game-features__grid {
        flex-direction: column;
        gap: 14px;
    }

    .game-features__grid .feature-card {
        width: 100%;
    }

    .game-features__banner {
        height: 180px;
    }
}

.policy {
    background: var(--color-bg);
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--color-ink);
}

.policy__title {
    font-weight: 700;
    font-size: 70px;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    width: 100%;
}

.policy__body {
    font-size: 16px;
    line-height: 1.2;
    width: 100%;
}

.policy__body p,
.policy__body ul {
    margin: 0 0 10px;
}

.policy__body ul {
    padding-left: 24px;
    list-style: disc;
}

.policy__body li {
    margin-bottom: 0;
}

.policy__body a {
    text-decoration: underline;
    color: inherit;
    word-break: break-word;
}

.policy__body a:hover {
    opacity: 0.7;
}

.policy__body>*:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .policy {
        padding: 40px 20px;
    }

    .policy__title {
        font-size: 40px;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 40px 20px;
    }

    .hero__row {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .hero__title {
        font-size: 50px;
        width: 100%;
        text-align: left;
    }

    .hero__image {
        width: 100%;
        max-width: 390px;
        height: 170px;
        margin: 0 auto;
        align-self: center;
    }

    .hero__right {
        padding-top: 40px;
        width: 100%;
        align-items: flex-end;
    }

    .section {
        padding: 40px 20px;
    }

    .about {
        flex-direction: column;
        gap: 20px;
    }

    .about__col {
        width: 100%;
        align-items: flex-start;
    }

    .about__title {
        font-size: 40px;
    }

    .about__image-wrap {
        width: 100%;
        height: 200px;
    }

    .about--reverse .about__image-wrap {
        order: -1;
    }

    .types {
        padding: 40px 20px;
        gap: 20px;
    }

    .types__title {
        font-size: 40px;
        width: 100%;
    }

    .types__image {
        position: static;
        width: 100%;
        height: 324px;
    }

    .types__list {
        width: 100%;
        gap: 30px;
    }

    .types__item {
        width: 100%;
        font-size: 24px;
    }

    .types__item--active {
        padding: 13px 10px 16px;
        height: 69px;
        justify-content: center;
    }

    .types__item-inner {
        width: 100%;
    }

    .features {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        align-items: stretch;
    }

    .features__image {
        width: 100%;
        height: 300px;
        min-height: 300px;
    }

    .features__right {
        width: 100%;
        gap: 40px;
    }

    .features__title {
        font-size: 40px;
        width: 100%;
    }

    .features__grid {
        flex-direction: column;
        align-items: stretch;
    }

    .feature-card {
        width: 100%;
    }

    .faq {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
    }

    .faq__left {
        width: 100%;
    }

    .faq__title {
        font-size: 40px;
    }

    .faq__image {
        height: 200px;
    }

    .faq__list {
        width: 100%;
    }

    .site-header__inner {
        padding: 20px;
    }

    .brand__logo {
        width: 30px;
        height: 30px;
    }

    .brand__name {
        font-size: 22px;
    }

    .nav {
        display: none;
    }

    .nav.is-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-pink);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-bottom: 2px solid var(--color-ink);
        z-index: 50;
    }

    .burger {
        display: inline-flex;
    }

    .site-footer {
        padding: 40px 20px;
    }

    .site-footer__top {
        flex-direction: column;
        gap: 20px;
    }

    .site-footer__nav {
        flex-direction: column;
        gap: 10px;
    }

    .site-footer__contacts {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .contact-pill {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .site-footer__copy {
        font-size: 12px;
    }
}

/* ============================================================
   Cookie consent banner
   ============================================================ */
.cookie {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 15, 25, 0.55);
    animation: cookie-fade 0.35s ease;
}

.cookie.is-open {
    display: flex;
}

.cookie__card {
    background: var(--color-white);
    border: 2px solid var(--color-ink);
    padding: 50px;
    width: 100%;
    max-width: 680px;
    animation: cookie-pop 0.4s ease;
}

.cookie__title {
    font-weight: 700;
    font-size: 56px;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 24px;
}

.cookie__text {
    font-size: 20px;
    line-height: 1.35;
    margin: 0 0 30px;
}

.cookie__link {
    color: inherit;
    text-decoration: none;
}

.cookie__link:hover {
    text-decoration: underline;
}

.cookie__actions {
    display: flex;
    gap: 20px;
}

.cookie__btn {
    flex: 1;
    background: var(--color-ink);
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.2;
    padding: 18px 20px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie__btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

@keyframes cookie-fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes cookie-pop {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .cookie__card {
        padding: 30px;
    }

    .cookie__title {
        font-size: 40px;
        margin-bottom: 18px;
    }

    .cookie__text {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .cookie__actions {
        flex-direction: column;
    }
}

/* ============================================================
   Hover effects & micro-interactions
   ============================================================ */
.brand__logo {
    transition: transform 0.3s ease;
}

.brand:hover .brand__logo {
    transform: rotate(-8deg) scale(1.08);
}

.btn {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.contact-pill {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-pill:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.feature-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(15, 15, 25, 0.18);
    background: rgba(255, 255, 255, 0.4);
}

.types__item-link {
    transition: transform 0.2s ease;
}

.types__item-link:hover {
    transform: translateX(-6px);
}

.types__item-link:hover .types__item {
    opacity: 0.75;
}

.types__item-link:hover .types__item--active {
    opacity: 1;
}

.types__arrow {
    transition: transform 0.25s ease;
}

.types__item-link:hover .types__arrow {
    transform: translate(4px, 4px);
}

.game-card:hover {
    box-shadow: 0 14px 30px rgba(15, 15, 25, 0.25);
}

.game-card img {
    transition: transform 0.4s ease;
}

.game-card:hover img {
    transform: scale(1.06);
}

.game-page__poster img,
.game-features__banner img,
.about__image-wrap img,
.faq__image {
    transition: transform 0.5s ease;
}

.game-page__poster:hover img,
.game-features__banner:hover img,
.about__image-wrap:hover img,
.faq__image:hover {
    transform: scale(1.05);
}

.faq-item:hover {
    background: rgba(15, 15, 25, 0.04);
}

/* ============================================================
   Scroll reveal animations
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .cookie,
    .cookie__card {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}

.inline-link {
    color: #ff9a4d;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500
}

.inline-link:hover {
    opacity: .85
}

.editorial-meta {
    display: block;
    color: #0f0f19;
    font-size: 13px;
    line-height: 1.6;
    margin: 6px 0 14px;
    letter-spacing: .02em;
    text-align: center;
}

.editorial-note {
    border-left: 2px solid #ff9a4d;
    padding: 6px 0 6px 16px;
    margin: 18px 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .85)
}

.source-line {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .85);
    margin: 14px 0 0
}

.dev-notice {
    display: block;
    margin: 14px 0 0;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .65);
    text-align: center
}

.byline {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    line-height: 1.6
}