:root {
    --grj-color-cloud: #f8f9ff;
    --grj-color-mist: #e3e8ff;
    --grj-color-dawn: #ffb7c5;
    --grj-color-twillight: #a3b5ff;
    --grj-color-pebble: #6c757d;
    --grj-color-stone: #495057;
    --grj-color-ink: #212529;
    --grj-shadow-light: 0 4px 12px rgba(163, 181, 255, 0.15);
    --grj-shadow-medium: 0 6px 20px rgba(163, 181, 255, 0.2);
    --grj-radius-small: 12px;
    --grj-radius-medium: 20px;
    --grj-radius-large: 30px;
    --grj-transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    color: var(--grj-color-ink);
    background-color: var(--grj-color-cloud);
    line-height: 1.7;
    min-width: 283px;
}

h1, h2, h3, h4 {
    font-family: 'Newsreader', serif;
    font-weight: 300;
    line-height: 1.3;
}

h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: var(--grj-color-twillight);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--grj-color-stone);
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--grj-color-pebble);
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--grj-color-twillight);
    text-decoration: none;
    transition: var(--grj-transition-smooth);
}

a:hover {
    color: var(--grj-color-dawn);
}

button {
    font-family: 'DM Sans', sans-serif;
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--grj-transition-smooth);
}

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

.grj_site-interface-header {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--grj-shadow-light);
}

.grj_site-interface-header__disclaimer {
    background: linear-gradient(90deg, var(--grj-color-mist), var(--grj-color-cloud));
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--grj-color-pebble);
    border-bottom: 1px solid rgba(163, 181, 255, 0.2);
}

.grj_site-interface-header__disclaimer i {
    color: var(--grj-color-dawn);
    margin-right: 0.5rem;
}

.grj_site-interface-header__main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.grj_site-interface-header__brand {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-family: 'Newsreader', serif;
    color: var(--grj-color-ink);
    font-weight: 300;
}

.grj_site-interface-header__logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: contain;
}

.grj_site-interface-header__nav-toggle {
    display: none;
    font-size: 2rem;
    color: var(--grj-color-twillight);
    background: none;
    position: relative;
    width: 44px;
    height: 44px;
}

.grj_site-interface-header__nav-toggle .la-times {
    display: none;
}

.grj_site-interface-header__nav-toggle.active .la-bars {
    display: none;
}

.grj_site-interface-header__nav-toggle.active .la-times {
    display: inline-block;
}

.grj_site-interface-header__navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.grj_site-interface-header__nav-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    color: var(--grj-color-stone);
    font-weight: 400;
    padding: 0.5rem 0;
    position: relative;
}

.grj_site-interface-header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--grj-color-dawn), var(--grj-color-twillight));
    transition: width 0.4s ease;
}

.grj_site-interface-header__nav-link:hover::after,
.grj_site-interface-header__nav-link:focus::after {
    width: 100%;
}

.grj_site-interface-header__nav-link i {
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    .grj_site-interface-header__main { padding: 1rem; }
    .grj_site-interface-header__navigation { gap: 1.5rem; }
}

@media (max-width: 768px) {
    .grj_site-interface-header__main {
        flex-direction: column;
        padding: 1rem 0.5rem;
    }
    .grj_site-interface-header__brand {
        margin-bottom: 1rem;
        justify-content: center;
        width: 100%;
    }
    .grj_site-interface-header__nav-toggle {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1rem;
    }
    .grj_site-interface-header__navigation {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        background-color: rgba(255, 255, 255, 0.98);
        padding: 1rem 0;
        border-top: 1px solid var(--grj-color-mist);
    }
    .grj_site-interface-header__navigation.active {
        display: flex;
    }
    .grj_site-interface-header__nav-link {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        border-bottom: 1px solid rgba(248, 249, 255, 0.5);
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    .grj_site-interface-header__disclaimer { display: none; }
    .grj_site-interface-header__brand { font-size: 1.5rem; }
    .grj_site-interface-header__logo { width: 60px; height: 60px; }
}

.grj_content-welcome {
    background: linear-gradient(rgba(248, 249, 255, 0.9), rgba(227, 232, 255, 0.9)), url('/grj-core/grj-images/welcome-bg.webp') center/cover no-repeat;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.grj_content-welcome::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 183, 197, 0.1) 0%, transparent 70%);
    animation: grj_pulse-welcome 20s infinite linear;
    z-index: 0;
}

@keyframes grj_pulse-welcome {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.grj_content-welcome__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.grj_content-welcome__subtitle {
    font-size: 1.2rem;
    color: var(--grj-color-stone);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.grj_content-welcome__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.grj_content-welcome__card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    border-radius: var(--grj-radius-medium);
    padding: 2rem;
    width: 280px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--grj-shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--grj-transition-smooth);
    position: relative;
    overflow: hidden;
}

.grj_content-welcome__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.grj_content-welcome__card:hover::after {
    left: 100%;
}

.grj_content-welcome__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--grj-shadow-medium);
}

.grj_content-welcome__card i {
    font-size: 3rem;
    color: var(--grj-color-twillight);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--grj-color-mist), white);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.grj_content-welcome__card-title {
    font-family: 'Newsreader', serif;
    font-size: 1.3rem;
    color: var(--grj-color-ink);
    margin-bottom: 0.8rem;
    font-weight: 300;
}

.grj_content-welcome__card-text {
    color: var(--grj-color-pebble);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    min-height: 4rem;
}

.grj_content-welcome__card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--grj-color-dawn);
    font-weight: 400;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 183, 197, 0.1);
    border: 1px solid rgba(255, 183, 197, 0.3);
}

.grj_content-welcome__card-link:hover {
    background: rgba(255, 183, 197, 0.2);
    color: var(--grj-color-twillight);
}

@media (max-width: 1024px) {
    .grj_content-welcome { padding: 4rem 1.5rem; }
    .grj_content-welcome__cards { gap: 1.5rem; }
    .grj_content-welcome__card { padding: 1.5rem; }
}

@media (max-width: 768px) {
    .grj_content-welcome__cards { justify-content: center; }
    .grj_content-welcome__card { width: 100%; }
    .grj_content-welcome__card i { font-size: 2.5rem; width: 70px; height: 70px; }
}

@media (max-width: 480px) {
    .grj_content-welcome { padding: 3rem 0.5rem; }
    .grj_content-welcome__subtitle { padding: 0 0.5rem; }
    .grj_content-welcome__cards { gap: 1rem; }
    .grj_content-welcome__card {
        width: 100%;
        max-width: 280px;
        padding: 1.5rem 1rem;
    }
    .grj_content-welcome__card:hover {
        transform: translateY(-5px);
    }
}

.grj_content-about {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.grj_content-about__block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

.grj_content-about__block--second {
    flex-direction: row-reverse;
}

.grj_content-about__image {
    width: 100%;
    max-width: 350px;
    height: 100%;
    max-height: 350px;
    border-radius: var(--grj-radius-large);
    flex-shrink: 0;
    box-shadow: var(--grj-shadow-medium);
    border: 8px solid white;
}

.grj_content-about__text-container {
    flex: 1;
    min-width: 282px;
}

.grj_content-about__text-container h2,
.grj_content-about__text-container h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.grj_content-about__text-container h2::after,
.grj_content-about__text-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--grj-color-dawn), var(--grj-color-twillight));
    border-radius: 3px;
}

.grj_content-about__text-container p {
    color: var(--grj-color-stone);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.grj_content-about__mini-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.grj_content-about__mini-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
    background: var(--grj-color-mist);
    padding: 0.8rem 1.2rem;
    border-radius: var(--grj-radius-small);
    font-size: 0.9rem;
    color: var(--grj-color-ink);
    transition: var(--grj-transition-smooth);
}

.grj_content-about__mini-card:hover {
    background: var(--grj-color-twillight);
    color: white;
    transform: scale(1.05);
}

.grj_content-about__mini-card i {
    font-size: 1.2rem;
}

.grj_content-about__link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--grj-color-dawn), var(--grj-color-twillight));
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 400;
    box-shadow: var(--grj-shadow-light);
}

.grj_content-about__link:hover {
    transform: translateY(-3px);
    box-shadow: var(--grj-shadow-medium);
    color: white;
}

@media (max-width: 1024px) {
    .grj_content-about { padding: 4rem 1.5rem; }
    .grj_content-about__block { gap: 3rem; }
    .grj_content-about__image { width: 100%; max-width: 300px; height: 100%; max-height: 300px; }
}

@media (max-width: 768px) {
    .grj_content-about__block,
    .grj_content-about__block--second {
        flex-direction: column;
        text-align: center;
    }
    .grj_content-about__text-container h2::after,
    .grj_content-about__text-container h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .grj_content-about__mini-cards { justify-content: center; }
    .grj_content-about__image { width: 280px; height: 280px; }
}

@media (max-width: 480px) {
    .grj_content-about { padding: 3rem 0.5rem; }
    .grj_content-about__block { gap: 2rem; margin-bottom: 3rem; }
    .grj_content-about__image { width: 250px; height: 250px; border-width: 5px; }
    .grj_content-about__mini-card { padding: 0.6rem 1rem; }
    .grj_content-about__link { padding: 0.8rem 1.5rem; }
}

.grj_content-features {
    background: linear-gradient(rgba(163, 181, 255, 0.05), rgba(255, 183, 197, 0.05)), url('/grj-core/grj-images/features-bg.webp') center/cover fixed;
    padding: 5rem 2rem;
    position: relative;
}

.grj_content-features__content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.grj_content-features h2 {
    color: white;
    margin-bottom: 3rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.grj_content-features__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.grj_content-features__card {
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(8px);
    border-radius: var(--grj-radius-medium);
    padding: 2.5rem 2rem;
    width: 280px;
    text-align: center;
    box-shadow: var(--grj-shadow-medium);
    border-top: 5px solid var(--grj-color-twillight);
    transition: var(--grj-transition-smooth);
    position: relative;
    overflow: hidden;
}

.grj_content-features__card:nth-child(2n) {
    border-top-color: var(--grj-color-dawn);
}

.grj_content-features__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--grj-color-dawn), var(--grj-color-twillight));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.grj_content-features__card:hover::before {
    opacity: 1;
}

.grj_content-features__card:hover {
    transform: translateY(-12px) scale(1.03);
}

.grj_content-features__card i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: transparent;
    background: linear-gradient(135deg, var(--grj-color-dawn), var(--grj-color-twillight));
    -webkit-background-clip: text;
    background-clip: text;
}

.grj_content-features__card h3 {
    color: var(--grj-color-ink);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.grj_content-features__card p {
    color: var(--grj-color-stone);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .grj_content-features { padding: 4rem 1.5rem; }
    .grj_content-features__cards { gap: 1.5rem; }
    .grj_content-features__card { padding: 2rem 1.5rem; }
}

@media (max-width: 768px) {
    .grj_content-features__cards { justify-content: center; }
    .grj_content-features__card { width: 100%; }
}

@media (max-width: 480px) {
    .grj_content-features { padding: 3rem 0.5rem; }
    .grj_content-features__cards { gap: 1rem; }
    .grj_content-features__card {
        width: 100%;
        max-width: 280px;
        padding: 1.8rem 1.2rem;
    }
    .grj_content-features__card:hover {
        transform: translateY(-8px) scale(1.02);
    }
}

.grj_content-games {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.grj_content-games__intro {
    color: var(--grj-color-stone);
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.grj_content-games__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.grj_content-games__card {
    background: white;
    border-radius: var(--grj-radius-medium);
    overflow: hidden;
    width: 290px;
    box-shadow: var(--grj-shadow-light);
    transition: var(--grj-transition-smooth);
    position: relative;
    text-align: center;
    padding-bottom: 2rem;
    border: 1px solid var(--grj-color-mist);
}

.grj_content-games__card:hover {
    transform: translateY(-15px) rotateY(5deg);
    box-shadow: var(--grj-shadow-medium);
}

.grj_content-games__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 400;
    color: white;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.grj_content-games__badge--popular {
    background: linear-gradient(90deg, #ff6b6b, #ff8e53);
}

.grj_content-games__badge--new {
    background: linear-gradient(90deg, #4ecdc4, #44a08d);
}

.grj_content-games__badge--trending {
    background: linear-gradient(90deg, #9d50bb, #6e48aa);
}

.grj_content-games__badge--classic {
    background: linear-gradient(90deg, #ffd89b, #19547b);
}

.grj_content-games__badge--updated {
    background: linear-gradient(90deg, #6190e8, #a7bfe8);
}

.grj_content-games__image {
    width: 100%;
    max-width: 300px;
    height: 100%;
    max-height: 300px;
    margin: 0 auto;
    padding: 0 0 1rem 0;
}

.grj_content-games__card h3 {
    margin: 1rem 0;
    color: var(--grj-color-ink);
    font-size: 1.5rem;
}

.grj_content-games__icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    color: var(--grj-color-twillight);
    font-size: 1.5rem;
}

.grj_content-games__link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--grj-color-mist);
    color: var(--grj-color-twillight);
    border-radius: 50px;
    font-weight: 400;
    border: 1px solid rgba(163, 181, 255, 0.3);
    transition: var(--grj-transition-smooth);
}

.grj_content-games__link:hover {
    background: var(--grj-color-twillight);
    color: white;
}

@media (max-width: 1024px) {
    .grj_content-games { padding: 4rem 1.5rem; }
    .grj_content-games__grid { gap: 2rem; }
    .grj_content-games__card { width: 250px; }
    .grj_content-games__image { width: 250px; height: 250px; }
}

@media (max-width: 768px) {
    .grj_content-games__grid { gap: 1.5rem; }
    .grj_content-games__card { width: 220px; }
    .grj_content-games__image { width: 100%; height: 220px; }
}

@media (max-width: 480px) {
    .grj_content-games { padding: 3rem 0.5rem; }
    .grj_content-games__intro { padding: 0 0.5rem; }
    .grj_content-games__grid { gap: 1.5rem; }
    .grj_content-games__card {
        width: 100%;
        max-width: 290px;
    }
    .grj_content-games__card:hover {
        transform: translateY(-8px);
    }
}

.grj_content-free-slots {
    background: linear-gradient(135deg, var(--grj-color-mist) 0%, var(--grj-color-cloud) 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.grj_content-free-slots__content {
    max-width: 1200px;
    margin: 0 auto;
}

.grj_content-free-slots h2 {
    color: var(--grj-color-ink);
    margin-bottom: 1.5rem;
}

.grj_content-free-slots__content > p {
    color: var(--grj-color-stone);
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.grj_content-free-slots__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.grj_content-free-slots__card {
    background: white;
    border-radius: var(--grj-radius-medium);
    padding: 2.5rem 2rem;
    width: 280px;
    text-align: center;
    box-shadow: var(--grj-shadow-light);
    transition: var(--grj-transition-smooth);
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.grj_content-free-slots__card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--grj-color-dawn), var(--grj-color-twillight), var(--grj-color-dawn));
    border-radius: var(--grj-radius-medium);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.grj_content-free-slots__card:hover::before {
    opacity: 1;
}

.grj_content-free-slots__card:hover {
    transform: translateY(-10px) scale(1.05);
}

.grj_content-free-slots__card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--grj-color-twillight);
}

.grj_content-free-slots__card > p:first-of-type {
    font-family: 'Newsreader', serif;
    font-size: 1.3rem;
    color: var(--grj-color-ink);
    margin-bottom: 1rem;
    font-weight: 300;
}

.grj_content-free-slots__card > p:last-of-type {
    color: var(--grj-color-pebble);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    min-height: 4.5rem;
}

.grj_content-free-slots__card a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--grj-color-dawn);
    font-weight: 400;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 183, 197, 0.1);
    border: 1px solid rgba(255, 183, 197, 0.3);
}

.grj_content-free-slots__card a:hover {
    background: rgba(255, 183, 197, 0.2);
    color: var(--grj-color-twillight);
}

@media (max-width: 1024px) {
    .grj_content-free-slots { padding: 4rem 1.5rem; }
    .grj_content-free-slots__cards { gap: 1.5rem; }
    .grj_content-free-slots__card { padding: 2rem 1.5rem; }
}

@media (max-width: 768px) {
    .grj_content-free-slots__cards { justify-content: center; }
    .grj_content-free-slots__card { width: 100%; padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .grj_content-free-slots { padding: 3rem 0.5rem; }
    .grj_content-free-slots__cards { gap: 1rem; }
    .grj_content-free-slots__card {
        width: 100%;
        max-width: 250px;
        padding: 1.8rem 1.2rem;
    }
    .grj_content-free-slots__card:hover {
        transform: translateY(-6px) scale(1.03);
    }
}

.grj_content-faq {
    background: linear-gradient(rgba(33, 37, 41, 0.85), rgba(33, 37, 41, 0.9)), url('/grj-core/grj-images/faq-bg.webp') center/cover fixed;
    padding: 5rem 2rem;
    color: white;
}

.grj_content-faq__content {
    max-width: 1200px;
    margin: 0 auto;
}

.grj_content-faq h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.grj_content-faq__blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.grj_content-faq__block {
    flex: 1;
    min-width: 283px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--grj-radius-medium);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.grj_content-faq__block h3 {
    color: var(--grj-color-mist);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
}

.grj_content-faq__item {
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.grj_content-faq__question {
    width: 100%;
    text-align: left;
    color: white;
    font-size: 1.05rem;
    padding: 1.2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    background: none;
}

.grj_content-faq__question i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: var(--grj-color-dawn);
}

.grj_content-faq__item.active .grj_content-faq__question i {
    transform: rotate(45deg);
}

.grj_content-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.grj_content-faq__item.active .grj_content-faq__answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.grj_content-faq__contact-trigger {
    display: block;
    margin: 4rem auto 0;
    background: linear-gradient(90deg, var(--grj-color-dawn), var(--grj-color-twillight));
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: var(--grj-shadow-medium);
    transition: var(--grj-transition-smooth);
}

.grj_content-faq__contact-trigger:hover {
    transform: translateY(-5px) scale(1.05);
}

@media (max-width: 1024px) {
    .grj_content-faq { padding: 4rem 1.5rem; }
    .grj_content-faq__blocks { gap: 2rem; }
    .grj_content-faq__block { padding: 2rem; }
}

@media (max-width: 768px) {
    .grj_content-faq__block { min-width: 100%; }
    .grj_content-faq__contact-trigger { margin-top: 3rem; padding: 1rem 2rem; }
}

@media (max-width: 480px) {
    .grj_content-faq { padding: 3rem 0.5rem; }
    .grj_content-faq__block { padding: 1.5rem; }
    .grj_content-faq__question { padding: 1rem 0; font-size: 1rem; }
    .grj_content-faq__contact-trigger {
        width: 90%;
        padding: 1rem;
        font-size: 1rem;
    }
    .grj_content-faq__contact-trigger:hover {
        transform: translateY(-3px);
    }
}

.grj_content-reviews {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.grj_content-reviews h2 {
    margin-bottom: 3rem;
}

.grj_content-reviews__container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.grj_content-reviews__card {
    background: white;
    border-radius: var(--grj-radius-medium);
    padding: 2.5rem 2rem;
    width: 280px;
    text-align: center;
    box-shadow: var(--grj-shadow-light);
    transition: var(--grj-transition-smooth);
    position: relative;
    border: 1px solid var(--grj-color-mist);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.grj_content-reviews__card:hover {
    transform: translateY(-12px) rotate(1deg);
    box-shadow: var(--grj-shadow-medium);
}

.grj_content-reviews__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--grj-color-mist);
}

.grj_content-reviews__name {
    font-family: 'Newsreader', serif;
    font-size: 1.4rem;
    color: var(--grj-color-ink);
    margin-bottom: 0.8rem;
    font-weight: 300;
}

.grj_content-reviews__rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    display: flex;
    gap: 0.2rem;
    justify-content: center;
}

.grj_content-reviews__text {
    color: var(--grj-color-stone);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
    min-height: 5rem;
}

.grj_content-reviews__meta {
    color: var(--grj-color-pebble);
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.grj_content-reviews__meta i {
    margin-right: 0.3rem;
}

@media (max-width: 1024px) {
    .grj_content-reviews { padding: 4rem 1.5rem; }
    .grj_content-reviews__container { gap: 2rem; }
    .grj_content-reviews__card { width: 250px; padding: 2rem 1.5rem; }
}

@media (max-width: 768px) {
    .grj_content-reviews__container { gap: 1.5rem; }
    .grj_content-reviews__card { width: 220px; }
}

@media (max-width: 480px) {
    .grj_content-reviews { padding: 3rem 0.5rem; }
    .grj_content-reviews__container { gap: 1.5rem; }
    .grj_content-reviews__card {
        width: 100%;
        max-width: 290px;
        padding: 1.8rem 1.2rem;
    }
    .grj_content-reviews__card:hover {
        transform: translateY(-8px);
    }
}

.grj_content-responsible {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.grj_content-responsible h2 {
    margin-bottom: 3rem;
    color: var(--grj-color-stone);
}

.grj_content-responsible__text-block {
    text-align: left;
    background: var(--grj-color-mist);
    padding: 3rem;
    border-radius: var(--grj-radius-medium);
    margin-top: 3rem;
    border-left: 5px solid var(--grj-color-dawn);
}

.grj_content-responsible__text-block p {
    color: var(--grj-color-stone);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.grj_content-responsible__text-block a {
    color: var(--grj-color-twillight);
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.grj_content-responsible__text-block a:hover {
    color: var(--grj-color-dawn);
}

.grj_content-responsible__partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    background: white;
    border-radius: var(--grj-radius-medium);
    box-shadow: var(--grj-shadow-light);
}

.grj_content-responsible__partners a {
    display: block;
    background: var(--grj-color-pebble);
    padding: 0.5rem;
    border-radius: var(--grj-radius-small);
    transition: var(--grj-transition-smooth);
}

.grj_content-responsible__partners a:hover {
    transform: translateY(-5px);
}

.grj_content-responsible__partners img {
    width: 150px;
    height: 55px;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.grj_content-responsible__partners a:hover img {
    filter: grayscale(0);
}

.grj_content-responsible__partners a:last-child img {
    width: 55px;
    height: 55px;
}

@media (max-width: 1024px) {
    .grj_content-responsible { padding: 4rem 1.5rem; }
    .grj_content-responsible__text-block { padding: 2.5rem; }
    .grj_content-responsible__partners { gap: 2rem; }
}

@media (max-width: 768px) {
    .grj_content-responsible__text-block { padding: 2rem; }
    .grj_content-responsible__partners { gap: 1.5rem; padding: 1.5rem; }
    .grj_content-responsible__partners img { width: 130px; height: 50px; }
}

@media (max-width: 480px) {
    .grj_content-responsible { padding: 3rem 0.5rem; }
    .grj_content-responsible__text-block { padding: 1.5rem; border-left-width: 3px; }
    .grj_content-responsible__partners {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    .grj_content-responsible__partners img {
        width: 140px;
        height: 50px;
    }
    .grj_content-responsible__partners a:last-child img {
        width: 50px;
        height: 50px;
    }
}

.grj_site-interface-footer {
    background: linear-gradient(rgba(33, 37, 41, 0.9), rgba(33, 37, 41, 0.95)), url('/grj-core/grj-images/footer-bg.webp') center/cover no-repeat;
    color: white;
    padding: 4rem 2rem 2rem;
}

.grj_site-interface-footer__content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4rem;
}

.grj_site-interface-footer__block {
    flex: 1;
    min-width: 270px;
}

.grj_site-interface-footer__block--primary {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 2rem;
}

.grj_site-interface-footer__brand {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-family: 'Newsreader', serif;
    color: white;
    font-weight: 300;
}

.grj_site-interface-footer__logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
    background: white;
    padding: 5px;
}

.grj_site-interface-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.grj_site-interface-footer__nav-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.grj_site-interface-footer__nav-link:hover {
    color: var(--grj-color-dawn);
}

.grj_site-interface-footer__nav-link i {
    font-size: 1.1rem;
}

.grj_site-interface-footer__block--secondary {
    text-align: right;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.grj_site-interface-footer__block--secondary a {
    color: rgba(255, 255, 255, 0.9);
}

.grj_site-interface-footer__block--secondary a:hover {
    color: var(--grj-color-dawn);
}

.grj_site-interface-footer__block p {
    color: var(--grj-color-cloud);
}

@media (max-width: 1024px) {
    .grj_site-interface-footer { padding: 3rem 1.5rem 1.5rem; }
    .grj_site-interface-footer__content { gap: 3rem; }
    .grj_site-interface-footer__nav { gap: 1.2rem; }
}

@media (max-width: 768px) {
    .grj_site-interface-footer__content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .grj_site-interface-footer__block--primary { align-items: center; }
    .grj_site-interface-footer__nav { justify-content: center; }
    .grj_site-interface-footer__block--secondary {
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .grj_site-interface-footer { padding: 2.5rem 0.5rem 1rem; }
    .grj_site-interface-footer__nav {
        flex-direction: column;
        gap: 0.8rem;
    }
    .grj_site-interface-footer__nav-link { justify-content: center; }
    .grj_site-interface-footer__block--secondary { font-size: 0.85rem; }
}

.grj_scroll-navigation {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 999;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: var(--grj-radius-medium);
    box-shadow: var(--grj-shadow-medium);
    border: 1px solid var(--grj-color-mist);
}

.grj_scroll-navigation__btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--grj-color-twillight);
    background: white;
    border: 2px solid var(--grj-color-mist);
    transition: var(--grj-transition-smooth);
}

.grj_scroll-navigation__btn:hover {
    background: var(--grj-color-twillight);
    color: white;
    border-color: var(--grj-color-twillight);
    transform: scale(1.1);
}

.grj_scroll-navigation__progress {
    font-size: 0.9rem;
    color: var(--grj-color-pebble);
    font-weight: 400;
}

@media (max-width: 768px) {
    .grj_scroll-navigation {
        right: 1rem;
        bottom: 1rem;
        padding: 0.8rem;
        gap: 0.6rem;
    }
    .grj_scroll-navigation__btn {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .grj_scroll-navigation {
        right: 0.5rem;
        bottom: 0.5rem;
        padding: 0.6rem;
    }
    .grj_scroll-navigation__btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .grj_scroll-navigation__progress { font-size: 0.8rem; }
}

.grj_age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 37, 41, 0.95);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.grj_age-confirmation-dialog {
    background: white;
    max-width: 500px;
    width: 100%;
    border-radius: var(--grj-radius-large);
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--grj-color-mist);
    animation: grj_modal-appear 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes grj_modal-appear {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.grj_age-confirmation-dialog i {
    font-size: 4rem;
    color: var(--grj-color-twillight);
    margin-bottom: 1.5rem;
}

.grj_age-confirmation-dialog h3 {
    color: var(--grj-color-ink);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.grj_age-confirmation-dialog p {
    color: var(--grj-color-stone);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.grj_age-confirmation-dialog a {
    color: var(--grj-color-twillight);
    font-weight: 400;
    text-decoration: underline;
}

.grj_age-confirmation-dialog__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.grj_age-confirmation-dialog__btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 400;
    font-size: 1rem;
    min-width: 180px;
    transition: var(--grj-transition-smooth);
}

.grj_age-confirmation-dialog__btn--confirm {
    background: linear-gradient(90deg, var(--grj-color-dawn), var(--grj-color-twillight));
    color: white;
    border: none;
}

.grj_age-confirmation-dialog__btn--confirm:hover {
    transform: translateY(-3px);
    box-shadow: var(--grj-shadow-medium);
}

.grj_age-confirmation-dialog__btn--exit {
    background: white;
    color: var(--grj-color-pebble);
    border: 2px solid var(--grj-color-mist);
}

.grj_age-confirmation-dialog__btn--exit:hover {
    border-color: var(--grj-color-pebble);
    color: var(--grj-color-ink);
}

@media (max-width: 768px) {
    .grj_age-verification-overlay { padding: 1rem; }
    .grj_age-confirmation-dialog { padding: 2.5rem 2rem; }
    .grj_age-confirmation-dialog__actions { flex-direction: column; }
    .grj_age-confirmation-dialog__btn { width: 100%; min-width: auto; }
}

@media (max-width: 480px) {
    .grj_age-verification-overlay { align-items: flex-start;}
    .grj_age-confirmation-dialog { padding: 2rem 1.5rem; }
    .grj_age-confirmation-dialog i { font-size: 3rem; }
    .grj_age-confirmation-dialog h3 { font-size: 1.7rem; }
}

.grj_cookie-notification-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 9998;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--grj-color-mist);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.grj_cookie-notification-bar.active {
    transform: translateY(0);
}

.grj_cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.grj_cookie-consent-container i {
    font-size: 2.5rem;
    color: var(--grj-color-twillight);
    flex-shrink: 0;
}

.grj_cookie-consent-container__text {
    flex: 1;
    min-width: 283px;
}

.grj_cookie-consent-container__text p {
    color: var(--grj-color-stone);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.grj_cookie-consent-container__text a {
    color: var(--grj-color-twillight);
    font-weight: 400;
    text-decoration: underline;
}

.grj_cookie-consent-container__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    flex-shrink: 0;
}

.grj_cookie-consent-container__btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 400;
    font-size: 0.95rem;
    min-width: 120px;
    transition: var(--grj-transition-smooth);
}

.grj_cookie-consent-container__btn--accept {
    background: linear-gradient(90deg, var(--grj-color-dawn), var(--grj-color-twillight));
    color: white;
    border: none;
}

.grj_cookie-consent-container__btn--accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--grj-shadow-light);
}

.grj_cookie-consent-container__btn--reject {
    background: white;
    color: var(--grj-color-pebble);
    border: 2px solid var(--grj-color-mist);
}

.grj_cookie-consent-container__btn--reject:hover {
    border-color: var(--grj-color-pebble);
    color: var(--grj-color-ink);
}

@media (max-width: 768px) {
    .grj_cookie-notification-bar { padding: 1.5rem; }
    .grj_cookie-consent-container { gap: 1.5rem; }
    .grj_cookie-consent-container__text { min-width: 100%; }
    .grj_cookie-consent-container__actions { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .grj_cookie-notification-bar { padding: 1.2rem 1rem; }
    .grj_cookie-consent-container { gap: 1.2rem; }
    .grj_cookie-consent-container__btn {
        width: 100%;
        min-width: auto;
        padding: 0.8rem;
    }
}

.grj_subscribe-newsletter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 37, 41, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9997;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.grj_subscribe-newsletter-overlay.active {
    display: flex;
}

.grj_subscription-modal-window {
    background: white;
    max-width: 700px;
    width: 100%;
    border-radius: var(--grj-radius-large);
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--grj-color-mist);
    animation: grj_modal-slide-up 0.5s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes grj_modal-slide-up {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

.grj_subscription-modal-window__content,
.grj_subscription-success-message {
    padding: 3.5rem;
}

.grj_subscription-modal-window__content i,
.grj_subscription-success-message i {
    font-size: 4rem;
    color: var(--grj-color-twillight);
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
}

.grj_subscription-modal-window__content h3,
.grj_subscription-success-message h3 {
    text-align: center;
    color: var(--grj-color-ink);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.grj_subscription-modal-window__content > p,
.grj_subscription-success-message p {
    text-align: center;
    color: var(--grj-color-stone);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.grj_subscription-modal-window__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: center;
}

.grj_subscription-modal-window__benefit {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--grj-color-cloud);
    border-radius: var(--grj-radius-small);
    border: 1px solid var(--grj-color-mist);
    transition: var(--grj-transition-smooth);
}

.grj_subscription-modal-window__benefit:hover {
    transform: translateY(-5px);
    border-color: var(--grj-color-twillight);
}

.grj_subscription-modal-window__benefit i {
    font-size: 2rem;
    color: var(--grj-color-dawn);
    margin-bottom: 1rem;
}

.grj_subscription-modal-window__benefit p {
    font-size: 0.9rem;
    color: var(--grj-color-pebble);
    margin: 0;
    line-height: 1.5;
}

.grj_subscription-form {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1.8rem;
}

.grj_subscription-form__field {
    position: relative;
}

.grj_subscription-form__input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    border: 2px solid var(--grj-color-mist);
    border-radius: var(--grj-radius-small);
    background: white;
    transition: var(--grj-transition-smooth);
    font-family: 'DM Sans', sans-serif;
}

.grj_subscription-form__input:focus {
    outline: none;
    border-color: var(--grj-color-twillight);
    box-shadow: 0 0 0 3px rgba(163, 181, 255, 0.2);
}

.grj_subscription-form__label {
    position: absolute;
    top: 1.2rem;
    left: 1.5rem;
    color: var(--grj-color-pebble);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--grj-transition-smooth);
    background: white;
    padding: 0 0.5rem;
}

.grj_subscription-form__input:focus + .grj_subscription-form__label,
.grj_subscription-form__input:not(:placeholder-shown) + .grj_subscription-form__label {
    top: -0.6rem;
    font-size: 0.85rem;
    color: var(--grj-color-twillight);
}

.grj_subscription-form__field--checkbox {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
}

.grj_subscription-form__checkbox {
    width: 24px;
    height: 24px;
    margin-top: 0.3rem;
    flex-shrink: 0;
    cursor: pointer;
}

.grj_subscription-form__checkbox-label {
    flex: 1;
    color: var(--grj-color-stone);
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
}

.grj_subscription-form__checkbox-label a {
    color: var(--grj-color-twillight);
    font-weight: 400;
}

.grj_subscription-form__hint {
    position: absolute;
    bottom: -1.4rem;
    left: 0;
    font-size: 0.8rem;
    color: #ff6b6b;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grj_subscription-form__field.invalid .grj_subscription-form__hint {
    opacity: 1;
}

.grj_subscription-form__submit {
    background: linear-gradient(90deg, var(--grj-color-dawn), var(--grj-color-twillight));
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 400;
    cursor: pointer;
    transition: var(--grj-transition-smooth);
    margin-top: 1rem;
}

.grj_subscription-form__submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: var(--grj-shadow-medium);
}

.grj_subscription-form__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.grj_subscription-success-message {
    display: none;
    text-align: center;
}

.grj_subscription-success-message__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.grj_subscription-success-message__btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 400;
    font-size: 1rem;
    min-width: 180px;
    transition: var(--grj-transition-smooth);
}

.grj_subscription-success-message__btn {
    background: linear-gradient(90deg, var(--grj-color-dawn), var(--grj-color-twillight));
    color: white;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.grj_subscription-success-message__btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--grj-shadow-medium);
}

.grj_subscription-success-message__btn--unsubscribe {
    background: white;
    color: var(--grj-color-pebble);
    border: 2px solid var(--grj-color-mist);
}

.grj_subscription-success-message__btn--unsubscribe:hover {
    border-color: var(--grj-color-pebble);
    color: var(--grj-color-ink);
}

.grj_unsubscribe-confirmation-modal {
    background: white;
    max-width: 500px;
    width: 100%;
    border-radius: var(--grj-radius-large);
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--grj-color-mist);
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.grj_unsubscribe-confirmation-modal i {
    font-size: 4rem;
    color: var(--grj-color-dawn);
    margin-bottom: 1.5rem;
}

.grj_unsubscribe-confirmation-modal h3 {
    color: var(--grj-color-ink);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.grj_unsubscribe-confirmation-modal p {
    color: var(--grj-color-stone);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.grj_unsubscribe-confirmation-modal__close {
    background: linear-gradient(90deg, var(--grj-color-dawn), var(--grj-color-twillight));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: var(--grj-transition-smooth);
}

.grj_unsubscribe-confirmation-modal__close:hover {
    transform: translateY(-3px);
    box-shadow: var(--grj-shadow-medium);
}

@media (max-width: 768px) {
    .grj_subscribe-newsletter-overlay { padding: 1rem; }
    .grj_subscription-modal-window__content,
    .grj_subscription-success-message,
    .grj_unsubscribe-confirmation-modal {
        padding: 2.5rem 2rem;
    }
    .grj_subscription-modal-window__benefits { flex-direction: column; }
    .grj_subscription-modal-window__benefit { min-width: 100%; }
    .grj_subscription-success-message__actions { flex-direction: column; }
    .grj_subscription-success-message__btn { width: 100%; min-width: auto; }
}

@media (max-width: 480px) {
    .grj_subscribe-newsletter-overlay {
        align-items: flex-start;
    }
    .grj_subscription-modal-window__content,
    .grj_subscription-success-message,
    .grj_unsubscribe-confirmation-modal {
        padding: 2rem 1.5rem;
    }
    .grj_subscription-modal-window__content i,
    .grj_subscription-success-message i,
    .grj_unsubscribe-confirmation-modal i {
        font-size: 3rem;
    }
    .grj_subscription-modal-window__content h3,
    .grj_subscription-success-message h3,
    .grj_unsubscribe-confirmation-modal h3 {
        font-size: 1.7rem;
    }
    .grj_subscription-form__input {
        font-size: 16px;
        padding: 1rem;
        min-height: 44px;
    }
    .grj_subscription-form__label {
        top: 1rem;
        left: 1rem;
    }
    .grj_subscription-form__checkbox {
        width: 20px;
        height: 20px;
    }
}

.grj_contact-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 37, 41, 0.88);
    backdrop-filter: blur(12px);
    z-index: 9996;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.grj_contact-form-overlay.active {
    display: flex;
}

.grj_feedback-modal-window {
    background: white;
    max-width: 800px;
    width: 100%;
    border-radius: var(--grj-radius-large);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--grj-color-mist);
    animation: grj_modal-fade-in 0.4s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes grj_modal-fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.grj_feedback-modal-window__intro {
    background: linear-gradient(135deg, var(--grj-color-mist) 0%, var(--grj-color-cloud) 100%);
    padding: 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.grj_feedback-modal-window__intro-animation {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 183, 197, 0.2), transparent);
    animation: grj_rotate 20s linear infinite;
    z-index: 0;
}

@keyframes grj_rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.grj_contact-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--grjpages-color-twillight);
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.grj_contact-close-btn:hover {
    background-color: rgba(163, 181, 255, 0.1);
    transform: rotate(90deg);
}

@media (max-width: 480px) {
    .grj_contact-close-btn {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

.grj_feedback-modal-window__intro h3,
.grj_feedback-modal-window__intro p {
    position: relative;
    z-index: 1;
}

.grj_feedback-modal-window__intro h3 {
    color: var(--grj-color-ink);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.grj_feedback-modal-window__intro p {
    color: var(--grj-color-stone);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.grj_feedback-modal-window__form-section {
    padding: 3.5rem;
}

.grj_feedback-modal-window__form-section h4 {
    color: var(--grj-color-ink);
    margin-bottom: 0.8rem;
    font-size: 1.8rem;
    font-family: 'Newsreader', serif;
    font-weight: 300;
}

.grj_feedback-modal-window__form-section > p {
    color: var(--grj-color-pebble);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.grj_contact-form {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 2rem;
}

.grj_contact-form__field {
    position: relative;
}

.grj_contact-form__label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--grj-color-stone);
    font-size: 0.95rem;
    font-weight: 400;
    pointer-events: none;
}

.grj_contact-form__input,
.grj_contact-form__textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    border: 2px solid var(--grj-color-mist);
    border-radius: var(--grj-radius-small);
    background: white;
    transition: var(--grj-transition-smooth);
    font-family: 'DM Sans', sans-serif;
}

.grj_contact-form__textarea {
    min-height: 150px;
    resize: vertical;
}

.grj_contact-form__input:focus,
.grj_contact-form__textarea:focus {
    outline: none;
    border-color: var(--grj-color-twillight);
    box-shadow: 0 0 0 3px rgba(163, 181, 255, 0.2);
}

.grj_contact-form__field--checkbox {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
}

.grj_contact-form__checkbox {
    width: 24px;
    height: 24px;
    margin-top: 0.3rem;
    flex-shrink: 0;
    cursor: pointer;
}

.grj_contact-form__checkbox-label {
    flex: 1;
    color: var(--grj-color-stone);
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
}

.grj_contact-form__checkbox-label a {
    color: var(--grj-color-twillight);
    font-weight: 400;
}

.grj_contact-form__hint {
    position: absolute;
    top: -1.4rem;
    left: 0;
    font-size: 0.8rem;
    color: #ff6b6b;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grj_contact-form__field.invalid .grj_contact-form__hint {
    opacity: 1;
}

.grj_contact-form__submit {
    background: linear-gradient(90deg, var(--grj-color-dawn), var(--grj-color-twillight));
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 400;
    cursor: pointer;
    transition: var(--grj-transition-smooth);
    margin-top: 1rem;
}

.grj_contact-form__submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: var(--grj-shadow-medium);
}

.grj_contact-form__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.grj_contact-success-modal {
    background: white;
    max-width: 500px;
    width: 100%;
    border-radius: var(--grj-radius-large);
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--grj-color-mist);
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.grj_contact-success-modal i {
    font-size: 4rem;
    color: #4ecdc4;
    margin-bottom: 1.5rem;
}

.grj_contact-success-modal h3 {
    color: var(--grj-color-ink);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.grj_contact-success-modal p {
    color: var(--grj-color-stone);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.grj_contact-success-modal__email {
    color: var(--grj-color-twillight);
    font-weight: 400;
}

.grj_contact-success-modal__close {
    background: linear-gradient(90deg, var(--grj-color-dawn), var(--grj-color-twillight));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: var(--grj-transition-smooth);
}

.grj_contact-success-modal__close:hover {
    transform: translateY(-3px);
    box-shadow: var(--grj-shadow-medium);
}

@media (max-width: 768px) {
    .grj_contact-form-overlay { padding: 1rem; }
    .grj_feedback-modal-window__intro,
    .grj_feedback-modal-window__form-section {
        padding: 2.5rem 2rem;
    }
    .grj_contact-form__field--checkbox { align-items: center; }
}

@media (max-width: 480px) {
    .grj_feedback-modal-window__intro,
    .grj_feedback-modal-window__form-section {
        padding: 2rem 1.5rem;
    }
    .grj_feedback-modal-window__intro h3 { font-size: 1.8rem; }
    .grj_feedback-modal-window__form-section h4 { font-size: 1.5rem; }
    .grj_contact-form__input,
    .grj_contact-form__textarea {
        font-size: 16px;
        padding: 1rem;
        min-height: 44px;
    }
    .grj_contact-form__checkbox {
        width: 20px;
        height: 20px;
    }
    .grj_contact-success-modal {
        padding: 2rem 1.5rem;
        width: 90%;
    }
    .grj_contact-success-modal i { font-size: 3rem; }
    .grj_contact-success-modal h3 { font-size: 1.7rem; }
}

@media (max-width: 480px) {
    .grj_content-welcome::before,
    .grj_feedback-modal-window__intro-animation {
        animation: none;
    }
    .grj_content-welcome__card:hover,
    .grj_content-features__card:hover,
    .grj_content-games__card:hover,
    .grj_content-free-slots__card:hover,
    .grj_content-reviews__card:hover,
    .grj_content-about__link:hover,
    .grj_content-faq__contact-trigger:hover,
    .grj_scroll-navigation__btn:hover,
    .grj_age-confirmation-dialog__btn--confirm:hover,
    .grj_cookie-consent-container__btn--accept:hover,
    .grj_subscription-form__submit:hover:not(:disabled),
    .grj_subscription-success-message__btn:hover,
    .grj_unsubscribe-confirmation-modal__close:hover,
    .grj_contact-form__submit:hover:not(:disabled),
    .grj_contact-success-modal__close:hover {
        transform: none;
    }
}