@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --bg: #09090b;
    --bg-secondary: rgba(39, 39, 42, 0.302);
    --bg-accent: #27272a;

    --text: #fafafa;
    --text-secondary: #a1a1aa;
    
    --accent: #14b8a5;
    --accent-gradient: linear-gradient(135deg, rgb(20, 184, 165), rgb(51, 255, 231));
    --accent-gradient-2: linear-gradient(135deg, rgb(204, 102, 255), rgb(102, 153, 255));
    --accent-gradient-3: linear-gradient(135deg, rgb(255, 153, 51), rgb(255, 168, 80));
    --hover-bg: #ff9933;
    --glow-shadow: 0 0 40px rgba(51, 255, 231, 0.4);
    --box-shadow:rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(20, 184, 165, 0.3) 0px 10px 30px -5px;

    --header-bg: rgba(9, 9, 11, 0.949);

    --hero-bg: rgba(9, 9, 11, 0.8);
    --hero-gradient: linear-gradient(135deg, rgb(20, 184, 165), rgb(255, 153, 51));
    --hero-border: rgba(20, 184, 165, 0.2);

    --star: #facc15;

    --alert: #f97316;
    --ok: #22c55e;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    background-color: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: grid;
    align-content: space-between;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}
/* ##### */
.not-found {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 200px 16px 150px;
}
/* ##### */
.header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--bg-accent);
}
.header .container {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;

    transition: opacity 0.2s ease-out;
    &:hover {
        opacity: 0.8;
    }
}
.header-logo img {
    border-radius: 8px;
    width: 64px;
    height: 64px;
}
.header-logo span {
    color: transparent;
    background: var(--accent-gradient);
    background-clip: text;
    font-size: 30px;
    font-weight: 700;
}
.header ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 16px;
}
.header ul a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease-out;

    &:hover {
        color: var(--accent);
    }
}
.header-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.header-regions,
.header-user {
    height: 36px;
    color: inherit;
    text-decoration: none;
    padding: 0 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;

    transition: background-color 0.2s ease-out;
    &:hover {
        background-color: var(--hover-bg);
    }
}
.header-regions svg,
.header-user svg,
.header-brg svg {
    width: 16px;
    height: 16px;
}
.header-user {
    border: 1px solid var(--bg-accent);
}
.header-brg {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--bg-accent);
    background-color: var(--hover-bg);
    display: none;
}
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 150;
    background-color: var(--bg);
    padding: 60px 16px 16px;
    transform: translateX(-100%);
    transition: transform 0.2s ease-out;
}
.nav.open {
    transform: translateX(0);
}
.nav-close {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 40px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav ul {
    display: grid;
    gap: 16px;
    list-style-type: none;
    text-align: center;
}
.nav a {
    text-decoration: none;
    font-size: 18px;
    color: inherit;
}
@media (max-width: 768px) {
    .header nav,
    .header-regions {
        display: none;
    }
    .header-btns {
        margin-left: auto;
    }
    .header-brg {
        display: flex;
    }
}
/* ##### */
.footer {
    background-color: var(--bg-accent);
    color: var(--text-secondary);
}
.footer .container {
    padding: 48px 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 32px;
}
.footer-info h2 {
    font-size: 24px;
    color: transparent;
    background: var(--accent-gradient);
    background-clip: text;
    margin-bottom: 16px;
}
.footer-info p {
    font-size: 14px;
    margin-bottom: 16px;
}
.footer-nav h3 {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 16px;
}
.footer-nav ul  {
    list-style: none;
    display: grid;
    gap: 8px;
}
.footer-nav svg {
    display: inline-block;
    width: 16px;
    height: 16px;
}
.footer-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease-out;

    &:hover {
        color: var(--accent);
    }
}
.footer-rights {
    font-size: 12px;
    grid-column: span 4;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 64px;
    gap: 16px;
}
.footer-rights p:nth-child(2) {
    justify-self: end;
}
.footer-rights-bot {
    grid-column: span 2;
    text-align: center;
}
@media (max-width: 768px) {
    .footer .container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-rights {
        margin-top: 32px;
        grid-column: span 1;
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-rights-bot {
        grid-column: span 1;
    }
    .footer-rights p:nth-child(2) {
        justify-self: center;
    }
}
/* ##### */
.hero {
    background: url(../img/hero-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.hero-bg-blur {
    padding-top: 120px;
    padding-bottom: 10px;
    background-color: var(--hero-bg);
    backdrop-filter: blur(4px);
}
.hero .container {
    display: grid;
    justify-items: center;
}
.hero-trial {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 40px;
    background: var(--accent-gradient-3);
    margin-bottom: 24px;
}
.hero-trial svg {
    width: 16px;
    height: 16px;
}
.hero-title {
    display: grid;
    text-align: center;
    justify-items: center;
    font-size: 72px;
    line-height: 1;
    color: transparent;
    margin-bottom: 24px;
}
.hero-title span:nth-child(1){
    background: var(--hero-gradient);
    background-clip: text;
}
.hero-title span:nth-child(2){
    background: var(--text);
    background-clip: text;
}
.hero-title span:nth-child(3){
    background: var(--accent-gradient-2);
    background-clip: text;
}
.hero-desc {
    text-align: center;
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
}
.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}
.hero-btn-1 {
    cursor: pointer;
    padding: 8px 32px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    gap: 8px;
    color: var(--text);
    background: var(--accent-gradient);
    border-radius: 6px;
    text-decoration: none;
    transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;

    &:hover {
        transform: scale(1.02);
        box-shadow: var(--glow-shadow);
    }
}
.hero-btn-1 svg {
    width: 16px;
    height: 16px;
}
.hero-btn-2 {
    cursor: pointer;
    padding: 8px 32px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    gap: 8px;
    color: var(--accent);
    background-color: var(--bg);
    border-radius: 6px;
    border: 1px solid var(--accent);
    text-decoration: none;
    transition: background-color 0.2s ease-out, color 0.2s ease-out;

    &:hover {
        color: var(--text);
        background-color: var(--accent);
    }
}
.hero-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hero-item {
    width: 100%;
    max-width: 240px;
    display: grid;
    justify-items: center;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--hero-border);
    transition: border-color 0.2s ease-out;

    &:hover {
        border-color: var(--accent);
    }
}
.hero-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-bottom: 16px;
}
.hero-item:nth-child(1) .hero-icon {
    background: var(--accent-gradient);
}
.hero-item:nth-child(2) .hero-icon {
    background: var(--accent-gradient-2);
}
.hero-item:nth-child(3) .hero-icon {
    background: var(--accent-gradient-3);
}
.hero-icon svg {
    width: 24px;
    height: 24px;
}
.hero-item-name {
    font-size: 16px;
    margin-bottom: 8px;
    text-align: center;
}
.hero-item-desc {
    color: var(--text-secondary);
    font-size: 14px;
    text-align: center;
}
@media (max-width: 768px) {
    .hero-trial {
        font-size: 12px;
    }
    .hero-title {
        font-size: 38px;
    }
    .hero-desc {
        font-size: 16px;
    }
    .hero-btns {
        flex-direction: column;
        min-width: 240px;
        align-items: stretch;
    }
    .hero-box {
        grid-template-columns: 1fr;
    }
    .hero-item {
        max-width: 380px;
    }
}
/* ##### */
.grid-wrap {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 1024px) {
    .grid-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .grid-wrap {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
/* ##### */
.games .container {
    padding: 64px 16px;
}
.games-title {
    text-align: center;
    font-size: 36px;
    color: transparent;
    background: var(--accent-gradient);
    background-clip: text;
    margin-bottom: 8px;
}
.games-desc {
    font-size: 16px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-secondary);
}
.games-item {
    width: 100%;
    max-width: 420px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--bg-accent);

    transition: box-shadow 0.2s ease-out;
    &:hover {
        box-shadow: var(--box-shadow);
    }
}
.games-label-f {
    position: absolute;
    z-index: 1;
    top: 5px;
    left: 5px;
    font-size: 10px;
    display: block;
    width: max-content;
    padding: 4px 8px;
    border-radius: 20px;
    background: var(--accent-gradient-3);
    color: var(--text);
}
.games-label-p {
    position: absolute;
    z-index: 1;
    top: 5px;
    right: 5px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: max-content;
    padding: 4px 8px;
    border-radius: 20px;
    background: var(--accent-gradient);
    color: var(--text);
}
.games-label-p svg {
    width: 10px;
    height: 10px;
}
.games-img {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.games-img::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.2s ease-out;
}
.games-item:hover .games-img::before {
    opacity: 1;
}
.games-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease-out;
}
.games-item:hover .games-img img {
    transform: scale(1.05);
}
.games-item:hover .games-img a {
    opacity: 0.8;
}
.games-item:hover .games-img a:hover {
    opacity: 1;
}
.games-img a {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    border-radius: 6px;
    background-color: var(--accent);
    color: var(--text);
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease-out;
}
.games-img a svg {
    width: 16px;
    height: 16px;
}
.games-info {
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr max-content;
    gap: 8px;
}
.games-info h3 {
    font-size: 18px;
}
.games-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 14px;
    font-weight: bold;
}
.games-rating svg {
    width: 16px;
    height: 16px;
    color: var(--star);
}
.games-category {
    font-size: 12px;
    background-color: var(--bg-accent);
    padding: 2px 10px;
    border-radius: 20px;
    width: max-content;
}
.games-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: var(--text);
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 6px;
    width: max-content;
    margin: 24px auto 0;

    transition: box-shadow 0.2s ease-out;
    &:hover {
        box-shadow: var(--glow-shadow);
    }
}
/* ##### */
.categories .container {
    margin-bottom: 64px;
}
.categories-title {
    text-align: center;
    font-size: 36px;
    color: transparent;
    background: var(--accent-gradient-2);
    background-clip: text;
    margin-bottom: 32px;
}
.categories-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.categories-item {
    padding: 32px;
    background-color: var(--bg);
    display: grid;
    justify-items: center;
    border-radius: 8px;
    border: 1px solid var(--bg-accent);

    transition: box-shadow 0.2s ease-out;
    &:hover {
        box-shadow: var(--box-shadow);
    }
}
.categories-label {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}
.categories-item:nth-child(1) .categories-label {
    background-color: #ff9933;
}
.categories-item:nth-child(2) .categories-label {
    background-color: #6699ff;
}
.categories-item:nth-child(3) .categories-label {
    background-color: #00ff00;
}
.categories-item:nth-child(4) .categories-label {
    background-color: #cc66ff;
}
.categories h3 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 8px;
}
.categories-count {
    color: var(--text-secondary);
    font-size: 14px;
}
.categories-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: var(--text);
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 6px;
    width: max-content;
    margin: 24px auto 0;

    transition: box-shadow 0.2s ease-out;
    &:hover {
        box-shadow: var(--glow-shadow);
    }
}
@media (max-width: 768px) {
    .categories-box {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ##### */
.videos {
    background-color: var(--bg-secondary);
}
.videos .container {
    padding: 64px 16px;
}
.videos-title {
    text-align: center;
    font-size: 36px;
    color: transparent;
    background: var(--accent-gradient);
    background-clip: text;
    margin-bottom: 8px;
}
.videos-desc {
    font-size: 16px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-secondary);
}
.videos-item {
    width: 100%;
    max-width: 420px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg);
    border: 1px solid var(--bg-accent);

    transition: box-shadow 0.2s ease-out;
    &:hover {
        box-shadow: var(--box-shadow);
    }
}
.videos-label-f {
    position: absolute;
    z-index: 1;
    top: 5px;
    left: 5px;
    font-size: 10px;
    display: block;
    width: max-content;
    padding: 4px 8px;
    border-radius: 20px;
    background: var(--accent-gradient-3);
    color: var(--text);
}
.videos-label-p {
    position: absolute;
    z-index: 1;
    top: 5px;
    right: 5px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: max-content;
    padding: 4px 8px;
    border-radius: 20px;
    background: var(--accent-gradient);
    color: var(--text);
}
.videos-label-p svg {
    width: 10px;
    height: 10px;
}
.videos-img {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.videos-img::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.2s ease-out;
}
.videos-item:hover .videos-img::before {
    opacity: 1;
}
.videos-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease-out;
}
.videos-item:hover .videos-img img {
    transform: scale(1.05);
}
.videos-item:hover .videos-img a {
    opacity: 0.8;
}
.videos-item:hover .videos-img a:hover {
    opacity: 1;
}
.videos-img a {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    border-radius: 6px;
    background-color: var(--text);
    color: var(--bg);
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease-out;
}
.videos-img a svg {
    width: 16px;
    height: 16px;
}
.videos-time {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: max-content;
    padding: 4px 8px;
    border-radius: 20px;
    background: var(--bg);
    color: var(--text);
}
.videos-time svg {
    width: 12px;
    height: 12px;
}
.videos-info {
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr max-content;
    gap: 8px;
}
.videos-info h3 {
    font-size: 18px;
    grid-column: span 2;
    transition: color 0.2s ease-out;
}
.videos-item:hover .videos-info h3 {
    color: var(--accent);
}
.videos-views,
.videos-date {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--text-secondary);
}
.videos-views svg,
.videos-date svg {
    width: 12px;
    height: 12px;
    color: var(--text-secondary);
}
.videos-category {
    grid-column: span 2;
    font-size: 12px;
    background-color: var(--bg-accent);
    padding: 2px 10px;
    border-radius: 20px;
    width: max-content;
}
.videos-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: var(--text);
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 6px;
    width: max-content;
    margin: 24px auto 0;

    transition: box-shadow 0.2s ease-out;
    &:hover {
        box-shadow: var(--glow-shadow);
    }
}
/* ##### */
.articles .container {
    padding: 64px 16px;
}
.articles-title {
    text-align: center;
    font-size: 36px;
    color: transparent;
    background: var(--accent-gradient-2);
    background-clip: text;
    margin-bottom: 8px;
}
.articles-desc {
    font-size: 16px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-secondary);
}
.articles-item {
    width: 100%;
    max-width: 420px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg);
    border: 1px solid var(--bg-accent);

    transition: box-shadow 0.2s ease-out;
    &:hover {
        box-shadow: var(--box-shadow);
    }
}
.articles-label-f {
    position: absolute;
    z-index: 1;
    top: 5px;
    left: 5px;
    font-size: 10px;
    display: block;
    width: max-content;
    padding: 4px 8px;
    border-radius: 20px;
    background: var(--accent-gradient-3);
    color: var(--text);
}
.articles-label-p {
    position: absolute;
    z-index: 1;
    top: 5px;
    right: 5px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: max-content;
    padding: 4px 8px;
    border-radius: 20px;
    background: var(--accent-gradient);
    color: var(--text);
}
.articles-label-p svg {
    width: 10px;
    height: 10px;
}
.articles-img {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.articles-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease-out;
}
.articles-item:hover .articles-img img {
    transform: scale(1.05);
}
.articles-item:hover .articles-img a {
    opacity: 0.8;
}
.articles-item:hover .articles-img a:hover {
    opacity: 1;
}
.articles-img a {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    border-radius: 6px;
    background-color: var(--text);
    color: var(--bg);
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease-out;
}
.articles-img a svg {
    width: 16px;
    height: 16px;
}
.articles-info {
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr max-content;
    gap: 8px;
}
.articles-info h3 {
    font-size: 18px;
    grid-column: span 2;
    transition: color 0.2s ease-out;
}
.articles-item:hover .articles-info h3 {
    color: var(--accent);
}
.articles-about {
    grid-column: span 2;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.articles-time,
.articles-date,
.articles-author {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--text-secondary);
}
.articles-time svg,
.articles-date svg,
.articles-author svg {
    width: 12px;
    height: 12px;
    color: var(--text-secondary);
}
.articles-category {
    grid-column: span 2;
    font-size: 12px;
    background-color: var(--bg-accent);
    padding: 2px 10px;
    border-radius: 20px;
    width: max-content;
}
.articles-info a {
    cursor: pointer;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 6px;
    width: max-content;

    transition: background-color 0.2s ease-out, color 0.2s ease-out;
    &:hover {
        background-color: var(--accent);
        color: var(--text);
    }
}
.articles-info a svg {
    width: 12px;
    height: 12px;
}
.articles-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: var(--text);
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 6px;
    width: max-content;
    margin: 24px auto 0;

    transition: box-shadow 0.2s ease-out;
    &:hover {
        box-shadow: var(--glow-shadow);
    }
}
/* ##### */
.reviews {
    background-color: var(--bg-secondary);
}
.reviews .container {
    padding: 64px 16px;
}
.reviews-title {
    text-align: center;
    font-size: 36px;
    color: transparent;
    background: var(--accent-gradient-3);
    background-clip: text;
    margin-bottom: 8px;
}
.reviews-desc {
    font-size: 16px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-secondary);
}
.reviews-item {
    width: 100%;
    max-width: 420px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--bg-accent);

    transition: box-shadow 0.2s ease-out;
    &:hover {
        box-shadow: var(--box-shadow);
    }
}
.reviews-img {
    position: relative;
    aspect-ratio: 8 / 2;
    overflow: hidden;
}
.reviews-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease-out;
}
.reviews-item:hover .reviews-img img {
    transform: scale(1.05);
}
.reviews-item:hover .reviews-img a {
    opacity: 0.8;
}
.reviews-item:hover .reviews-img a:hover {
    opacity: 1;
}
.reviews-info {
    padding: 16px;
    display: grid;
    gap: 8px;
}
.reviews-info h3 {
    font-size: 18px;
}
.reviews-item:hover .reviews-info h3 {
    color: var(--accent);
}
.reviews-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    font-weight: bold;
    color: var(--accent);
}
.reviews-rating svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    fill: var(--accent);
}
.reviews-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.reviews-author {
    display: grid;
    grid-template-columns: 32px 1fr;
    column-gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}
.reviews-author img {
    grid-row: span 2;
    width: 32px;
    height: 32px;
    border-radius: 40px;
    object-fit: cover;
}
.reviews-name {
    font-size: 14px;
}
.reviews-date {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-secondary);
}
.reviews-date svg {
    width: 12px;
    height: 12px;
    color: var(--text-secondary);
}
.reviews-like {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-secondary);
}
.reviews-like p:first-of-type {
    padding-right: 12px;
}
.reviews-like svg {
    width: 12px;
    height: 12px;
}
.reviews-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: var(--text);
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 6px;
    width: max-content;
    margin: 24px auto 0;

    transition: box-shadow 0.2s ease-out;
    &:hover {
        box-shadow: var(--glow-shadow);
    }
}
/* ##### */
.text .container {
    padding: 120px 16px 20px;
}
.text h1 {
    font-size: 30px;
    margin-bottom: 24px;
}
.text-wrap {
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--bg-accent);
}
.text p {
    color: var(--text-secondary);
}
.text p + p,
.text p + ul {
    margin-top: 12px;
    margin-bottom: 12px;
}
.text ul {
    color: var(--text-secondary);
    list-style-position: inside;
}
.text h2:first-child {
    margin-top: 0;
}
.text h2 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
}
.text-info {
    margin-top: 24px;
    padding: 16px;
    border-radius: 8px;
    background-color: var(--bg-accent);
}
/* ##### */
.unsub .container {
    padding: 120px 16px 20px;
}
.unsub h1 {
    font-size: 30px;
    margin-bottom: 24px;
    text-align: center;
}
.unsub-form {
    max-width: 650px;
    margin: 0 auto 24px;
    padding: 24px;
    border: 1px solid var(--bg-accent);
    border-radius: 8px;
}
.unsub-form h2 {
    font-size: 24px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.unsub-form h2 svg {
    color: var(--alert);
    width: 20px;
    height: 20px;
}
.unsub-form h3 {
    font-size: 16px;
    margin-bottom: 16px;
}
.unsub-item {
    margin-top: 16px;
    text-decoration: none;
    display: grid;
    grid-template-columns: 20px 1fr;
    column-gap: 12px;
    row-gap: 4px;
    align-items: center;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--bg-accent);

    transition: border-color 0.2s ease-out;
    &:hover {
        border-color: var(--accent);
    }
}
.unsub-item svg {
    color: var(--accent);
    grid-row: span 2;
    width: 20px;
    height: 20px;
}
.unsub-item h4 {
    font-size: 16px;
    color: var(--text);
}
.unsub-item p {
    font-size: 14px;
    color: var(--text-secondary);
}
.unsub-info {
    max-width: 650px;
    margin: 0 auto;
    padding: 24px;
    border: 1px solid var(--bg-accent);
    border-radius: 8px;
}
.unsub-info h2 {
    font-size: 24px;
    margin-bottom: 16px;
}
.unsub-info ul {
    list-style-position: inside;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.unsub-info li::marker {
    color: var(--accent);
}
/* ##### */
.help .container {
    padding: 120px 16px 20px;
}
.help h1 {
    font-size: 30px;
    margin-bottom: 24px;
}
.help-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.help-item {
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--bg-accent);
}
.help-item h2 {
    font-size: 24px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.help-item h2 svg {
    color: var(--text);
    width: 20px;
    height: 20px;
}
.help-item p {
    font-size: 16px;
    color: var(--text-secondary);
}
.help-link {
    border-radius: 8px;
    border: 1px solid var(--bg-accent);
    padding: 8px 12px;
    display: block;
    font-size: 14px;
    margin-top: 16px;
    text-decoration: none;
    color: var(--text);

    transition: background-color 0.2s ease-out;
    &:hover {
        background-color: var(--hover-bg);
    }
}
.help-link-2 {
    margin-top: 16px;
    text-decoration: none;
    display: grid;
    grid-template-columns: 20px 1fr;
    column-gap: 12px;
    row-gap: 4px;
    align-items: center;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--bg-accent);

    transition: border-color 0.2s ease-out;
    &:hover {
        border-color: var(--accent);
    }
}
.help-link-2 svg {
    color: var(--accent);
    grid-row: span 2;
    width: 20px;
    height: 20px;
}
.help-link-2 h3 {
    font-size: 16px;
    color: var(--text);
}
.help-link-2 p {
    font-size: 14px;
    color: var(--text-secondary);
}
.help-faq {
    margin-top: 32px;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--bg-accent);
}
.help-faq h2 {
    font-size: 24px;
}
.help-faq h3 {
    font-size: 16px;
    margin-bottom: 8px;
    margin-top: 24px;
}
.help-faq p {
    font-size: 14px;
    color: var(--text-secondary);
}
@media (max-width: 768px) {
    .help-box {
        grid-template-columns: 1fr;
    }
}
/* ##### */
.carrier .container {
    padding: 120px 16px 20px;
}
.carrier h1 {
    font-size: 30px;
    margin-bottom: 24px;
}
.carrier-box {
    padding: 16px;
    border: 1px solid var(--bg-accent);
    border-radius: 8px;
}
.carrier-box h2 {
    font-size: 24px;
    margin-bottom: 24px;
}
.carrier-item {
    margin-top: 16px;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--bg-accent);
    display: grid;
    grid-template-columns: 20px 1fr max-content;
    align-items: center;
    column-gap: 12px;
    row-gap: 4px;
}
.carrier-item svg {
    width: 20px;
    height: 20px;
    color: var(--ok);
    grid-row: span 2;
}
.carrier-item h3 {
    font-size: 16px;
}
.carrier-item p {
    font-size: 14px;
    color: var(--text-secondary);
}
.carrier-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    background-color: var(--accent);
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}
/* ##### */
.regions .container {
    padding: 120px 16px 20px;
}
.regions h1 {
    font-size: 30px;
    margin-bottom: 24px;
}
.regions-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.regions-box {
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--bg-accent);
}
.regions-box h2 {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.regions-box h2 span {
    padding: 2px 10px;
    font-size: 12px;
    background-color: var(--accent);
    border-radius: 20px;
}
.regions-item {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 16px 1fr;
    column-gap: 12px;
    row-gap: 4px;
}
.regions-item svg {
    width: 16px;
    height: 16px;
    grid-row: span 2;
}
.regions-item h3 {
    font-size: 14px;
}
.regions-item p {
    font-size: 14px;
    color: var(--text-secondary);
}
@media (max-width: 768px) {
    .regions-wrap {
        grid-template-columns: 1fr;
    }
}
/* ##### */