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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: hsl(240, 15%, 8%);
    color: hsl(0, 0%, 95%);
}

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

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

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

ul,
ol {
    list-style: none;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@font-face {
    font-family: 'StarTektur';
    src: url('/southern-assets/cosmic-fonts/tektur-variable.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'StarChakra';
    src: url('/southern-assets/cosmic-fonts/chakra-petch-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'StarChakra';
    src: url('/southern-assets/cosmic-fonts/chakra-petch-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Line Awesome';
    src: url('/southern-assets/cosmic-fonts/line-awesome.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: block;
}

:root {
    --star-color-primary: hsl(255, 60%, 20%);
    --star-color-accent: hsl(45, 100%, 60%);
    --star-color-background: hsl(240, 15%, 8%);
    --star-color-text: hsl(0, 0%, 95%);
    --star-color-text-muted: hsl(0, 0%, 70%);
    --star-color-overlay: rgba(0, 0, 0, 0.7);

    --star-font-heading: 'StarTektur', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --star-font-body: 'StarChakra', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --star-font-icon: 'Line Awesome';

    --star-container-wide: min(1170px, 90%);
    --star-container-narrow: min(880px, 90%);

    --star-transition-fast: 150ms ease;
    --star-transition-base: 300ms ease;
    --star-transition-slow: 500ms ease;
}

body {
    font-family: var(--star-font-body);
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--star-font-heading);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 2rem + 2.5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 1.6rem + 2vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
}

.star_visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.star_container-wide {
    width: 100%;
    max-width: var(--star-container-wide);
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.star_container-narrow {
    width: 100%;
    max-width: var(--star-container-narrow);
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.star_text-center {
    text-align: center;
}

.star_overlay {
    background-color: var(--star-color-overlay);
    position: absolute;
    inset: 0;
    z-index: 1;
}

.star_review-icon {
    font-family: 'Line Awesome';
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    line-height: 1;
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
}

[class*="star_icon-"] {
    font-family: var(--star-font-icon);
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    line-height: 1;
}

[class*="star_icon-"]::before {
    content: '';
    font-family: inherit;
    font-weight: inherit;
}

@media (max-width: 768px) {
    .star_no-mobile-anim * {
        animation: none !important;
        transition: none !important;
    }
    .star_container-wide,
    .star_container-narrow {
        margin: 0 auto;
        padding: 0;
    }
}

.star_modal-combined {
    --modal-height-tab: 3.5rem;
    --modal-width-container: min(95%, 36rem);
    position: fixed;
    z-index: 9999;
    font-family: var(--star-font-body);
}

.star_modal-tab {
    position: fixed;
    bottom: 0;
    right: 2rem;
    background: linear-gradient(90deg, var(--star-color-primary), hsl(255, 50%, 30%));
    color: var(--star-color-text);
    padding: 0.9rem 1.8rem;
    border-radius: 1rem 1rem 0 0;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 -0.25rem 1rem rgba(0, 0, 0, 0.3);
    transition: transform var(--star-transition-base), background var(--star-transition-base);
    transform: translateY(0);
}

.star_modal-tab:hover {
    background: linear-gradient(90deg, hsl(255, 50%, 30%), var(--star-color-primary));
    transform: translateY(-0.25rem);
}

.star_icon-tab::before {
    content: "\f05a";
    font-size: 1.4rem;
}

.star_modal-tab__text {
    font-weight: 700;
    font-size: 1.05rem;
}

.star_modal-container {
    position: fixed;
    bottom: var(--modal-height-tab);
    left: 50%;
    transform: translateX(-50%) translateY(100vh);
    width: var(--modal-width-container);
    background: var(--star-color-background);
    border: 2px solid var(--star-color-accent);
    border-radius: 1rem 1rem 0 0;
    padding: 2.5rem;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--star-transition-slow);
    box-shadow: 0 -0.5rem 3rem rgba(0, 0, 0, 0.7);
    max-height: 85vh;
    overflow-y: auto;
}

.star_modal-container:target {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.star_modal-container:target ~ .star_modal-tab {
    opacity: 0;
    pointer-events: none;
}

.star_modal-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.star_modal-section {
    padding-bottom: 2rem;
    border-bottom: 1px dashed var(--star-color-text-muted);
}

.star_modal-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.star_modal-section__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.star_icon-cookie::before {
    content: "\f563";
    color: var(--star-color-accent);
    font-size: 1.8rem;
}

.star_icon-shield::before {
    content: "\f3ed";
    color: hsl(120, 70%, 55%);
    font-size: 1.8rem;
}

.star_modal-section h3 {
    font-size: 1.6rem;
    color: var(--star-color-accent);
}

.star_modal-section p {
    margin-bottom: 1rem;
    color: var(--star-color-text-muted);
    line-height: 1.7;
}

.star_modal-link {
    color: hsl(200, 100%, 70%);
    text-decoration: underline;
    text-underline-offset: 0.3em;
    transition: color var(--star-transition-fast);
}

.star_modal-link:hover {
    color: hsl(200, 100%, 85%);
}

.star_modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.star_modal-btn {
    flex: 1;
    min-width: 12rem;
    padding: 1.1rem 1.8rem;
    border-radius: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all var(--star-transition-base);
    text-align: center;
    border: 2px solid transparent;
}

.star_modal-btn--exit {
    background-color: hsl(0, 0%, 25%);
    color: var(--star-color-text);
    border-color: hsl(0, 0%, 40%);
}

.star_modal-btn--exit:hover {
    background-color: hsl(0, 0%, 35%);
    border-color: hsl(0, 0%, 50%);
}

.star_modal-btn--confirm {
    background: linear-gradient(135deg, var(--star-color-primary), hsl(255, 60%, 40%));
    color: var(--star-color-text);
    border-color: var(--star-color-accent);
}

.star_modal-btn--confirm:hover {
    background: linear-gradient(135deg, hsl(255, 60%, 40%), var(--star-color-primary));
    transform: scale(1.03);
}

.star_icon-exit::before {
    content: "\f08b";
}

.star_icon-check::before {
    content: "\f00c";
}

.star_modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--star-color-text-muted);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--star-transition-fast);
}

.star_modal-close:hover {
    color: var(--star-color-text);
    background-color: rgba(255, 255, 255, 0.1);
}

#star_modal-combined:target .star_modal-container,
#star_modal-accepted:target .star_modal-container {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(100vh);
    transition-delay: 0s;
}

#star_modal-accepted:target ~ .star_modal-tab {
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--star-transition-base);
}

@media (max-width: 768px) {
    .star_modal-tab {
        right: 50%;
        transform: translateX(50%) translateY(0);
        width: auto;
        white-space: nowrap;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .star_modal-tab:hover {
        transform: translateX(50%) translateY(-0.25rem);
    }

    .star_modal-container {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 90vh;
        transform: translateY(100vh);
        border-radius: 1.5rem 1.5rem 0 0;
        padding: 1.8rem;
    }

    .star_modal-container:target {
        transform: translateY(0);
    }

    .star_modal-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .star_modal-btn {
        min-width: 100%;
    }
}

.star_header-warning {
    background: linear-gradient(90deg, hsl(0, 70%, 30%), hsl(30, 80%, 40%));
    color: var(--star-color-text);
    padding: 0.6rem 0;
    font-size: 0.9rem;
}

.star_header-warning__text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    text-align: center;
}

.star_icon-warning::before {
    content: "\f071";
    color: hsl(45, 100%, 60%);
}

.star_header-warning__link {
    color: hsl(45, 100%, 75%);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    font-weight: 700;
    transition: color var(--star-transition-fast);
}

.star_header-warning__link:hover {
    color: hsl(45, 100%, 90%);
}

.star_header-main {
    background-color: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.star_header-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2.5rem;
}

.star_header-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-family: var(--star-font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--star-color-text);
    transition: opacity var(--star-transition-fast);
}

.star_header-logo:hover {
    opacity: 0.85;
}

.star_icon-logo::before {
    content: "\f005";
    color: var(--star-color-accent);
    font-size: 2.2rem;
}

.star_header-logo__text {
    background: linear-gradient(90deg, var(--star-color-text), hsl(45, 100%, 70%));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.star_header-subgrid {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    align-items: center;
}

.star_header-nav__list {
    display: flex;
    gap: 2.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.star_header-nav__link {
    color: var(--star-color-text-muted);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.4rem 0;
    position: relative;
    transition: color var(--star-transition-fast);
}

.star_header-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--star-color-accent);
    transition: width var(--star-transition-base);
}

.star_header-nav__link:hover {
    color: var(--star-color-text);
}

.star_header-nav__link:hover::after {
    width: 100%;
}

.star_header-nav--primary .star_header-nav__link {
    color: var(--star-color-text);
}

.star_header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(135deg, var(--star-color-primary), hsl(255, 60%, 35%));
    color: var(--star-color-text);
    padding: 0.85rem 1.8rem;
    border-radius: 2rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--star-transition-base);
    white-space: nowrap;
}

.star_header-cta:hover {
    background: linear-gradient(135deg, hsl(255, 60%, 35%), var(--star-color-primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(101, 88, 245, 0.3);
}

.star_icon-cta::before {
    content: "\f055";
}

@media (max-width: 768px) {
    .star_header-warning__text {
        font-size: 0.8rem;
        gap: 0.5rem;
        flex-direction: column;
    }

    .star_header-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .star_header-block--logo {
        order: 1;
    }

    .star_header-block--nav {
        order: 3;
        width: 100%;
    }

    .star_header-block--cta {
        order: 2;
    }

    .star_header-subgrid {
        gap: 1.2rem;
    }

    .star_header-nav__list {
        gap: 1rem 1.8rem;
    }

    .star_header-cta {
        justify-content: center;
        width: 100%;
        max-width: 22rem;
        margin: 0 auto;
    }
}

.star_welcome {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.star_welcome-background {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(to bottom, hsl(240, 25%, 5%), hsl(255, 60%, 10%));
}

.star_welcome-animation {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M200 50 L220 120 L290 120 L230 165 L250 235 L200 190 L150 235 L170 165 L110 120 L180 120 Z' fill='none' stroke='hsl(45, 100%, 60%)' stroke-width='2' stroke-opacity='0.15'/%3E%3C/svg%3E");
    background-size: 400px 400px;
    animation: star_welcome-constellation-move 120s linear infinite;
    opacity: 0.6;
}

@keyframes star_welcome-constellation-move {
    0% { background-position: 0px 0px, 0px 0px; }
    100% { background-position: 400px 400px, -400px -400px; }
}

.star_welcome-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(101, 88, 245, 0.08), rgba(0, 0, 0, 0.85) 70%);
    z-index: -1;
}

.star_welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4.5rem;
    align-items: center;
    padding: 4rem 0;
}

.star_welcome-block--image {
    height: 100%;
    min-height: 490px;
    max-width: 500px;
}

.star_welcome-image-wrapper {
    height: auto;
    text-align: center;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    position: relative;
}

.star_welcome-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(101, 88, 245, 0.1));
}

.star_welcome-image {
    width: 100%;
    max-width: 500px;
    height: 100%;
    max-height: 500px;
    filter: saturate(1.1) contrast(1.05);
    transition: transform 8s ease;
}

.star_welcome-block--image:hover .star_welcome-image {
    transform: scale(1.03);
}

.star_welcome-title {
    font-size: clamp(2.8rem, 2.3rem + 2.5vw, 4.5rem);
    margin-bottom: 1.8rem;
    background: linear-gradient(90deg, var(--star-color-text), hsl(45, 100%, 70%));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}

.star_welcome-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--star-color-text-muted);
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.star_welcome-features {
    display: flex;
    flex-direction: row;
    gap: 2.2rem;
    width: 100%;
}

.star_welcome-card {
    background: rgba(30, 30, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.2rem;
    padding: 2.2rem;
    transition: all var(--star-transition-base);
    backdrop-filter: blur(10px);
}

.star_welcome-card:hover {
    border-color: rgba(101, 88, 245, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(101, 88, 245, 0.15);
}

.star_icon-feature {
    font-size: 2.8rem;
    margin-bottom: 0.2rem;
    display: inline-block;
}

.star_icon-feature--community::before {
    content: "\f0c0";
    color: hsl(170, 80%, 60%);
}

.star_icon-feature--discovery::before {
    content: "\f002";
    color: hsl(45, 100%, 60%);
}

.star_icon-feature--security::before {
    content: "\f3ed";
    color: hsl(120, 70%, 55%);
}

.star_welcome-card__title {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--star-color-text);
}

.star_welcome-card__text {
    color: var(--star-color-text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

@media (max-width: 1024px) {
    .star_welcome-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        padding: 3.5rem 0;
    }
    .star_welcome-block--image {
        min-height: 400px;
        order: 2;
    }
    .star_welcome-block--content {
        order: 1;
    }
    .star_welcome-title,
    .star_welcome-description {
        text-align: center;
        max-width: 100%;
    }
    .star_welcome-features {
        align-items: center;
        flex-wrap: wrap;
    }
    .star_welcome-card {
        width: min(100%, 500px);
    }
}

@media (max-width: 768px) {
    .star_welcome-grid {
        gap: 2.5rem;
        padding: 2.5rem 0;
    }
    .star_welcome-block--image {
        min-height: 320px;
    }
    .star_welcome-title {
        font-size: clamp(2.2rem, 1.8rem + 2vw, 2.8rem);
    }
    .star_welcome-description {
        font-size: 1.15rem;
        margin-bottom: 2.5rem;
    }
    .star_welcome-card {
        padding: 1.8rem;
    }
}

.star_games {
    padding: 5.5rem 0;
    background: linear-gradient(to bottom, hsl(240, 15%, 10%), hsl(240, 15%, 8%));
    position: relative;
    overflow: hidden;
}

.star_games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--star-color-accent), transparent);
}

.star_games-header {
    text-align: center;
    margin-bottom: 4rem;
}

.star_games-title {
    font-size: clamp(2.5rem, 2rem + 2.5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--star-color-text);
}

.star_games-subtitle {
    font-size: 1.25rem;
    color: var(--star-color-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.star_games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
    gap: 2.5rem;
}

.star_game-card {
    background: rgba(25, 25, 35, 0.7);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--star-transition-base);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.star_game-card:hover {
    border-color: rgba(101, 88, 245, 0.4);
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(101, 88, 245, 0.25);
}

.star_game-card__header {
    padding: 1.8rem 1.8rem 1.2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.star_game-card__title {
    font-size: 1.7rem;
    color: var(--star-color-text);
    font-weight: 700;
}

.star_game-card__rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0.9rem;
    border-radius: 2rem;
}

.star_icon-rating::before {
    content: "\f005";
    color: hsl(45, 100%, 60%);
    font-size: 1rem;
}

.star_icon-rating--half::before {
    content: "\f5c0";
}

.star_icon-rating--empty::before {
    content: "\f006";
    color: hsl(0, 0%, 40%);
}

.star_game-card__rating-text {
    font-weight: 700;
    margin-left: 0.5rem;
    color: var(--star-color-text);
}

.star_game-card__media {
    flex-grow: 1;
    position: relative;
}

.star_game-card__image-wrapper {
    position: relative;
    height: 100%;
    min-height: 280px;
    overflow: hidden;
}

.star_game-card__image {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.star_game-card__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--star-transition-base);
}

.star_game-card:hover .star_game-card__overlay {
    background-color: rgba(0, 0, 0, 0.75);
}

.star_game-card__link {
    background: linear-gradient(135deg, var(--star-color-primary), hsl(255, 60%, 40%));
    color: var(--star-color-text);
    padding: 1.1rem 2.2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all var(--star-transition-base);
    border: 2px solid var(--star-color-accent);
}

.star_game-card__link:hover {
    background: linear-gradient(135deg, hsl(255, 60%, 40%), var(--star-color-primary));
    transform: scale(1.08);
}

.star_icon-play::before {
    content: "\f04b";
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .star_games-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .star_games {
        padding: 4rem 0;
    }
    .star_games-header {
        margin-bottom: 3rem;
    }
    .star_games-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .star_game-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    .star_game-card__rating {
        align-self: flex-start;
    }
}

.star_about {
    padding: 6rem 0;
    background: linear-gradient(to bottom, hsl(240, 15%, 8%), hsl(255, 50%, 12%));
    position: relative;
    overflow: hidden;
}

.star_about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.star_about-title {
    font-size: clamp(2.5rem, 2rem + 2.5vw, 3.8rem);
    margin-bottom: 1.8rem;
    color: var(--star-color-text);
    line-height: 1.1;
}

.star_about-text {
    margin-bottom: 3rem;
}

.star_about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--star-color-text-muted);
    margin-bottom: 1.5rem;
}

.star_about-link {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    background: transparent;
    color: var(--star-color-accent);
    font-weight: 700;
    font-size: 1.15rem;
    padding: 1rem 2rem;
    border: 2px solid var(--star-color-accent);
    border-radius: 0.75rem;
    transition: all var(--star-transition-base);
}

.star_about-link:hover {
    background-color: rgba(101, 88, 245, 0.1);
    transform: translateX(1px);
    box-shadow: 0 10px 25px rgba(101, 88, 245, 0.2);
}

.star_icon-story::before {
    content: "\f138";
    font-size: 1.3rem;
}

.star_about-block--animation {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.star_about-orbit {
    position: relative;
    max-width: 500px;
    height: 500px;
    border-radius: 50%;
}

.star_about-orbit__core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, hsl(45, 100%, 65%), hsl(45, 100%, 45%));
    border-radius: 50%;
    box-shadow: 0 0 40px 15px hsla(45, 100%, 60%, 0.4);
    z-index: 2;
}

.star_about-orbit__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(101, 88, 245, 0.25);
    transform: translate(-50%, -50%);
}

.star_about-orbit__ring--1 {
    width: 350px;
    height: 350px;
    animation: star_about-spin 25s linear infinite;
}

.star_about-orbit__ring--2 {
    width: 450px;
    height: 450px;
    animation: star_about-spin 40s linear infinite reverse;
}

.star_about-orbit__ring--3 {
    width: 500px;
    height: 500px;
    border-color: rgba(255, 255, 255, 0.05);
    animation: star_about-spin 55s linear infinite;
}

.star_about-orbit__satellite {
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--star-color-primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.star_about-orbit__satellite::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(101, 88, 245, 0.3), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.star_about-orbit__satellite--a {
    animation: star_about-orbit-a 18s linear infinite;
}

.star_about-orbit__satellite--b {
    animation: star_about-orbit-b 24s linear infinite;
    background: hsl(170, 80%, 55%);
    width: 18px;
    height: 18px;
}

.star_about-orbit__satellite--c {
    animation: star_about-orbit-c 30s linear infinite;
    background: hsl(300, 80%, 65%);
    width: 26px;
    height: 26px;
}

@keyframes star_about-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes star_about-orbit-a {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(175px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(175px) rotate(-360deg); }
}

@keyframes star_about-orbit-b {
    0% { transform: translate(-50%, -50%) rotate(120deg) translateX(225px) rotate(-120deg); }
    100% { transform: translate(-50%, -50%) rotate(480deg) translateX(225px) rotate(-480deg); }
}

@keyframes star_about-orbit-c {
    0% { transform: translate(-50%, -50%) rotate(240deg) translateX(250px) rotate(-240deg); }
    100% { transform: translate(-50%, -50%) rotate(600deg) translateX(250px) rotate(-600deg); }
}

@media (max-width: 1100px) {
    .star_about-grid {
        gap: 3.5rem;
    }
    .star_about-block--animation {
        min-height: 400px;
    }
    .star_about-orbit {
        width: 400px;
        height: 400px;
    }
    .star_about-orbit__ring--1 {
        width: 280px;
        height: 280px;
    }
    .star_about-orbit__ring--2 {
        width: 360px;
        height: 360px;
    }
    .star_about-orbit__ring--3 {
        width: 400px;
        height: 400px;
    }
    @keyframes star_about-orbit-a {
        0% { transform: translate(-50%, -50%) rotate(0deg) translateX(140px) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(140px) rotate(-360deg); }
    }
    @keyframes star_about-orbit-b {
        0% { transform: translate(-50%, -50%) rotate(120deg) translateX(180px) rotate(-120deg); }
        100% { transform: translate(-50%, -50%) rotate(480deg) translateX(180px) rotate(-480deg); }
    }
    @keyframes star_about-orbit-c {
        0% { transform: translate(-50%, -50%) rotate(240deg) translateX(200px) rotate(-240deg); }
        100% { transform: translate(-50%, -50%) rotate(600deg) translateX(200px) rotate(-600deg); }
    }
}

@media (max-width: 768px) {
    .star_about {
        padding: 4.5rem 0;
    }
    .star_about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .star_about-block--animation {
        order: -1;
        min-height: 350px;
    }
    .star_about-orbit {
        width: 250px;
        height: 250px;
    }
    .star_about-orbit__ring--1 {
        width: 200px;
        height: 200px;
    }
    .star_about-orbit__ring--2 {
        width: 188px;
        height: 188px;
    }
    .star_about-orbit__ring--3 {
        width: 220px;
        height: 220px;
    }
    @keyframes star_about-orbit-a {
        0% { transform: translate(-5%, -5%) rotate(0deg) translateX(12px) rotate(0deg); }
        100% { transform: translate(-5%, -5%) rotate(360deg) translateX(12px) rotate(-360deg); }
    }
    @keyframes star_about-orbit-b {
        0% { transform: translate(-5%, -5%) rotate(120deg) translateX(44px) rotate(-120deg); }
        100% { transform: translate(-5%, -5%) rotate(480deg) translateX(44px) rotate(-480deg); }
    }
    @keyframes star_about-orbit-c {
        0% { transform: translate(-5%, -5%) rotate(240deg) translateX(60px) rotate(-240deg); }
        100% { transform: translate(-5%, -5%) rotate(600deg) translateX(60px) rotate(-600deg); }
    }
}

.star_advantages {
    padding: 6rem 0;
    background: linear-gradient(135deg, hsl(240, 20%, 12%), hsl(255, 40%, 15%));
    position: relative;
}

.star_advantages-title {
    text-align: center;
    font-size: clamp(2.8rem, 2.3rem + 2.5vw, 4rem);
    margin-bottom: 1rem;
    color: var(--star-color-text);
}

.star_advantages-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--star-color-text-muted);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.star_advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 2.2rem;
}

.star_advantage-card {
    background: rgba(30, 30, 40, 0.6);
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--star-transition-base);
    backdrop-filter: blur(10px);
    min-height: 280px;
    display: flex;
}

.star_advantage-card:hover {
    border-color: var(--star-color-accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(101, 88, 245, 0.2);
}

.star_advantage-card__inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
}

.star_icon-advantage {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1;
}

.star_icon-advantage--shield::before {
    content: "\f3ed";
    color: hsl(120, 70%, 55%);
}

.star_icon-advantage--compass::before {
    content: "\f14e";
    color: hsl(190, 80%, 60%);
}

.star_icon-advantage--free::before {
    content: "\f118";
    color: hsl(45, 100%, 60%);
}

.star_icon-advantage--nz::before {
    content: "\f7ae";
    color: hsl(0, 100%, 65%);
}

.star_icon-advantage--update::before {
    content: "\f0e7";
    color: hsl(280, 80%, 65%);
}

.star_icon-advantage--tools::before {
    content: "\f7d9";
    color: hsl(30, 80%, 55%);
}

.star_icon-advantage--mobile::before {
    content: "\f3cd";
    color: hsl(200, 80%, 55%);
}

.star_icon-advantage--support::before {
    content: "\f1cd";
    color: hsl(330, 80%, 65%);
}

.star_advantage-card__title {
    font-size: 1.6rem;
    margin-bottom: 0.9rem;
    color: var(--star-color-text);
    line-height: 1.2;
}

.star_advantage-card__text {
    color: var(--star-color-text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.star_advantage-card--1 .star_advantage-card__inner {
    align-items: flex-start;
    text-align: left;
}
.star_advantage-card--2 .star_advantage-card__inner {
    align-items: center;
    text-align: center;
}
.star_advantage-card--3 .star_advantage-card__inner {
    align-items: flex-end;
    text-align: right;
}
.star_advantage-card--4 .star_advantage-card__inner {
    flex-direction: column-reverse;
    align-items: flex-start;
}
.star_advantage-card--4 .star_icon-advantage {
    margin-bottom: 0;
    margin-top: 1.5rem;
}
.star_advantage-card--5 .star_advantage-card__inner {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
}
.star_advantage-card--5 .star_icon-advantage {
    margin-bottom: 0;
    flex-shrink: 0;
}
.star_advantage-card--6 .star_advantage-card__inner {
    align-items: center;
    text-align: left;
}
.star_advantage-card--6 .star_icon-advantage {
    align-self: flex-start;
}
.star_advantage-card--7 .star_advantage-card__inner {
    align-items: center;
    text-align: center;
    flex-direction: column-reverse;
}
.star_advantage-card--7 .star_icon-advantage {
    margin-bottom: 0;
    margin-top: 1.5rem;
}
.star_advantage-card--8 .star_advantage-card__inner {
    align-items: flex-end;
    text-align: right;
    flex-direction: row-reverse;
    gap: 1.5rem;
}
.star_advantage-card--8 .star_icon-advantage {
    margin-bottom: 0;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .star_advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    }
}

@media (max-width: 768px) {
    .star_advantages {
        padding: 4.5rem 0;
    }
    .star_advantages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .star_advantage-card {
        min-height: auto;
        padding: 2rem;
    }
    .star_advantage-card--5 .star_advantage-card__inner,
    .star_advantage-card--8 .star_advantage-card__inner {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        gap: 1rem;
    }
    .star_advantage-card--5 .star_icon-advantage,
    .star_advantage-card--8 .star_icon-advantage {
        margin-top: 0;
    }
}

.star_faq {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    isolation: isolate;
}

.star_faq-background {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: hsl(240, 25%, 8%);
}

.star_faq-animation {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(101, 88, 245, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(45, 100%, 60%, 0.1) 0%, transparent 40%);
    background-size: 600px 600px, 800px 800px;
    animation: star_faq-pulse 20s ease-in-out infinite alternate;
}

@keyframes star_faq-pulse {
    0% { opacity: 0.3; background-position: 0% 0%, 100% 100%; }
    100% { opacity: 0.7; background-position: 100% 100%, 0% 0%; }
}

.star_faq-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

.star_faq-title {
    text-align: center;
    font-size: clamp(2.8rem, 2.3rem + 2.5vw, 4rem);
    margin-bottom: 1rem;
    color: var(--star-color-text);
}

.star_faq-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--star-color-text-muted);
    margin-bottom: 4.5rem;
}

.star_faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3.5rem;
    align-items: end;
}

.star_faq-topic__title {
    font-size: 1.8rem;
    color: var(--star-color-accent);
    margin-bottom: 2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(101, 88, 245, 0.3);
}

.star_faq-list {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.star_faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 1.8rem;
    border-left: 4px solid transparent;
    transition: all var(--star-transition-base);
}

.star_faq-item:hover {
    border-left-color: var(--star-color-accent);
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.star_faq-item__question {
    font-size: 1.2rem;
    color: var(--star-color-text);
    margin-bottom: 0.8rem;
    font-weight: 700;
    min-height: 48px;
}

.star_faq-item__answer {
    color: var(--star-color-text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
    min-height: 116px;
}

.star_faq-column--link {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    min-width: 280px;
}

.star_faq-more {
    background: linear-gradient(135deg, rgba(101, 88, 245, 0.1), rgba(45, 100%, 60%, 0.05));
    border: 2px solid rgba(101, 88, 245, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    width: 100%;
    backdrop-filter: blur(10px);
}

.star_icon-faq {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.star_icon-faq::before {
    content: "\f059";
    color: var(--star-color-accent);
}

.star_faq-more__title {
    font-size: 1.8rem;
    color: var(--star-color-text);
    margin-bottom: 1rem;
}

.star_faq-more__text {
    color: var(--star-color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.star_faq-more__link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--star-color-primary);
    color: var(--star-color-text);
    padding: 1.1rem 2.2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    transition: all var(--star-transition-base);
    border: 2px solid transparent;
}

.star_faq-more__link:hover {
    background: hsl(255, 60%, 40%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(101, 88, 245, 0.3);
}

.star_icon-arrow::before {
    content: "\f061";
    font-size: 1.1rem;
}

@media (max-width: 1100px) {
    .star_faq-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .star_faq-column--link {
        grid-column: span 2;
        min-width: auto;
        justify-content: center;
    }
    .star_faq-more {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .star_faq {
        padding: 4.5rem 0;
    }
    .star_faq-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .star_faq-column--link {
        grid-column: span 1;
    }
    .star_faq-topic__title {
        text-align: center;
    }
    .star_faq-item {
        padding: 1.5rem;
    }
}

.star_reviews {
    padding: 6rem 0;
    background: linear-gradient(to bottom, hsl(255, 50%, 15%), hsl(240, 25%, 10%));
}

.star_reviews-title {
    text-align: center;
    font-size: clamp(2.8rem, 2.3rem + 2.5vw, 4rem);
    margin-bottom: 1rem;
    color: var(--star-color-text);
}

.star_reviews-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--star-color-text-muted);
    margin-bottom: 4.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.star_reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 2.5rem;
}

.star_review-card {
    background: rgba(30, 30, 40, 0.7);
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: all var(--star-transition-base);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.star_review-card:hover {
    border-color: rgba(101, 88, 245, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(101, 88, 245, 0.2);
}

.star_review-card__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.8rem;
}

.star_review-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    display: block;
}

.star_review-icon--community::before {
    content: "\f0c0";
    color: hsl(170, 80%, 60%);
}

.star_review-icon--discovery::before {
    content: "\f002";
    color: hsl(45, 100%, 60%);
}

.star_review-icon--support::before {
    content: "\f1cd";
    color: hsl(280, 80%, 65%);
}

.star_review-icon--verified::before {
    content: "\f058";
    color: hsl(120, 70%, 55%);
}

.star_review-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 0.8rem;
}

.star_icon-rating::before {
    content: "\f005";
    color: hsl(45, 100%, 60%);
    font-size: 1.2rem;
}

.star_icon-rating--half::before {
    content: "\f5c0";
}

.star_icon-rating--empty::before {
    content: "\f006";
    color: hsl(0, 0%, 40%);
}

.star_review-address {
    font-style: normal;
    color: var(--star-color-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}

.star_review-text {
    flex-grow: 1;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--star-color-text);
    quotes: "“" "”" "‘" "’";
    padding: 0;
    margin: 0;
}

.star_review-text::before {
    content: open-quote;
    color: var(--star-color-accent);
    font-size: 2.5rem;
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 0.2rem;
}

.star_review-text::after {
    content: close-quote;
    color: var(--star-color-accent);
    font-size: 2.5rem;
    line-height: 0;
    vertical-align: -0.4em;
    margin-left: 0.1rem;
}

@media (max-width: 1200px) {
    .star_reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    }
}

@media (max-width: 768px) {
    .star_reviews {
        padding: 4.5rem 0;
    }
    .star_reviews-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .star_review-card {
        padding: 2rem;
    }
}

.star_contact {
    padding: 6rem 0;
    background: linear-gradient(to bottom, hsl(255, 50%, 12%), hsl(240, 20%, 10%));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.star_contact-title {
    text-align: center;
    font-size: clamp(2.5rem, 2rem + 2.5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--star-color-text);
}

.star_contact-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--star-color-text-muted);
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.star_contact-form {
    width: 100%;
    background: rgba(25, 25, 35, 0.7);
    border-radius: 1.5rem;
    padding: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.star_form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
    margin-bottom: 2.2rem;
}

.star_form-field {
    flex: 1 1 48%;
    min-width: 250px;
    margin-bottom: 1.5rem;
}

.star_form-field--full {
    flex: 1 1 100%;
    margin-bottom: 2.2rem;
}

.star_form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: var(--star-color-text);
    font-size: 1.1rem;
}

.star_form-input,
.star_form-textarea {
    width: 100%;
    padding: 1.1rem 1.4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: var(--star-color-text);
    font-family: var(--star-font-body);
    font-size: 1.05rem;
    transition: all var(--star-transition-base);
}

.star_form-input:focus,
.star_form-textarea:focus {
    outline: none;
    border-color: var(--star-color-accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(101, 88, 245, 0.2);
}

.star_form-textarea {
    resize: vertical;
    min-height: 140px;
}

.star_form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
    padding: 1rem 0;
}

.star_form-checkbox__input {
    width: 1.3rem;
    height: 1.3rem;
    accent-color: var(--star-color-accent);
    flex-shrink: 0;
}

.star_form-checkbox__label {
    color: var(--star-color-text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.star_form-link {
    color: hsl(200, 100%, 70%);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.star_form-link:hover {
    color: hsl(200, 100%, 85%);
}

.star_form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    background: linear-gradient(135deg, var(--star-color-primary), hsl(255, 60%, 40%));
    color: var(--star-color-text);
    padding: 1.2rem 3rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    border: 2px solid transparent;
    transition: all var(--star-transition-base);
    cursor: pointer;
}

.star_form-submit:hover {
    background: linear-gradient(135deg, hsl(255, 60%, 40%), var(--star-color-primary));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(101, 88, 245, 0.3);
}

.star_icon-send::before {
    content: "\f1d8";
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .star_contact {
        padding: 4.5rem 0;
    }
    .star_contact-form {
        padding: 2.5rem 0.5rem;
    }
    .star_form-row {
        gap: 0;
    }
    .star_form-field {
        flex: 1 1 100%;
    }
}

.star_responsible {
    padding: 6rem 0;
    background: linear-gradient(to bottom, hsl(240, 20%, 10%), hsl(255, 50%, 15%));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.star_responsible-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: end;
}

.star_responsible-title {
    font-size: clamp(2.5rem, 2rem + 2.5vw, 3.8rem);
    margin-bottom: 2rem;
    color: var(--star-color-text);
    line-height: 1.1;
}

.star_responsible-content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.star_responsible-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--star-color-text-muted);
}

.star_responsible-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 1rem;
}

.star_responsible-link {
    display: inline-block;
    background: rgba(101, 88, 245, 0.1);
    color: hsl(200, 100%, 75%);
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(101, 88, 245, 0.3);
    transition: all var(--star-transition-base);
}

.star_responsible-link:hover {
    background: rgba(101, 88, 245, 0.2);
    color: hsl(200, 100%, 85%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(101, 88, 245, 0.15);
}

.star_responsible-partners-title {
    font-size: 1.8rem;
    color: var(--star-color-accent);
    margin-bottom: 2.5rem;
    text-align: center;
}

.star_responsible-partners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    justify-items: center;
    align-items: center;
}

.star_responsible-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 1.8rem;
    width: 100%;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--star-transition-base);
}

.star_responsible-partner:hover {
    border-color: rgba(101, 88, 245, 0.4);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(101, 88, 245, 0.15);
}

.star_responsible-partner__logo {
    width: 175px;
    height: 67px;
    object-fit: contain;
    filter: grayscale(0.2) brightness(1.1);
    transition: filter var(--star-transition-base);
}

.star_responsible-partner:hover .star_responsible-partner__logo {
    filter: grayscale(0) brightness(1.3);
}

@media (max-width: 1100px) {
    .star_responsible-grid {
        gap: 3.5rem;
    }
    .star_responsible-partners {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .star_responsible {
        padding: 4.5rem 0;
    }
    .star_responsible-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .star_responsible-partners {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .star_responsible-link {
        font-size: 0.95rem;
        padding: 0.7rem 1.3rem;
    }
}

.star_footer-content {
    background: hsl(240, 25%, 7%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3.5rem 0;
}

.star_footer-nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.star_footer-nav__link {
    color: var(--star-color-text-muted);
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--star-transition-fast);
}

.star_footer-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--star-color-accent);
    transition: width var(--star-transition-base);
}

.star_footer-nav__link:hover {
    color: var(--star-color-text);
}

.star_footer-nav__link:hover::after {
    width: 100%;
}

.star_footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.star_footer-copyright__text {
    color: var(--star-color-text-muted);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .star_footer-content {
        padding: 2.5rem 0;
    }
    .star_footer-nav__list {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    .star_footer-nav__link {
        font-size: 1rem;
    }
}