@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;
    --err: #ef4444;
}

html {
    scroll-behavior: smooth;
}

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;
}

.hide-link {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
    opacity: 0;
}
/* ##### */
.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.relative {
    position: relative;
}
.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: 120px;
    height: 64px;
    object-fit: contain;
}
.header-logo span {
    color: transparent;
    background: var(--accent-gradient);
    background-clip: text;
    font-size: 24px;
    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 a {
    color: inherit;
}
.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;
    }
}
/* ##### */
.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;
    text-decoration: none;

    transition: box-shadow 0.2s ease-out;
    &:hover {
        box-shadow: var(--glow-shadow);
    }
}
.games-hide-link {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
    opacity: 0;
}
/* ##### */
.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 {
    position: relative;
    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-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.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;
    text-decoration: none;

    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: 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;
    text-decoration: none;

    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-item:hover .articles-info a {
    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;
    text-decoration: none;

    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-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);
}
.reviews-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);
}
.reviews-label-p svg {
    width: 10px;
    height: 10px;
}
.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-like a {
    margin-left: auto;
    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);
    }
}
.reviews-item:hover .reviews-like a {
    background-color: var(--accent);
    color: var(--text);
}
.reviews-like a 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;
    }
}
/* ##### */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(7px);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.modal.open {
    display: flex;
}
.modal-wrap {
    padding: 40px 24px 24px;
    background-color: var(--bg);
    border-radius: 8px;
    border: 1px solid var(--bg-accent);
    max-width: 450px;
    margin: 0 auto;
    position: relative;
}
.modal h2 {
    display: flex;
    align-items: center;
    font-size: 18px;
    gap: 12px;
    margin-bottom: 16px;
}
.modal-close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    font-size: 40px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.modal h2 svg {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    color: var(--err);
}
.modal h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}
.modal svg {
    width: 16px;
    height: 16px;
    color: var(--err);
}
.modal p {
    font-size: 14px;
    color: var(--text-secondary);
}
.modal p a {
    font-weight: bold;
    color: inherit;
}
.modal button,
.modal .goto-link  {
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    display: block;
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    margin-top: 16px;
    background-color: var(--accent);
    color: var(--text);
    font-size: 14px;

    transition: box-shadow 0.2s ease-out;
    &:hover {
        box-shadow: var(--glow-shadow);
    }
}
/* #### */
.game-modal {
    position: fixed;
    z-index: 150;
    top: 0;
    left: 0;
    z-index: 200;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.game-modal.open {
    display: flex;
}
.game-modal-wrap {
    padding: 40px 24px 24px;
    background-color: var(--bg);
    border-radius: 8px;
    border: 1px solid var(--bg-accent);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.game-modal-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 40px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.game-modal iframe {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    background: #999;
}
/* #### */
.article-page {
    padding: 120px 16px 20px;
}
.article-page .container {
    max-width: 700px;
}
.article-page-header img {
    display: block;
    width: 100%;
    max-height: 250px;
    object-fit: cover;
}
.article-page-header h2 {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 24px;
}
.article-page-info {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
}
.article-page-info div,
.article-page-info div {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--text-secondary);
}

.article-page-info svg {
    width: 16px;
    height: 16px;
}
.article-page-text h3 {
    font-size: 18px;
    margin-bottom: 16px;
}
.article-page-text p + h3 {
    margin-top: 24px;
}
.article-page-text p + p {
    margin-top: 8px;
}
/* #### */
/* #### */
.review-page {
    padding: 120px 16px 20px;
}
.review-page .container {
    max-width: 700px;
}
.review-page-header img {
    display: block;
    width: 100%;
    max-height: 250px;
    object-fit: cover;
}
.review-page-header h2 {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 24px;
}
.review-page-info {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
}
.review-page-info div,
.review-page-info div {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--text-secondary);
}

.review-page-info svg {
    width: 16px;
    height: 16px;
}
.review-page-text h3 {
    font-size: 18px;
    margin-bottom: 16px;
}
.review-page-text p + h3 {
    margin-top: 24px;
}
.review-page-text p + p {
    margin-top: 8px;
}
/* #### */
.video-page {
    padding: 120px 16px 20px;
}
.video-page .container {
    max-width: 700px;
}
.video-page h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 24px;
}
.video-page video {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
/* #### */
.container.first-container {
    padding-top: 140px;
}
h2 + .grid-wrap {
    margin-top: 24px;
}
.trial-top h2 {
    font-size: 42px;
    text-align: center;
    color: var(--text);
}
/* ### */
.feature-page {
    padding: 120px 16px 20px;
}
.feature-page .container {
    max-width: 700px;
}
.feature-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    text-align: center;
}

.feature-page-text p + p {
    margin-top: 8px;
}
/* ### */

/* ######## */
.alert {
    position: relative;
    background: url(../img/hero-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.alert::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
}
.alert-logo {
    position: absolute;
    z-index: 2;
    display: block;
    width: 100%;
    top: 0;
    left: 0;
    padding: 16px;
}
.alert-logo img {
    display: block;
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
}
.alert .container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 140px 16px 100px;
}
.alert h2 {
    display: flex;
    align-items: center;
    font-size: 22px;
    gap: 12px;
    margin-bottom: 16px;
}
.alert h2 svg {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    color: var(--err);
}
.alert h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}
.alert svg {
    width: 16px;
    height: 16px;
    color: var(--err);
}
.alert p {
    font-size: 16px;
    color: var(--text);
}
.alert p a {
    font-weight: bold;
    color: inherit;
}
.alert .goto-link  {
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    display: block;
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    margin-top: 16px;
    background-color: var(--accent);
    color: var(--text);
    font-size: 16px;

    transition: box-shadow 0.2s ease-out;
    &:hover {
        box-shadow: var(--glow-shadow);
    }
}
.alert .main-link {
    text-align: center;
    font-size: 14px;
    margin-top: 24px;
}
/* ######## */
/* ######## */
.hero {
    background: url(../img/hero-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 120px 0;
    min-height: 100vh;
    border-bottom: 4px solid var(--text-secondary);
    display: flex;
    align-items: center;
}
.hero::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0.5));
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero-wrap {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hero-wrap img {
    max-width: 350px;
}
.hero-wrap h2 {
    font-size: 32px;
}
.hero-wrap ul {
    list-style-position: inside;
    padding-left: 4px;
    color: var(--text-secondary);
    font-size: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hero-wrap a {
    display: block;
    text-decoration: none;
    text-align: center;
    width: max-content;
    padding: 15px 30px;
    font-size: 22px;
    border: none;
    border-radius: 50px;
    color: var(--text);
    background-color: var(--hover-bg);

    transition: filter 0.2s ease-out;
    &:hover {
        filter: brightness(1.1);
    }
}
.hero-price {
    font-size: 14px;
    color: var(--text-secondary);
}
.hero-note {
    text-decoration: none;
    opacity: 0.8;
    color: var(--text);
    cursor: pointer;
    position: absolute;
    top: calc(100% + 40px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    text-align: center;
    transition: transform 0.2s ease-out, filter 0.2s ease-out, text-shadow 0.2s ease-out, opacity 0.2s ease-out;
}
.hero-note img {
    width: 50px;
}
.hero-note:hover {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
    filter: brightness(1.2);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}


.main-back-top {
    opacity: 0.8;
    position: sticky;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    text-align: center;
    z-index: 3;
    cursor: pointer;
    transition: transform 0.2s ease-out, filter 0.2s ease-out, text-shadow 0.2s ease-out, opacity 0.2s ease-out;
}
.main-back-top img {
    transform: rotate(180deg);
    width: 42px;
}
.main-back-top:hover {
    transform: translateX(-50%) scale(1.05);
    filter: brightness(1.2);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.main-links {
    width: 100%;
}
.main-links ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 0 auto;
    list-style: none;
}
.main-links svg {
    display: inline-block;
    width: 16px;
    height: 16px;
}
.main-links 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);
    }
}
.main-wrap {
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 20%, rgba(20, 184, 165, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}
.main-wrap-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    height: 100%;
    padding: 0 24px;
    max-width: 1400px;
    z-index: 1;
}
.main-wrap-line svg {
    width: 100%;
    height: 100%;
}
.main-decor {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.decor-shape {
    position: absolute;
    opacity: 0;
    animation: decorFloat 16s linear infinite;
}
.decor-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22d3ee;
}
.decor-triangle {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 12px solid #f97316;
}
.decor-zigzag {
    width: 18px;
    height: 18px;
    border-radius: 2px;
    border-top: 3px solid #a855f7;
    border-right: 3px solid #a855f7;
    transform: rotate(25deg);
}
.decor-square {
    width: 11px;
    height: 11px;
    border-radius: 2px;
    background: #22c55e;
}
.decor-cross {
    position: absolute;
    width: 18px;
    height: 18px;
}
.decor-cross::before,
.decor-cross::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 3px;
    border-radius: 2px;
    background: #f97316;
    transform-origin: center;
}
.decor-cross::before {
    transform: translate(-50%, -50%) rotate(0deg);
}
.decor-cross::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
/* individual positions and timings */
.decor-1 { top: 8%; left: 12%; animation-delay: 0s; }
.decor-2 { top: 18%; left: 70%; animation-delay: 2s; background: #facc15; }
.decor-3 { top: 28%; left: 30%; animation-delay: 4s; }
.decor-4 { top: 38%; left: 82%; animation-delay: 1s; border-bottom-color: #22c55e; }
.decor-5 { top: 48%; left: 20%; animation-delay: 5s; background: #ec4899; }
.decor-6 { top: 58%; left: 60%; animation-delay: 3s; }
.decor-7 { top: 68%; left: 10%; animation-delay: 6s; border-bottom-color: #38bdf8; }
.decor-8 { top: 78%; left: 75%; animation-delay: 7s; background: #22c55e; }
.decor-9 { top: 15%; left: 45%; animation-delay: 8s; }
.decor-10 { top: 35%; left: 5%; animation-delay: 9s; border-bottom-color: #eab308; }
.decor-11 { top: 65%; left: 50%; animation-delay: 10s; background: #f97316; }
.decor-12 { top: 85%; left: 35%; animation-delay: 11s; }
.decor-13 { top: 25%; left: 55%; animation-delay: 12s; }
.decor-14 { top: 55%; left: 88%; animation-delay: 13s; background: #38bdf8; }
.decor-15 { top: 72%; left: 28%; animation-delay: 14s; }
.decor-16 { top: 90%; left: 60%; animation-delay: 15s; background: #eab308; }
.decor-17 { top: 12%; left: 25%; animation-delay: 1.5s; }
.decor-18 { top: 22%; left: 82%; animation-delay: 3.5s; background: #22d3ee; }
.decor-19 { top: 32%; left: 18%; animation-delay: 5.5s; }
.decor-20 { top: 42%; left: 65%; animation-delay: 7.5s; border-bottom-color: #ec4899; }
.decor-21 { top: 52%; left: 8%;  animation-delay: 9.5s;  background: #facc15; }
.decor-22 { top: 62%; left: 40%; animation-delay: 11.5s; }
.decor-23 { top: 72%; left: 90%; animation-delay: 13.5s; }
.decor-24 { top: 82%; left: 48%; animation-delay: 15.5s; background: #22c55e; }
.decor-25 { top: 6%;  left: 40%; animation-delay: 0.8s;  border-bottom-color: #38bdf8; }
.decor-26 { top: 18%; left: 5%;  animation-delay: 2.8s;  background: #eab308; }
.decor-27 { top: 30%; left: 75%; animation-delay: 4.8s; }
.decor-28 { top: 44%; left: 48%; animation-delay: 6.8s; }
.decor-29 { top: 56%; left: 30%; animation-delay: 8.8s;  background: #f97316; }
.decor-30 { top: 68%; left: 68%; animation-delay: 10.8s; border-bottom-color: #22c55e; }
.decor-31 { top: 80%; left: 15%; animation-delay: 12.8s; background: #38bdf8; }
.decor-32 { top: 92%; left: 82%; animation-delay: 14.8s; }
.decor-33 { top: 20%; left: 52%; animation-delay: 1.2s; }
.decor-34 { top: 34%; left: 92%; animation-delay: 3.2s; background: #22c55e; }
.decor-35 { top: 46%; left: 22%; animation-delay: 5.2s; border-bottom-color: #ec4899; }
.decor-36 { top: 58%; left: 78%; animation-delay: 7.2s; background: #facc15; }
.decor-37 { top: 70%; left: 42%; animation-delay: 9.2s; }
.decor-38 { top: 82%; left: 5%;  animation-delay: 11.2s; }
.decor-39 { top: 10%; left: 90%; animation-delay: 13.2s; background: #eab308; }
.decor-40 { top: 26%; left: 38%; animation-delay: 15.2s; border-bottom-color: #38bdf8; }
.decor-41 { top: 50%; left: 52%; animation-delay: 2.4s; background: #22d3ee; }
.decor-42 { top: 64%; left: 12%; animation-delay: 4.4s; }
.decor-43 { top: 76%; left: 58%; animation-delay: 6.4s; }
.decor-44 { top: 88%; left: 72%; animation-delay: 8.4s; background: #22c55e; }
.decor-45 { top: 14%; left: 68%; animation-delay: 10.4s; border-bottom-color: #f97316; }
.decor-46 { top: 38%; left: 10%; animation-delay: 12.4s; background: #facc15; }
.decor-47 { top: 60%; left: 88%; animation-delay: 14.4s; }
.decor-48 { top: 94%; left: 28%; animation-delay: 16.4s; }

@keyframes decorFloat {
    0% {
        transform: translate3d(0, 10px, 0) scale(0.2) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    40% {
        transform: translate3d(-10px, -20px, 0) scale(1) rotate(120deg);
        opacity: 1;
    }
    70% {
        transform: translate3d(10px, -40px, 0) scale(0.8) rotate(260deg);
        opacity: 0.8;
    }
    100% {
        transform: translate3d(0, -60px, 0) scale(0.1) rotate(360deg);
        opacity: 0;
    }
}
.main-item .container {
    position: relative;
    z-index: 2;
    padding: 40px 16px;
}
.main-item .main-info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}
.main-info img {
    width: 150px;
    height: 150%;
    object-fit: contain;
}
.main-info h2 {
    font-size: 28px;
}
.main-info p {
    font-size: 18px;
    line-height: 140%;
}
.main-left .dec-img {
    position: absolute;
    display: block;
    width: 400px;
    object-fit: contain;
    z-index: 1;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.main-right .dec-img {
    position: absolute;
    display: block;
    width: 400px;
    object-fit: contain;
    z-index: 1;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
@media (max-width: 768px) {
    .main-left .dec-img {
        opacity: 0.3;
        transform: translate(-40%, -50%);
    }
    .main-right .dec-img {
        opacity: 0.3;
        transform: translate(40%, -50%);
    }
}
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--bg-accent);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.main-header.visible {
    transform: translateY(0);
    opacity: 1;
}
.main-header .container {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.main-header img {
    display: block;
    width: 100px;
}
.main-header p {
    font-size: 10px;
    color: var(--text-secondary);
    max-width: 300px;
}
.main-header a {
    text-wrap: nowrap;
    margin-left: auto;
    display: block;
    text-decoration: none;
    text-align: center;
    width: max-content;
    padding: 8px 12px;
    font-size: 14px;
    border: none;
    border-radius: 50px;
    color: var(--text);
    background-color: var(--hover-bg);

    transition: filter 0.2s ease-out;
    &:hover {
        filter: brightness(1.1);
    }
}
