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

:root {
    --nexus-color-dark: #0a0a14;
    --nexus-color-deep: #15152a;
    --nexus-color-accent: #6a11cb;
    --nexus-color-accent-light: #2575fc;
    --nexus-color-glow: #00d2ff;
    --nexus-color-text: #e0e0ff;
    --nexus-color-text-light: #a0a0cc;
    --nexus-color-border: #2a2a4a;
    --nexus-color-card: #1a1a2e;
    --nexus-color-success: #00c896;
    --nexus-color-warning: #ff9a3c;
    --nexus-color-error: #ff4757;
    --nexus-shadow-soft: 0 8px 32px rgba(106, 17, 203, 0.1);
    --nexus-shadow-medium: 0 12px 48px rgba(37, 117, 252, 0.15);
    --nexus-border-radius: 12px;
    --nexus-border-radius-large: 24px;
    --nexus-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Public Sans', sans-serif;
    background-color: var(--nexus-color-dark);
    color: var(--nexus-color-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.jn-background-wrapper {
    position: relative;
    min-height: 100vh;
    background: 
        radial-gradient(circle at 20% 50%, rgba(106, 17, 203, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 117, 252, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--nexus-color-dark) 0%, var(--nexus-color-deep) 100%);
}

.jn-nexus-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(42, 42, 74, 0.3);
}

.jn-nexus-header__disclaimer {
    background: linear-gradient(90deg, var(--nexus-color-accent), var(--nexus-color-accent-light));
    padding: 0.5rem 1rem;
    text-align: center;
}

.jn-nexus-header__disclaimer p {
    font-size: 0.85rem;
    color: white;
    font-weight: 300;
}

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

.jn-nexus-header__brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--nexus-color-text);
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.jn-nexus-header__brand img {
    width: 100%;
    max-width: 80px;
    height: 100%;
    max-height: 80px;
    border-radius: 50%;
    border: 2px solid var(--nexus-color-accent);
    transition: var(--nexus-transition);
}

.jn-nexus-header__brand:hover img {
    transform: rotate(15deg);
    border-color: var(--nexus-color-glow);
}

.jn-nexus-header__navigation {
    display: flex;
}

.jn-nexus-header__nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
}

.jn-nexus-header__nav-item {
    position: relative;
}

.jn-nexus-header__nav-link {
    color: var(--nexus-color-text-light);
    text-decoration: none;
    font-weight: 400;
    padding: 0.5rem 1rem;
    transition: var(--nexus-transition);
    position: relative;
    z-index: 1;
}

.jn-nexus-header__nav-link:hover {
    color: var(--nexus-color-text);
}

.jn-nexus-header__nav-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--nexus-color-accent), var(--nexus-color-glow));
    transition: width 0.3s ease;
}

.jn-nexus-header__nav-item:hover .jn-nexus-header__nav-decoration {
    width: 100%;
}

.jn-nexus-header__menu-toggle {
    display: none;
    cursor: pointer;
}

.jn-nexus-header__menu-icon {
    width: 30px;
    height: 24px;
    position: relative;
    margin-top: 10px;
}

.jn-nexus-header__menu-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--nexus-color-text);
    border-radius: 2px;
    transition: var(--nexus-transition);
}

.jn-nexus-header__menu-line--top {
    top: 0;
    transform-origin: left center;
}

.jn-nexus-header__menu-line--middle {
    top: 50%;
    transform: translateY(-50%);
}

.jn-nexus-header__menu-line--bottom {
    bottom: 0;
    transform-origin: left center;
}

.jn-nexus-main {
    padding-top: 120px;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.jn-nexus-hero {
    position: relative;
    padding: 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.jn-nexus-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.jn-nexus-hero__decoration-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.jn-nexus-hero__decoration-circle--1 {
    width: 250px;
    height: 250px;
    background: var(--nexus-color-accent);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.jn-nexus-hero__decoration-circle--2 {
    width: 200px;
    height: 200px;
    background: var(--nexus-color-glow);
    bottom: -50px;
    right: -50px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.jn-nexus-hero__title {
    font-family: 'Newsreader', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--nexus-color-text), var(--nexus-color-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.jn-nexus-hero__subtitle {
    font-size: 1.25rem;
    color: var(--nexus-color-text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.jn-nexus-hero__cta-container {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.jn-nexus-hero__cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--nexus-color-accent), var(--nexus-color-accent-light));
    color: white;
    text-decoration: none;
    border-radius: var(--nexus-border-radius-large);
    font-weight: 500;
    transition: var(--nexus-transition);
    position: relative;
    overflow: hidden;
}

.jn-nexus-hero__cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.jn-nexus-hero__cta-button:hover::before {
    left: 100%;
}

.jn-nexus-hero__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--nexus-shadow-medium);
}

.jn-nexus-hero__cta-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid var(--nexus-color-accent);
    border-radius: 50%;
    position: relative;
    animation: bounce 2s infinite;
}

.jn-nexus-hero__cta-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--nexus-color-glow);
    border-bottom: 2px solid var(--nexus-color-glow);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.jn-nexus-about {
    padding: 6rem 0;
}

.jn-nexus-about__container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.jn-nexus-about__image-side {
    flex: 1;
    min-width: 240px;
    position: relative;
}

.jn-nexus-about__image-side img {
    width: 100%;
    max-width: 380px;
    height: 100%;
    max-height: 380px;
    border-radius: var(--nexus-border-radius-large);
    object-position: center;
}

.jn-nexus-about__image-tag {
    position: absolute;
    top: -10px;
    right: 0;
    background: linear-gradient(135deg, var(--nexus-color-accent), var(--nexus-color-accent-light));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transform: rotate(5deg);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: rotate(5deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.05); }
}

.jn-nexus-about__content-side {
    flex: 1;
    min-width: 240px;
}

.jn-nexus-about__title {
    font-family: 'Newsreader', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--nexus-color-text);
}

.jn-nexus-about__text-block {
    margin-bottom: 3rem;
}

.jn-nexus-about__text-block p {
    margin-bottom: 1.5rem;
    color: var(--nexus-color-text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.jn-nexus-about__highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(106, 17, 203, 0.1);
    border-radius: var(--nexus-border-radius);
    border-left: 4px solid var(--nexus-color-accent);
}

.jn-nexus-about__highlight-icon {
    width: 20px;
    height: 20px;
    background: var(--nexus-color-accent);
    border-radius: 50%;
    position: relative;
}

.jn-nexus-about__highlight-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.jn-nexus-about__stats {
    display: flex;
    gap: 3rem;
}

.jn-nexus-about__stat-item {
    text-align: center;
}

.jn-nexus-about__stat-number {
    display: block;
    font-family: 'Newsreader', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--nexus-color-glow);
    margin-bottom: 0.5rem;
}

.jn-nexus-about__stat-label {
    font-size: 0.9rem;
    color: var(--nexus-color-text-light);
}

.jn-nexus-features {
    padding: 6rem 0;
    background: rgba(26, 26, 46, 0.5);
    border-radius: var(--nexus-border-radius-large);
    margin: 2rem 0;
}

.jn-nexus-features__header {
    text-align: center;
    margin-bottom: 4rem;
}

.jn-nexus-features__title {
    font-family: 'Newsreader', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--nexus-color-text);
}

.jn-nexus-features__subtitle {
    color: var(--nexus-color-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.jn-nexus-features__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.jn-nexus-features__card {
    flex: 1;
    min-width: 240px;
    max-width: 400px;
    background: var(--nexus-color-card);
    border-radius: var(--nexus-border-radius-large);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--nexus-transition);
    border: 1px solid var(--nexus-color-border);
}

.jn-nexus-features__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--nexus-shadow-medium);
    border-color: var(--nexus-color-accent);
}

.jn-nexus-features__card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    position: relative;
}

.jn-nexus-features__card-icon--1 {
    background: linear-gradient(135deg, var(--nexus-color-accent), rgba(106, 17, 203, 0.3));
}

.jn-nexus-features__card-icon--2 {
    background: linear-gradient(135deg, var(--nexus-color-accent-light), rgba(37, 117, 252, 0.3));
}

.jn-nexus-features__card-icon--3 {
    background: linear-gradient(135deg, var(--nexus-color-glow), rgba(0, 210, 255, 0.3));
}

.jn-nexus-features__card-title {
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--nexus-color-text);
}

.jn-nexus-features__card-text {
    color: var(--nexus-color-text-light);
    line-height: 1.7;
    min-height: 120px;
}

.jn-nexus-features__card-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--nexus-color-accent), var(--nexus-color-accent-light), var(--nexus-color-glow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.jn-nexus-features__card:hover .jn-nexus-features__card-wave {
    transform: scaleX(1);
}

.jn-nexus-games {
    padding: 6rem 0;
}

.jn-nexus-games__title-container {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.jn-nexus-games__title {
    font-family: 'Newsreader', serif;
    font-size: 2.5rem;
    color: var(--nexus-color-text);
    display: inline-block;
    padding: 0 2rem;
}

.jn-nexus-games__title-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--nexus-color-accent), transparent);
    z-index: -1;
}

.jn-nexus-games__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.jn-nexus-games__card {
    flex: 1;
    min-width: 240px;
    max-width: 350px;
    background: var(--nexus-color-card);
    border-radius: var(--nexus-border-radius);
    overflow: hidden;
    transition: var(--nexus-transition);
    border: 1px solid var(--nexus-color-border);
}

.jn-nexus-games__card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--nexus-shadow-medium);
}

.jn-nexus-games__card-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.jn-nexus-games__card-header img {
    width: 100%;
    height: 100%;
    object-position: center;
    transition: transform 0.6s ease;
}

.jn-nexus-games__card:hover .jn-nexus-games__card-header img {
    transform: scale(1.1);
}

.jn-nexus-games__card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 1;
}

.jn-nexus-games__card-badge--popular {
    background: linear-gradient(135deg, var(--nexus-color-accent), #8a2be2);
    color: white;
}

.jn-nexus-games__card-badge--new {
    background: linear-gradient(135deg, var(--nexus-color-success), #00d4aa);
    color: white;
}

.jn-nexus-games__card-badge--trending {
    background: linear-gradient(135deg, var(--nexus-color-warning), #ff7b25);
    color: white;
}

.jn-nexus-games__card-badge--classic {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: white;
}

.jn-nexus-games__card-badge--updated {
    background: linear-gradient(135deg, var(--nexus-color-glow), #00e5ff);
    color: white;
}

.jn-nexus-games__card-badge--exclusive {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
}

.jn-nexus-games__card-content {
    padding: 1.5rem;
}

.jn-nexus-games__card-title {
    font-family: 'Newsreader', serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--nexus-color-text);
}

.jn-nexus-games__card-desc {
    color: var(--nexus-color-text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    min-height: 40px;
}

.jn-nexus-games__card-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.jn-nexus-games__card-stars {
    color: var(--nexus-color-warning);
    font-size: 1.1rem;
}

.jn-nexus-games__card-link {
    display: inline-block;
    width: 100%;
    padding: 0.75rem;
    text-align: center;
    background: linear-gradient(135deg, var(--nexus-color-accent), var(--nexus-color-accent-light));
    color: white;
    text-decoration: none;
    border-radius: var(--nexus-border-radius);
    font-weight: 500;
    transition: var(--nexus-transition);
}

.jn-nexus-games__card-link:hover {
    background: linear-gradient(135deg, var(--nexus-color-accent-light), var(--nexus-color-glow));
    transform: translateY(-2px);
}

.jn-nexus-faq {
    padding: 6rem 0;
}

.jn-nexus-faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.jn-nexus-faq__title {
    font-family: 'Newsreader', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--nexus-color-text);
}

.jn-nexus-faq__items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.jn-nexus-faq__item {
    background: var(--nexus-color-card);
    border-radius: var(--nexus-border-radius);
    border: 1px solid var(--nexus-color-border);
    overflow: hidden;
}

.jn-nexus-faq__question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--nexus-transition);
}

.jn-nexus-faq__question h3 {
    font-family: 'Newsreader', serif;
    font-size: 1.1rem;
    color: var(--nexus-color-text);
    margin: 0;
}

.jn-nexus-faq__toggle {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.jn-nexus-faq__toggle::before,
.jn-nexus-faq__toggle::after {
    content: '';
    position: absolute;
    background: var(--nexus-color-accent);
    transition: var(--nexus-transition);
}

.jn-nexus-faq__toggle::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.jn-nexus-faq__toggle::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.jn-nexus-faq__item.active .jn-nexus-faq__toggle::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.jn-nexus-faq__item.active .jn-nexus-faq__question {
    background: rgba(106, 17, 203, 0.05);
}

.jn-nexus-faq__answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.jn-nexus-faq__item.active .jn-nexus-faq__answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.jn-nexus-faq__answer p {
    color: var(--nexus-color-text-light);
    line-height: 1.7;
}

.jn-nexus-welcome {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.1), rgba(37, 117, 252, 0.1));
    border-radius: var(--nexus-border-radius-large);
    margin: 2rem 0;
}

.jn-nexus-welcome__content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.jn-nexus-welcome__text-side {
    flex: 1;
    min-width: 240px;
}

.jn-nexus-welcome__title {
    font-family: 'Newsreader', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--nexus-color-text);
}

.jn-nexus-welcome__description {
    color: var(--nexus-color-text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.jn-nexus-welcome__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.jn-nexus-welcome__feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.jn-nexus-welcome__feature-dot {
    width: 12px;
    height: 12px;
    background: var(--nexus-color-accent);
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.jn-nexus-welcome__visual-side {
    flex: 1;
    min-width: 240px;
    height: 300px;
    position: relative;
}

.jn-nexus-welcome__visual-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.jn-nexus-welcome__visual-element--1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--nexus-color-accent), transparent);
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.jn-nexus-welcome__visual-element--2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--nexus-color-accent-light), transparent);
    top: 50%;
    right: 0;
    animation-delay: 1s;
}

.jn-nexus-welcome__visual-element--3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--nexus-color-glow), transparent);
    bottom: 0;
    left: 50%;
    animation-delay: 2s;
}

.jn-nexus-testimonials {
    padding: 6rem 0;
}

.jn-nexus-testimonials__header {
    text-align: center;
    margin-bottom: 4rem;
}

.jn-nexus-testimonials__title {
    font-family: 'Newsreader', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--nexus-color-text);
}

.jn-nexus-testimonials__subtitle {
    color: var(--nexus-color-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.jn-nexus-testimonials__container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.jn-nexus-testimonials__card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: var(--nexus-color-card);
    border-radius: var(--nexus-border-radius);
    padding: 2rem;
    border: 1px solid var(--nexus-color-border);
    transition: var(--nexus-transition);
    position: relative;
    overflow: hidden;
}

.jn-nexus-testimonials__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--nexus-shadow-soft);
    border-color: var(--nexus-color-accent);
}

.jn-nexus-testimonials__card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Newsreader', serif;
    font-size: 4rem;
    color: var(--nexus-color-accent);
    opacity: 0.1;
}

.jn-nexus-testimonials__card-top {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.jn-nexus-testimonials__card-top img {
    width: 100%;
    max-width: 70px;
    height: 100%;
    max-height: 70px;
    border-radius: 50%;
    border: 2px solid var(--nexus-color-accent);
}

.jn-nexus-testimonials__card-info {
    flex: 1;
}

.jn-nexus-testimonials__card-name {
    font-family: 'Newsreader', serif;
    font-size: 1.1rem;
    color: var(--nexus-color-text);
    margin-bottom: 0.25rem;
}

.jn-nexus-testimonials__card-location {
    display: block;
    font-size: 0.85rem;
    color: var(--nexus-color-text-light);
    margin-bottom: 0.25rem;
}

.jn-nexus-testimonials__card-date {
    font-size: 0.8rem;
    color: var(--nexus-color-text-light);
    opacity: 0.7;
}

.jn-nexus-testimonials__card-content {
    position: relative;
    z-index: 1;
}

.jn-nexus-testimonials__card-text {
    color: var(--nexus-color-text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    min-height: 80px;
}

.jn-nexus-testimonials__card-rating {
    color: var(--nexus-color-warning);
    font-size: 1.2rem;
}

.jn-nexus-responsible {
    padding: 6rem 0;
    background: rgba(26, 26, 46, 0.5);
    border-radius: var(--nexus-border-radius-large);
    margin: 2rem 0;
}

.jn-nexus-responsible__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.jn-nexus-responsible__content {
    margin-bottom: 3rem;
}

.jn-nexus-responsible__title {
    font-family: 'Newsreader', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--nexus-color-text);
}

.jn-nexus-responsible__text {
    margin-bottom: 2rem;
}

.jn-nexus-responsible__text p {
    color: var(--nexus-color-text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.jn-nexus-responsible__link {
    color: var(--nexus-color-accent-light);
    text-decoration: none;
    transition: var(--nexus-transition);
}

.jn-nexus-responsible__link:hover {
    color: var(--nexus-color-glow);
    text-decoration: underline;
}

.jn-nexus-responsible__more-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--nexus-color-accent);
    text-decoration: none;
    border: 2px solid var(--nexus-color-accent);
    border-radius: var(--nexus-border-radius);
    font-weight: 500;
    transition: var(--nexus-transition);
}

.jn-nexus-responsible__more-link:hover {
    background: var(--nexus-color-accent);
    color: white;
    transform: translateY(-2px);
}

.jn-nexus-responsible__partners {
    padding: 2rem;
    background: rgba(69, 69, 92, 0.5);
    border-radius: var(--nexus-border-radius);
}

.jn-nexus-responsible__partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.jn-nexus-responsible__partner-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--nexus-transition);
}

.jn-nexus-responsible__partner-logos img {
    width: 120px;
    height: 65px;
    object-fit: contain;
    filter: grayscale(0);
    opacity: 0.9;
    transition: var(--nexus-transition);
}

.jn-nexus-responsible__partner-logos a:hover img {
    filter: grayscale(80%);
    opacity: 1;
    transform: scale(1.05);
}

.jn-nexus-responsible__age-restriction {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--nexus-color-warning), #ff7b25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.jn-nexus-contact {
    padding: 6rem 0;
}

.jn-nexus-contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.jn-nexus-contact__visual {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.jn-nexus-contact__animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.jn-nexus-contact__animation-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.2;
    animation: float 8s ease-in-out infinite;
}

.jn-nexus-contact__animation-circle--1 {
    width: 150px;
    height: 150px;
    background: var(--nexus-color-accent);
    top: 0;
    left: 10%;
    animation-delay: 0s;
}

.jn-nexus-contact__animation-circle--2 {
    width: 100px;
    height: 100px;
    background: var(--nexus-color-accent-light);
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.jn-nexus-contact__animation-circle--3 {
    width: 80px;
    height: 80px;
    background: var(--nexus-color-glow);
    bottom: 0;
    left: 50%;
    animation-delay: 2s;
}

.jn-nexus-contact__title {
    font-family: 'Newsreader', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--nexus-color-text);
}

.jn-nexus-contact__description {
    color: var(--nexus-color-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.jn-nexus-contact__form-container {
    background: var(--nexus-color-card);
    border-radius: var(--nexus-border-radius-large);
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid var(--nexus-color-border);
}

.jn-nexus-contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.jn-nexus-contact__form-group {
    display: flex;
    flex-direction: column;
}

.jn-nexus-contact__input-wrapper {
    position: relative;
}

.jn-nexus-contact__input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--nexus-color-text-light);
    font-size: 1.2rem;
    transition: var(--nexus-transition);
}

.jn-nexus-contact__input,
.jn-nexus-contact__textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(10, 10, 20, 0.5);
    border: 1px solid var(--nexus-color-border);
    border-radius: var(--nexus-border-radius);
    color: var(--nexus-color-text);
    font-family: 'Public Sans', sans-serif;
    font-size: 1rem;
    transition: var(--nexus-transition);
}

.jn-nexus-contact__textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 1rem;
}

.jn-nexus-contact__input:focus,
.jn-nexus-contact__textarea:focus {
    outline: none;
    border-color: var(--nexus-color-accent);
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

.jn-nexus-contact__input:focus + .jn-nexus-contact__input-icon {
    color: var(--nexus-color-accent);
}

.jn-nexus-contact__input.error,
.jn-nexus-contact__textarea.error {
    border-color: var(--nexus-color-error);
}

.jn-nexus-contact__input.valid,
.jn-nexus-contact__textarea.valid {
    border-color: var(--nexus-color-success);
}

.jn-nexus-contact__error {
    color: var(--nexus-color-error);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    min-height: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.jn-nexus-contact__error.show {
    opacity: 1;
}

.jn-nexus-contact__form-group--checkbox {
    margin-top: 1rem;
}

.jn-nexus-contact__checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.jn-nexus-contact__checkbox {
    width: 20px;
    height: 20px;
    margin-top: 0.25rem;
    flex-shrink: 0;
    cursor: pointer;
}

.jn-nexus-contact__checkbox-label {
    color: var(--nexus-color-text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
}

.jn-nexus-contact__checkbox-label a {
    color: var(--nexus-color-accent-light);
    text-decoration: none;
}

.jn-nexus-contact__checkbox-label a:hover {
    text-decoration: underline;
}

.jn-nexus-contact__submit {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--nexus-color-accent), var(--nexus-color-accent-light));
    color: white;
    border: none;
    border-radius: var(--nexus-border-radius);
    font-family: 'Public Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--nexus-transition);
    margin-top: 1rem;
}

.jn-nexus-contact__submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--nexus-shadow-medium);
}

.jn-nexus-contact__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.jn-nexus-contact__info {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.jn-nexus-contact__info-block {
    flex: 1;
    min-width: 240px;
    max-width: 400px;
    padding: 2rem;
    background: var(--nexus-color-card);
    border-radius: var(--nexus-border-radius);
    border: 1px solid var(--nexus-color-border);
}

.jn-nexus-contact__info-title {
    font-family: 'Newsreader', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--nexus-color-text);
}

.jn-nexus-contact__info-text {
    color: var(--nexus-color-text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.jn-nexus-contact__info-link {
    color: var(--nexus-color-accent-light);
    text-decoration: none;
    transition: var(--nexus-transition);
}

.jn-nexus-contact__info-link:hover {
    color: var(--nexus-color-glow);
    text-decoration: underline;
}

.jn-nexus-contact__info-note {
    font-size: 0.9rem;
    color: var(--nexus-color-text-light);
    opacity: 0.7;
    font-style: italic;
}

.jn-nexus-footer {
    background: rgba(10, 10, 20, 0.9);
    border-top: 1px solid var(--nexus-color-border);
    margin-top: 6rem;
    padding: 3rem 2rem 1.5rem;
}

.jn-nexus-footer__top {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.jn-nexus-footer__brand {
    flex: 1;
    min-width: 250px;
}

.jn-nexus-footer__logo-link {
    display: inline-block;
    text-decoration: none;
    color: var(--nexus-color-text);
    font-family: 'Newsreader', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: var(--nexus-transition);
}

.jn-nexus-footer__logo-link:hover {
    color: var(--nexus-color-glow);
}

.jn-nexus-footer__tagline {
    color: var(--nexus-color-text-light);
    font-size: 0.9rem;
}

.jn-nexus-footer__navigation {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.jn-nexus-footer__nav-column {
    flex: 1;
    min-width: 180px;
}

.jn-nexus-footer__nav-title {
    font-family: 'Newsreader', serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--nexus-color-text);
}

.jn-nexus-footer__nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.jn-nexus-footer__nav-item {
    display: flex;
}

.jn-nexus-footer__nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--nexus-color-text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--nexus-transition);
}

.jn-nexus-footer__nav-link:hover {
    color: var(--nexus-color-text);
    transform: translateX(5px);
}

.jn-nexus-footer__nav-link i {
    font-size: 1.1rem;
    color: var(--nexus-color-accent);
}

.jn-nexus-footer__bottom {
    border-top: 1px solid var(--nexus-color-border);
    padding-top: 1.5rem;
    text-align: center;
}

.jn-nexus-footer__copyright {
    color: var(--nexus-color-text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.jn-nexus-footer__legal {
    color: var(--nexus-color-text-light);
    font-size: 0.85rem;
    opacity: 0.7;
}

.jn-scroll-progress {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.jn-scroll-progress__track {
    width: 4px;
    height: 150px;
    background: rgba(42, 42, 74, 0.5);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.jn-scroll-progress__bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--nexus-color-accent), var(--nexus-color-glow));
    border-radius: 2px;
    transition: height 0.3s ease;
}

.jn-scroll-progress__controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--nexus-color-card);
    border-radius: var(--nexus-border-radius);
    padding: 1rem;
    border: 1px solid var(--nexus-color-border);
}

.jn-scroll-progress__button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--nexus-color-deep);
    border: 1px solid var(--nexus-color-border);
    color: var(--nexus-color-text);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--nexus-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.jn-scroll-progress__button:hover {
    background: var(--nexus-color-accent);
    color: white;
    transform: scale(1.1);
}

.jn-scroll-progress__percentage {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--nexus-color-text);
    min-width: 40px;
    text-align: center;
}

.jn-cookie-notification-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--nexus-color-card);
    border-top: 1px solid var(--nexus-color-border);
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.jn-cookie-notification-bar.show {
    transform: translateY(0);
}

.jn-cookie-notification-bar__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.jn-cookie-notification-bar__content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.jn-cookie-notification-bar__text {
    flex: 1;
    min-width: 220px;
    color: var(--nexus-color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.jn-cookie-notification-bar__link {
    color: var(--nexus-color-accent-light);
    text-decoration: none;
}

.jn-cookie-notification-bar__link:hover {
    text-decoration: underline;
}

.jn-cookie-notification-bar__actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.jn-cookie-notification-bar__accept,
.jn-cookie-notification-bar__reject {
    padding: 0.75rem 1.5rem;
    border-radius: var(--nexus-border-radius);
    font-family: 'Public Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--nexus-transition);
    border: none;
}

.jn-cookie-notification-bar__accept {
    background: linear-gradient(135deg, var(--nexus-color-accent), var(--nexus-color-accent-light));
    color: white;
}

.jn-cookie-notification-bar__accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--nexus-shadow-soft);
}

.jn-cookie-notification-bar__reject {
    background: transparent;
    color: var(--nexus-color-text-light);
    border: 1px solid var(--nexus-color-border);
}

.jn-cookie-notification-bar__reject:hover {
    background: rgba(255, 71, 87, 0.1);
    color: var(--nexus-color-error);
    border-color: var(--nexus-color-error);
}

.jn-age-verification-overlay {
    position: fixed;
    bottom: 1rem;
    right: 0;
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.jn-age-verification-overlay.show {
    transform: translateX(0);
}

.jn-age-verification-overlay__container {
    max-width: 400px;
    background: var(--nexus-color-card);
    border-radius: var(--nexus-border-radius-large);
    padding: 2rem;
    border: 1px solid var(--nexus-color-border);
    box-shadow: var(--nexus-shadow-medium);
}

.jn-age-confirmation-dialog {
    text-align: center;
}

.jn-age-confirmation-dialog__icon {
    font-size: 3rem;
    color: var(--nexus-color-accent);
    margin-bottom: 1.5rem;
}

.jn-age-confirmation-dialog__title {
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--nexus-color-text);
}

.jn-age-confirmation-dialog__text {
    color: var(--nexus-color-text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.jn-age-confirmation-dialog__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.jn-age-confirmation-dialog__confirm,
.jn-age-confirmation-dialog__decline {
    padding: 1rem;
    border-radius: var(--nexus-border-radius);
    font-family: 'Public Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--nexus-transition);
    border: none;
}

.jn-age-confirmation-dialog__confirm {
    background: linear-gradient(135deg, var(--nexus-color-accent), var(--nexus-color-accent-light));
    color: white;
}

.jn-age-confirmation-dialog__confirm:hover {
    transform: translateY(-2px);
    box-shadow: var(--nexus-shadow-soft);
}

.jn-age-confirmation-dialog__decline {
    background: transparent;
    color: var(--nexus-color-text-light);
    border: 1px solid var(--nexus-color-border);
}

.jn-age-confirmation-dialog__decline:hover {
    background: rgba(255, 71, 87, 0.1);
    color: var(--nexus-color-error);
    border-color: var(--nexus-color-error);
}

.jn-age-confirmation-dialog__note {
    font-size: 0.85rem;
    color: var(--nexus-color-text-light);
    opacity: 0.7;
}

.jn-age-confirmation-dialog__note a {
    color: var(--nexus-color-accent-light);
    text-decoration: none;
}

.jn-age-confirmation-dialog__note a:hover {
    text-decoration: underline;
}

.jn-feedback-modal-window {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1003;
}

.jn-feedback-modal-window.show {
    display: block;
}

.jn-contact-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 20, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.jn-contact-form-overlay__container {
    max-width: 500px;
    width: 90%;
    background: var(--nexus-color-card);
    border-radius: var(--nexus-border-radius-large);
    overflow: hidden;
    border: 1px solid var(--nexus-color-border);
    transform: translateY(20px);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideUp {
    from { transform: translateY(20px); }
    to { transform: translateY(0); }
}

.jn-contact-form-overlay__content {
    padding: 3rem;
    position: relative;
}

.jn-contact-form-overlay__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--nexus-color-text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--nexus-transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.jn-contact-form-overlay__close:hover {
    color: var(--nexus-color-error);
    background: rgba(255, 71, 87, 0.1);
}

.jn-contact-form-overlay__success {
    text-align: center;
}

.jn-contact-form-overlay__success-icon {
    font-size: 4rem;
    color: var(--nexus-color-success);
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.jn-contact-form-overlay__success-title {
    font-family: 'Newsreader', serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--nexus-color-text);
}

.jn-contact-form-overlay__success-text {
    color: var(--nexus-color-text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.jn-contact-form-overlay__success-close {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--nexus-color-accent), var(--nexus-color-accent-light));
    color: white;
    border: none;
    border-radius: var(--nexus-border-radius);
    font-family: 'Public Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--nexus-transition);
}

.jn-contact-form-overlay__success-close:hover {
    transform: translateY(-2px);
    box-shadow: var(--nexus-shadow-soft);
}

@media (max-width: 1024px) {
    .jn-nexus-main {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .jn-nexus-hero__title {
        font-size: 3rem;
    }
    
    .jn-nexus-features__grid {
        gap: 1.5rem;
    }
    
    .jn-nexus-games__grid {
        gap: 1.5rem;
    }
    
    .jn-nexus-testimonials__container {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .jn-nexus-header__container {
        padding: 1rem;
    }
    
    .jn-nexus-header__navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--nexus-color-card);
        padding: 1rem;
        border-top: 1px solid var(--nexus-color-border);
    }
    
    .jn-nexus-header__navigation.active {
        display: block;
    }
    
    .jn-nexus-header__nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .jn-nexus-header__nav-item {
        text-align: center;
    }
    
    .jn-nexus-header__menu-toggle {
        display: block;
    }
    
    .jn-nexus-header__menu-toggle.active .jn-nexus-header__menu-line--top {
        transform: rotate(45deg) translate(4px, 4px);
    }
    
    .jn-nexus-header__menu-toggle.active .jn-nexus-header__menu-line--middle {
        opacity: 0;
    }
    
    .jn-nexus-header__menu-toggle.active .jn-nexus-header__menu-line--bottom {
        transform: rotate(-45deg) translate(-3px, 4px);
    }
    
    .jn-nexus-hero {
        padding: 4rem 0;
        min-height: 60vh;
    }
    
    .jn-nexus-hero__title {
        font-size: 2.5rem;
    }
    
    .jn-nexus-hero__subtitle {
        font-size: 1.1rem;
    }
    
    .jn-nexus-about,
    .jn-nexus-features,
    .jn-nexus-games,
    .jn-nexus-faq,
    .jn-nexus-welcome,
    .jn-nexus-testimonials,
    .jn-nexus-responsible,
    .jn-nexus-contact {
        padding: 4rem 0;
    }
    
    .jn-nexus-about__container,
    .jn-nexus-welcome__content {
        gap: 2rem;
        padding: 0 0.3rem;
    }
    
    .jn-nexus-about__stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .jn-nexus-contact__form-container {
        padding: 2rem;
    }
    
    .jn-nexus-footer__top {
        gap: 2rem;
    }
    
    .jn-nexus-footer__navigation {
        gap: 2rem;
    }
    
    .jn-scroll-progress {
        right: 1rem;
        bottom: 1rem;
    }
    
    .jn-cookie-notification-bar__container {
        padding: 1.5rem;
    }
    
    .jn-cookie-notification-bar__content {
        flex-direction: column;
        text-align: center;
    }
    
    .jn-age-verification-overlay__container {
        max-width: 90%;
        padding: 1.5rem;
    }

    .jn-nexus-contact__info-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .jn-nexus-main {
        padding-left: 0.2rem;
        padding-right: 0.2rem;
    }
    
    .jn-nexus-header__container {
        padding: 0.75rem;
    }
    
    .jn-nexus-hero {
        padding: 3rem 0;
    }
    
    .jn-nexus-hero__title {
        font-size: 2rem;
    }
    
    .jn-nexus-hero__subtitle {
        font-size: 1rem;
    }
    
    .jn-nexus-hero__cta-button {
        padding: 0.875rem 2rem;
    }
    
    .jn-nexus-about__title,
    .jn-nexus-features__title,
    .jn-nexus-games__title,
    .jn-nexus-faq__title,
    .jn-nexus-welcome__title,
    .jn-nexus-testimonials__title,
    .jn-nexus-responsible__title,
    .jn-nexus-contact__title {
        font-size: 2rem;
    }
    
    .jn-nexus-about,
    .jn-nexus-features,
    .jn-nexus-games,
    .jn-nexus-faq,
    .jn-nexus-welcome,
    .jn-nexus-testimonials,
    .jn-nexus-responsible,
    .jn-nexus-contact {
        padding: 3rem 0;
    }
    
    .jn-nexus-features__card,
    .jn-nexus-games__card,
    .jn-nexus-testimonials__card {
        min-width: 100%;
    }
    
    .jn-nexus-contact__form-container {
        padding: 1.5rem;
    }
    
    .jn-nexus-contact__info-block {
        min-width: 100%;
        padding: 1.5rem;
    }
    
    .jn-nexus-footer {
        padding: 2rem 1rem 1rem;
    }
    
    .jn-nexus-footer__nav-column {
        min-width: 100%;
    }
    
    .jn-scroll-progress {
        right: 0.5rem;
        bottom: 0.5rem;
    }
    
    .jn-scroll-progress__controls {
        padding: 0.75rem;
    }
    
    .jn-cookie-notification-bar__actions {
        width: 100%;
    }
    
    .jn-cookie-notification-bar__accept,
    .jn-cookie-notification-bar__reject {
        flex: 1;
    }
    
    .jn-contact-form-overlay__content {
        padding: 2rem;
    }
    
    .jn-contact-form-overlay__success-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 320px) {
    .jn-nexus-hero__title {
        font-size: 1.75rem;
    }
    
    .jn-nexus-hero__subtitle {
        font-size: 0.95rem;
    }
    
    .jn-nexus-hero__cta-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .jn-nexus-about__image-tag {
        font-size: 0.8rem;
        padding: 0.375rem 0.75rem;
    }
    
    .jn-nexus-contact__input,
    .jn-nexus-contact__textarea {
        padding: 0.875rem 0.875rem 0.875rem 2.5rem;
        font-size: 0.95rem;
    }
    
    .jn-nexus-contact__input-icon {
        left: 0.75rem;
        font-size: 1.1rem;
    }
    
    .jn-cookie-notification-bar__container {
        padding: 1rem;
    }
    
    .jn-age-verification-overlay__container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .jn-nexus-hero__decoration-circle--1,
    .jn-nexus-hero__decoration-circle--2,
    .jn-nexus-welcome__visual-element--1,
    .jn-nexus-welcome__visual-element--2,
    .jn-nexus-welcome__visual-element--3,
    .jn-nexus-contact__animation-circle--1,
    .jn-nexus-contact__animation-circle--2,
    .jn-nexus-contact__animation-circle--3 {
        animation: none;
        transition: none;
        transform: none;
    }
    
    .jn-nexus-features__card:hover,
    .jn-nexus-games__card:hover,
    .jn-nexus-testimonials__card:hover,
    .jn-nexus-hero__cta-button:hover,
    .jn-nexus-games__card-link:hover,
    .jn-nexus-contact__submit:hover:not(:disabled),
    .jn-nexus-footer__nav-link:hover,
    .jn-nexus-scroll-progress__button:hover,
    .jn-cookie-notification-bar__accept:hover,
    .jn-cookie-notification-bar__reject:hover,
    .jn-age-confirmation-dialog__confirm:hover,
    .jn-age-confirmation-dialog__decline:hover,
    .jn-contact-form-overlay__success-close:hover {
        transform: none;
    }
}

.jnpage-privacy-main {
    background: linear-gradient(135deg, #0a0a14 0%, #15152a 100%);
    min-height: 100vh;
    padding: 15rem 0 2rem;
}

.jnpage-privacy-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.jnpage-privacy-header {
    position: relative;
    padding: 4rem 0;
    text-align: center;
    overflow: hidden;
}

.jnpage-privacy-header__decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.jnpage-privacy-header__circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: jnpage-privacy-float 12s ease-in-out infinite;
}

.jnpage-privacy-header__circle--1 {
    width: 300px;
    height: 300px;
    background: #6a11cb;
    top: -100px;
    left: 10%;
    animation-delay: 0s;
}

.jnpage-privacy-header__circle--2 {
    width: 200px;
    height: 200px;
    background: #2575fc;
    top: 50%;
    right: 15%;
    animation-delay: 4s;
}

.jnpage-privacy-header__circle--3 {
    width: 150px;
    height: 150px;
    background: #00d2ff;
    bottom: -50px;
    left: 50%;
    animation-delay: 8s;
}

@keyframes jnpage-privacy-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.jnpage-privacy-header__title {
    font-family: 'Newsreader', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #e0e0ff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #e0e0ff, #a0a0cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.jnpage-privacy-header__subtitle {
    font-size: 1.25rem;
    color: #a0a0cc;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.jnpage-privacy-header__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.jnpage-privacy-header__date,
.jnpage-privacy-header__version {
    padding: 0.5rem 1.5rem;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #2a2a4a;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #a0a0cc;
}

.jnpage-privacy-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 2rem 0;
}

.jnpage-privacy-sidebar {
    flex: 0 0 300px;
}

.jnpage-privacy-sidebar__sticky {
    position: sticky;
    top: 2rem;
    background: rgba(26, 26, 46, 0.7);
    border: 1px solid #2a2a4a;
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.jnpage-privacy-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.jnpage-privacy-sidebar__nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #a0a0cc;
    position: relative;
    overflow: hidden;
}

.jnpage-privacy-sidebar__nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(106, 17, 203, 0.1), transparent);
    transition: left 0.6s ease;
}

.jnpage-privacy-sidebar__nav-item:hover::before {
    left: 100%;
}

.jnpage-privacy-sidebar__nav-item:hover {
    background: rgba(106, 17, 203, 0.1);
    color: #e0e0ff;
    transform: translateX(5px);
}

.jnpage-privacy-sidebar__nav-item.active {
    background: linear-gradient(90deg, rgba(106, 17, 203, 0.2), rgba(37, 117, 252, 0.1));
    color: #e0e0ff;
    border-left: 4px solid #6a11cb;
}

.jnpage-privacy-sidebar__nav-icon {
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.jnpage-privacy-sidebar__nav-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.jnpage-privacy-sidebar__nav-item.active .jnpage-privacy-sidebar__nav-icon::before {
    opacity: 1;
}

.jnpage-privacy-sidebar__nav-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

.jnpage-privacy-sidebar__update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #2a2a4a;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.jnpage-privacy-sidebar__update-indicator {
    width: 12px;
    height: 12px;
    background: #00c896;
    border-radius: 50%;
    position: relative;
    animation: jnpage-privacy-pulse 2s infinite;
}

@keyframes jnpage-privacy-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.jnpage-privacy-sidebar__update p {
    color: #a0a0cc;
    font-size: 0.85rem;
}

.jnpage-privacy-articles {
    flex: 1;
    min-width: 240px;
}

.jnpage-privacy-article {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #2a2a4a;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    display: none;
    animation: jnpage-privacy-fadeIn 0.6s ease forwards;
}

.jnpage-privacy-article.active {
    display: block;
}

@keyframes jnpage-privacy-fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.jnpage-privacy-article__header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2a2a4a;
}

.jnpage-privacy-article__number {
    font-family: 'Newsreader', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #6a11cb;
    line-height: 1;
}

.jnpage-privacy-article__title {
    font-family: 'Newsreader', serif;
    font-size: 2rem;
    color: #e0e0ff;
    line-height: 1.3;
}

.jnpage-privacy-article__content {
    color: #a0a0cc;
    line-height: 1.7;
}

.jnpage-privacy-article__text-block {
    margin-bottom: 2rem;
}

.jnpage-privacy-article__text-block p {
    margin-bottom: 1rem;
}

.jnpage-privacy-article__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.jnpage-privacy-article__list-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.jnpage-privacy-article__list-marker {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.25rem;
    position: relative;
}

.jnpage-privacy-article__list-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.jnpage-privacy-article__list-content h3 {
    color: #e0e0ff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Newsreader', serif;
}

.jnpage-privacy-article__list-content p {
    color: #a0a0cc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.jnpage-privacy-article__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.jnpage-privacy-article__grid-item {
    flex: 1;
    min-width: 250px;
    background: rgba(10, 10, 20, 0.5);
    border: 1px solid #2a2a4a;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.jnpage-privacy-article__grid-item:hover {
    transform: translateY(-5px);
    border-color: #6a11cb;
}

.jnpage-privacy-article__grid-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
}

.jnpage-privacy-article__grid-icon--1 {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.2), rgba(106, 17, 203, 0.1));
}

.jnpage-privacy-article__grid-icon--2 {
    background: linear-gradient(135deg, rgba(37, 117, 252, 0.2), rgba(37, 117, 252, 0.1));
}

.jnpage-privacy-article__grid-icon--3 {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.2), rgba(0, 210, 255, 0.1));
}

.jnpage-privacy-article__grid-icon--4 {
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.2), rgba(0, 200, 150, 0.1));
}

.jnpage-privacy-article__grid-item h3 {
    color: #e0e0ff;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-family: 'Newsreader', serif;
}

.jnpage-privacy-article__grid-item p {
    color: #a0a0cc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.jnpage-privacy-article__security {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.jnpage-privacy-article__security-layer {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 15px;
    border: 1px solid #2a2a4a;
}

.jnpage-privacy-article__security-level {
    margin-bottom: 1rem;
}

.jnpage-privacy-article__security-number {
    display: block;
    font-family: 'Newsreader', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #00d2ff;
    margin-bottom: 0.25rem;
}

.jnpage-privacy-article__security-label {
    font-size: 0.9rem;
    color: #a0a0cc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jnpage-privacy-article__security-layer p {
    color: #a0a0cc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.jnpage-privacy-article__note {
    padding: 1.5rem;
    background: rgba(106, 17, 203, 0.05);
    border-left: 4px solid #6a11cb;
    border-radius: 8px;
    margin-top: 2rem;
}

.jnpage-privacy-article__note p {
    color: #a0a0cc;
    font-style: italic;
}

.jnpage-privacy-article__rights {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 2rem 0;
}

.jnpage-privacy-article__rights-column {
    flex: 1;
    min-width: 250px;
}

.jnpage-privacy-article__rights-column h3 {
    color: #e0e0ff;
    font-family: 'Newsreader', serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #2a2a4a;
}

.jnpage-privacy-article__rights-list {
    list-style: none;
}

.jnpage-privacy-article__rights-list li {
    color: #a0a0cc;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(42, 42, 74, 0.3);
    position: relative;
    padding-left: 1.5rem;
}

.jnpage-privacy-article__rights-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00c896;
    font-weight: bold;
}

.jnpage-privacy-article__process {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 15px;
    border: 1px solid #2a2a4a;
}

.jnpage-privacy-article__process h3 {
    color: #e0e0ff;
    font-family: 'Newsreader', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.jnpage-privacy-article__deletion-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.jnpage-privacy-article__deletion-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 12px;
    border: 1px solid #2a2a4a;
    transition: transform 0.3s ease;
}

.jnpage-privacy-article__deletion-step:hover {
    transform: translateX(10px);
    border-color: #6a11cb;
}

.jnpage-privacy-article__step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.jnpage-privacy-article__step-content h3 {
    color: #e0e0ff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Newsreader', serif;
}

.jnpage-privacy-article__step-content p {
    color: #a0a0cc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.jnpage-privacy-article__retention {
    padding: 1.5rem;
    background: rgba(255, 71, 87, 0.05);
    border-left: 4px solid #ff4757;
    border-radius: 8px;
    margin-top: 2rem;
}

.jnpage-privacy-article__retention h3 {
    color: #e0e0ff;
    font-family: 'Newsreader', serif;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.jnpage-privacy-article__retention p {
    color: #a0a0cc;
    font-size: 0.95rem;
}

.jnpage-privacy-article__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 2rem 0;
}

.jnpage-privacy-article__contact-method {
    flex: 1;
    min-width: 300px;
}

.jnpage-privacy-article__contact-method h3 {
    color: #e0e0ff;
    font-family: 'Newsreader', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.jnpage-privacy-article__contact-detail {
    padding: 1.5rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 12px;
    border: 1px solid #2a2a4a;
}

.jnpage-privacy-article__contact-link {
    display: block;
    color: #2575fc;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.jnpage-privacy-article__contact-link:hover {
    color: #00d2ff;
    text-decoration: underline;
}

.jnpage-privacy-article__response-timeline {
    position: relative;
    margin: 2rem 0;
    padding-left: 2rem;
}

.jnpage-privacy-article__response-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #6a11cb, #2575fc);
}

.jnpage-privacy-article__timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.jnpage-privacy-article__timeline-dot {
    position: absolute;
    left: -9px;
    top: 0;
    width: 16px;
    height: 16px;
    background: #6a11cb;
    border-radius: 50%;
    border: 3px solid #0a0a14;
}

.jnpage-privacy-article__timeline-content h4 {
    color: #e0e0ff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Newsreader', serif;
}

.jnpage-privacy-article__timeline-content p {
    color: #a0a0cc;
    font-size: 0.95rem;
}

.jnpage-privacy-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #2a2a4a;
    text-align: center;
}

.jnpage-privacy-footer__summary {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.3);
    border-radius: 15px;
    border: 1px solid #2a2a4a;
}

.jnpage-privacy-footer__summary p {
    color: #a0a0cc;
    line-height: 1.7;
    font-size: 1.1rem;
}

.jnpage-privacy-footer__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.jnpage-privacy-footer__print,
.jnpage-privacy-footer__accept {
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-family: 'Public Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.jnpage-privacy-footer__print {
    background: transparent;
    color: #a0a0cc;
    border: 2px solid #2a2a4a;
}

.jnpage-privacy-footer__print:hover {
    background: rgba(106, 17, 203, 0.1);
    color: #e0e0ff;
    border-color: #6a11cb;
}

.jnpage-privacy-footer__accept {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
}

.jnpage-privacy-footer__accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(106, 17, 203, 0.3);
}

@media (max-width: 1024px) {
    .jnpage-privacy-container {
        padding: 0 1.5rem;
    }
    
    .jnpage-privacy-header {
        padding: 3rem 0;
    }
    
    .jnpage-privacy-header__title {
        font-size: 3rem;
    }
    
    .jnpage-privacy-content {
        gap: 2rem;
    }
    
    .jnpage-privacy-sidebar {
        flex: 0 0 250px;
    }
}

@media (max-width: 768px) {
    .jnpage-privacy-header__title {
        font-size: 2.5rem;
    }
    
    .jnpage-privacy-header__subtitle {
        font-size: 1.1rem;
    }
    
    .jnpage-privacy-content {
        flex-direction: column;
    }
    
    .jnpage-privacy-sidebar {
        flex: none;
        width: 100%;
    }
    
    .jnpage-privacy-sidebar__sticky {
        position: static;
    }
    
    .jnpage-privacy-sidebar__nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .jnpage-privacy-sidebar__nav-item {
        flex: 1;
        min-width: 150px;
        justify-content: center;
        text-align: center;
    }
    
    .jnpage-privacy-sidebar__nav-icon {
        display: none;
    }
    
    .jnpage-privacy-article {
        padding: 2rem;
    }
    
    .jnpage-privacy-article__header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .jnpage-privacy-article__title {
        font-size: 1.75rem;
    }
    
    .jnpage-privacy-article__grid-item,
    .jnpage-privacy-article__security-layer,
    .jnpage-privacy-article__rights-column,
    .jnpage-privacy-article__contact-method {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .jnpage-privacy-container {
        padding: 0 0.8rem;
    }
    
    .jnpage-privacy-header {
        padding: 2rem 0;
    }
    
    .jnpage-privacy-header__title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .jnpage-privacy-header__subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .jnpage-privacy-header__meta {
        gap: 1rem;
    }
    
    .jnpage-privacy-header__date,
    .jnpage-privacy-header__version {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .jnpage-privacy-article {
        padding: 1.5rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    .jnpage-privacy-article__header {
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .jnpage-privacy-article__number {
        font-size: 2.5rem;
    }
    
    .jnpage-privacy-article__title {
        font-size: 1.5rem;
    }
    
    .jnpage-privacy-article__contact-link {
        font-size: 0.9rem;
        word-break: break-all;
    }
    
    .jnpage-privacy-footer__summary {
        padding: 1rem 0.8rem;
    }
    
    .jnpage-privacy-footer__print,
    .jnpage-privacy-footer__accept {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .jnpage-privacy-sidebar__nav-item {
        min-width: 100%;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .jnpage-privacy-article__list-item,
    .jnpage-privacy-article__deletion-step {
        padding: 1rem 0.8rem;
    }
    
    .jnpage-privacy-article__grid-item,
    .jnpage-privacy-article__security-layer,
    .jnpage-privacy-article__process,
    .jnpage-privacy-article__contact-detail {
        padding: 1rem 0.8rem;
    }
}

@media (max-width: 320px) {
    .jnpage-privacy-header__title {
        font-size: 1.75rem;
    }
    
    .jnpage-privacy-header__subtitle {
        font-size: 0.95rem;
    }
    
    .jnpage-privacy-article__title {
        font-size: 1.3rem;
    }
    
    .jnpage-privacy-article__contact-link {
        font-size: 0.8rem;
    }
    
    .jnpage-privacy-sidebar__nav-item span {
        font-size: 0.85rem;
    }
}

.jnpage-terms-main {
    background: linear-gradient(180deg, #0a0a14 0%, #1a1a2e 100%);
    min-height: 100vh;
    padding: 15rem 0 2rem;
}

.jnpage-terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.jnpage-terms-hero {
    position: relative;
    padding: 6rem 0;
    margin-bottom: 4rem;
    overflow: hidden;
}

.jnpage-terms-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.jnpage-terms-hero__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(106, 17, 203, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(37, 117, 252, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 80%, rgba(0, 210, 255, 0.1) 2px, transparent 2px);
    background-size: 50px 50px;
}

.jnpage-terms-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: jnpage-terms-glow-pulse 8s ease-in-out infinite;
}

.jnpage-terms-hero__glow--1 {
    width: 400px;
    height: 400px;
    background: #6a11cb;
    top: -200px;
    left: -100px;
}

.jnpage-terms-hero__glow--2 {
    width: 300px;
    height: 300px;
    background: #2575fc;
    bottom: -150px;
    right: -100px;
    animation-delay: 2s;
}

@keyframes jnpage-terms-glow-pulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.1); }
}

.jnpage-terms-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.jnpage-terms-hero__badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(106, 17, 203, 0.2);
    border: 1px solid #6a11cb;
    border-radius: 25px;
    margin-bottom: 2rem;
}

.jnpage-terms-hero__badge span {
    color: #a0a0cc;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.jnpage-terms-hero__title {
    font-family: 'Newsreader', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #e0e0ff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #e0e0ff, #6a11cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.jnpage-terms-hero__description {
    font-size: 1.25rem;
    color: #a0a0cc;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.jnpage-terms-hero__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.jnpage-terms-hero__stat {
    text-align: center;
}

.jnpage-terms-hero__stat-value {
    font-family: 'Newsreader', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #6a11cb;
    margin-bottom: 0.5rem;
}

.jnpage-terms-hero__stat-label {
    color: #a0a0cc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jnpage-terms-toc {
    margin-bottom: 4rem;
}

.jnpage-terms-toc__header {
    text-align: center;
    margin-bottom: 3rem;
}

.jnpage-terms-toc__title {
    font-family: 'Newsreader', serif;
    font-size: 2.5rem;
    color: #e0e0ff;
    margin-bottom: 0.75rem;
}

.jnpage-terms-toc__subtitle {
    color: #a0a0cc;
    font-size: 1.1rem;
}

.jnpage-terms-toc__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.jnpage-terms-toc__card {
    background: rgba(26, 26, 46, 0.7);
    border: 1px solid #2a2a4a;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: block;
}

.jnpage-terms-toc__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(106, 17, 203, 0.1), transparent);
    transition: left 0.6s ease;
}

.jnpage-terms-toc__card:hover::before {
    left: 100%;
}

.jnpage-terms-toc__card:hover {
    transform: translateY(-10px);
    border-color: #6a11cb;
    box-shadow: 0 20px 40px rgba(106, 17, 203, 0.15);
}

.jnpage-terms-toc__card-number {
    font-family: 'Newsreader', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #6a11cb;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.jnpage-terms-toc__card-title {
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    color: #e0e0ff;
    margin-bottom: 0.75rem;
}

.jnpage-terms-toc__card-desc {
    color: #a0a0cc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.jnpage-terms-toc__card-arrow {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid #6a11cb;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    color: #6a11cb;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.jnpage-terms-toc__card:hover .jnpage-terms-toc__card-arrow {
    background: #6a11cb;
    color: white;
    transform: translateX(5px);
}

.jnpage-terms-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.jnpage-terms-section {
    position: relative;
}

.jnpage-terms-section__anchor {
    position: absolute;
    left: -100px;
    top: 0;
    width: 80px;
    height: 80px;
    background: rgba(106, 17, 203, 0.1);
    border: 2px solid #6a11cb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-15deg);
}

.jnpage-terms-section__anchor span {
    color: #e0e0ff;
    font-family: 'Newsreader', serif;
    font-weight: 600;
    font-size: 0.9rem;
    transform: rotate(15deg);
}

.jnpage-terms-section__content {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #2a2a4a;
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.jnpage-terms-section__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb, #2575fc, #00d2ff);
}

.jnpage-terms-section__header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.jnpage-terms-section__icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    flex-shrink: 0;
}

.jnpage-terms-section__icon--access {
    background: linear-gradient(135deg, #6a11cb, rgba(106, 17, 203, 0.3));
}

.jnpage-terms-section__icon--conduct {
    background: linear-gradient(135deg, #2575fc, rgba(37, 117, 252, 0.3));
}

.jnpage-terms-section__icon--content {
    background: linear-gradient(135deg, #00d2ff, rgba(0, 210, 255, 0.3));
}

.jnpage-terms-section__icon--property {
    background: linear-gradient(135deg, #00c896, rgba(0, 200, 150, 0.3));
}

.jnpage-terms-section__icon--liability {
    background: linear-gradient(135deg, #ff9a3c, rgba(255, 154, 60, 0.3));
}

.jnpage-terms-section__icon--changes {
    background: linear-gradient(135deg, #8b5cf6, rgba(139, 92, 246, 0.3));
}

.jnpage-terms-section__title {
    font-family: 'Newsreader', serif;
    font-size: 2rem;
    color: #e0e0ff;
    flex: 1;
    min-width: 300px;
}

.jnpage-terms-section__status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(10, 10, 20, 0.5);
    border: 1px solid #2a2a4a;
    border-radius: 20px;
    color: #a0a0cc;
    font-size: 0.9rem;
}

.jnpage-terms-section__status-indicator {
    width: 8px;
    height: 8px;
    background: #00c896;
    border-radius: 50%;
    animation: jnpage-terms-blink 2s infinite;
}

@keyframes jnpage-terms-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.jnpage-terms-section__body {
    color: #a0a0cc;
    line-height: 1.7;
}

.jnpage-terms-section__intro {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.jnpage-terms-section__requirements {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.jnpage-terms-section__requirement {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 15px;
    border: 1px solid #2a2a4a;
    transition: transform 0.3s ease;
}

.jnpage-terms-section__requirement:hover {
    transform: translateX(10px);
    border-color: #6a11cb;
}

.jnpage-terms-section__req-number {
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #6a11cb;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(106, 17, 203, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jnpage-terms-section__req-content h3 {
    color: #e0e0ff;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-family: 'Newsreader', serif;
}

.jnpage-terms-section__req-content p {
    color: #a0a0cc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.jnpage-terms-section__req-note {
    padding: 1rem;
    background: rgba(106, 17, 203, 0.05);
    border-left: 3px solid #6a11cb;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #a0a0cc;
}

.jnpage-terms-section__warning {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 71, 87, 0.05);
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 15px;
    margin-top: 2rem;
}

.jnpage-terms-section__warning-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 71, 87, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.jnpage-terms-section__warning-icon::before,
.jnpage-terms-section__warning-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #ff4757;
}

.jnpage-terms-section__warning-icon::before {
    width: 16px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.jnpage-terms-section__warning-icon::after {
    width: 2px;
    height: 16px;
    transform: translate(-50%, -50%);
}

.jnpage-terms-section__warning-content h3 {
    color: #ff4757;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-family: 'Newsreader', serif;
}

.jnpage-terms-section__warning-content p {
    color: #a0a0cc;
    line-height: 1.6;
}

.jnpage-terms-section__conduct-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 2.5rem 0;
}

.jnpage-terms-section__conduct-category h3 {
    color: #e0e0ff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #2a2a4a;
    font-family: 'Newsreader', serif;
}

.jnpage-terms-section__conduct-list {
    list-style: none;
}

.jnpage-terms-section__conduct-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(42, 42, 74, 0.3);
    color: #a0a0cc;
    position: relative;
    padding-left: 1.5rem;
}

.jnpage-terms-section__conduct-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6a11cb;
    font-size: 1.2rem;
}

.jnpage-terms-section__enforcement {
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 15px;
    border: 1px solid #2a2a4a;
}

.jnpage-terms-section__enforcement h3 {
    color: #e0e0ff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-family: 'Newsreader', serif;
}

.jnpage-terms-section__enforcement-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.jnpage-terms-section__enforcement-step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.jnpage-terms-section__step-marker {
    width: 12px;
    height: 12px;
    background: #ff9a3c;
    border-radius: 50%;
    flex-shrink: 0;
}

.jnpage-terms-section__enforcement-step p {
    color: #a0a0cc;
    font-size: 0.95rem;
}

.jnpage-terms-section__enforcement-note {
    color: #a0a0cc;
    font-size: 0.9rem;
    font-style: italic;
}

.jnpage-terms-section__enforcement-note a {
    color: #2575fc;
    text-decoration: none;
}

.jnpage-terms-section__enforcement-note a:hover {
    text-decoration: underline;
}

.jnpage-terms-section__content-terms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.jnpage-terms-section__content-term {
    padding: 2rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 15px;
    border: 1px solid #2a2a4a;
}

.jnpage-terms-section__content-term h3 {
    color: #e0e0ff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: 'Newsreader', serif;
}

.jnpage-terms-section__content-term p {
    color: #a0a0cc;
    line-height: 1.6;
}

.jnpage-terms-section__content-model {
    margin-top: 2.5rem;
}

.jnpage-terms-section__content-model h3 {
    color: #e0e0ff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Newsreader', serif;
}

.jnpage-terms-section__model-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.jnpage-terms-section__model-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 200, 150, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 200, 150, 0.2);
}

.jnpage-terms-section__feature-check {
    width: 20px;
    height: 20px;
    background: #00c896;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.jnpage-terms-section__feature-check::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 6px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
}

.jnpage-terms-section__model-feature p {
    color: #a0a0cc;
    font-size: 0.95rem;
}

.jnpage-terms-section__ip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 2.5rem 0;
}

.jnpage-terms-section__ip-category h3 {
    color: #e0e0ff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-family: 'Newsreader', serif;
}

.jnpage-terms-section__ip-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.jnpage-terms-section__ip-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 8px;
}

.jnpage-terms-section__ip-marker {
    width: 8px;
    height: 8px;
    background: #6a11cb;
    border-radius: 50%;
    flex-shrink: 0;
}

.jnpage-terms-section__ip-item span {
    color: #a0a0cc;
    font-size: 0.95rem;
}

.jnpage-terms-section__ip-notice {
    padding: 2rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 15px;
    border: 1px solid #2a2a4a;
    margin-top: 2rem;
}

.jnpage-terms-section__ip-notice h3 {
    color: #e0e0ff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: 'Newsreader', serif;
}

.jnpage-terms-section__ip-notice p {
    color: #a0a0cc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.jnpage-terms-section__ip-notice a {
    color: #2575fc;
    text-decoration: none;
}

.jnpage-terms-section__ip-notice a:hover {
    text-decoration: underline;
}

.jnpage-terms-section__ip-timeline {
    padding: 1rem;
    background: rgba(106, 17, 203, 0.05);
    border-left: 3px solid #6a11cb;
    border-radius: 8px;
    margin-top: 1rem;
}

.jnpage-terms-section__ip-timeline p {
    color: #a0a0cc;
    font-size: 0.9rem;
    margin: 0;
}

.jnpage-terms-section__liability-disclaimers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.jnpage-terms-section__liability-disclaimer {
    padding: 2rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 15px;
    border: 1px solid #2a2a4a;
}

.jnpage-terms-section__liability-disclaimer h3 {
    color: #e0e0ff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: 'Newsreader', serif;
}

.jnpage-terms-section__liability-disclaimer p {
    color: #a0a0cc;
    line-height: 1.6;
}

.jnpage-terms-section__liability-limits {
    padding: 2rem;
    background: rgba(255, 71, 87, 0.05);
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
}

.jnpage-terms-section__liability-limits h3 {
    color: #ff4757;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Newsreader', serif;
}

.jnpage-terms-section__limit-display {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: rgba(10, 10, 20, 0.5);
    border: 2px solid #ff4757;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.jnpage-terms-section__limit-value {
    font-family: 'Newsreader', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #ff4757;
    margin-bottom: 0.5rem;
}

.jnpage-terms-section__limit-label {
    color: #a0a0cc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jnpage-terms-section__liability-limits p {
    color: #a0a0cc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.jnpage-terms-section__limit-exclusions {
    padding: 1rem;
    background: rgba(255, 71, 87, 0.1);
    border-radius: 10px;
    margin-top: 1.5rem;
}

.jnpage-terms-section__limit-exclusions p {
    color: #a0a0cc;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

.jnpage-terms-section__change-process {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.jnpage-terms-section__change-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 12px;
    border: 1px solid #2a2a4a;
    transition: transform 0.3s ease;
}

.jnpage-terms-section__change-step:hover {
    transform: translateX(10px);
    border-color: #8b5cf6;
}

.jnpage-terms-section__change-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.jnpage-terms-section__change-content h3 {
    color: #e0e0ff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Newsreader', serif;
}

.jnpage-terms-section__change-content p {
    color: #a0a0cc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.jnpage-terms-section__acceptance {
    padding: 2rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 15px;
    border: 1px solid #2a2a4a;
    margin-top: 2rem;
}

.jnpage-terms-section__acceptance h3 {
    color: #e0e0ff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: 'Newsreader', serif;
}

.jnpage-terms-section__acceptance p {
    color: #a0a0cc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.jnpage-terms-section__acceptance-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.jnpage-terms-section__acceptance-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(106, 17, 203, 0.05);
    border-radius: 8px;
}

.jnpage-terms-section__option-marker {
    width: 12px;
    height: 12px;
    background: #6a11cb;
    border-radius: 50%;
    flex-shrink: 0;
}

.jnpage-terms-section__acceptance-option p {
    color: #a0a0cc;
    font-size: 0.95rem;
    margin: 0;
}

.jnpage-terms-section__contact {
    padding: 2rem;
    background: rgba(37, 117, 252, 0.05);
    border: 1px solid rgba(37, 117, 252, 0.3);
    border-radius: 15px;
    margin-top: 2rem;
}

.jnpage-terms-section__contact h3 {
    color: #e0e0ff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: 'Newsreader', serif;
}

.jnpage-terms-section__contact p {
    color: #a0a0cc;
    line-height: 1.6;
}

.jnpage-terms-section__contact a {
    color: #2575fc;
    text-decoration: none;
}

.jnpage-terms-section__contact a:hover {
    text-decoration: underline;
}

.jnpage-terms-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #2a2a4a;
}

.jnpage-terms-footer__summary {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.5);
    border-radius: 20px;
    border: 1px solid #2a2a4a;
}

.jnpage-terms-footer__summary-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 15px;
    flex-shrink: 0;
    position: relative;
}

.jnpage-terms-footer__summary-icon::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.jnpage-terms-footer__summary-content h3 {
    color: #e0e0ff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Newsreader', serif;
}

.jnpage-terms-footer__summary-content p {
    color: #a0a0cc;
    line-height: 1.7;
    font-size: 1.1rem;
}

.jnpage-terms-footer__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.jnpage-terms-footer__scroll-top {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    border: none;
    border-radius: 25px;
    font-family: 'Public Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jnpage-terms-footer__scroll-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(106, 17, 203, 0.3);
}

.jnpage-terms-footer__timestamp {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #a0a0cc;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .jnpage-terms-container {
        padding: 0 1.5rem;
    }
    
    .jnpage-terms-hero__title {
        font-size: 3rem;
    }
    
    .jnpage-terms-section__anchor {
        position: static;
        margin-bottom: 1.5rem;
        transform: none;
    }
    
    .jnpage-terms-section__anchor span {
        transform: none;
    }
}

@media (max-width: 768px) {
    .jnpage-terms-hero {
        padding: 4rem 0;
    }
    
    .jnpage-terms-hero__title {
        font-size: 2.5rem;
    }
    
    .jnpage-terms-hero__description {
        font-size: 1.1rem;
    }
    
    .jnpage-terms-toc__grid {
        grid-template-columns: 1fr;
    }
    
    .jnpage-terms-section__content {
        padding: 2rem;
    }
    
    .jnpage-terms-section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .jnpage-terms-section__title {
        min-width: auto;
        font-size: 1.75rem;
    }
    
    .jnpage-terms-section__conduct-grid,
    .jnpage-terms-section__content-terms,
    .jnpage-terms-section__liability-disclaimers {
        grid-template-columns: 1fr;
    }
    
    .jnpage-terms-section__ip-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .jnpage-terms-footer__summary {
        flex-direction: column;
        text-align: center;
    }
    
    .jnpage-terms-footer__summary-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .jnpage-terms-container {
        padding: 0 0.8rem;
    }
    
    .jnpage-terms-hero {
        padding: 3rem 0;
    }
    
    .jnpage-terms-hero__title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .jnpage-terms-hero__description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .jnpage-terms-hero__stats {
        gap: 1.5rem;
    }
    
    .jnpage-terms-hero__stat-value {
        font-size: 2rem;
    }
    
    .jnpage-terms-toc__title {
        font-size: 2rem;
    }
    
    .jnpage-terms-section__content {
        padding: 1.5rem 0.8rem;
    }
    
    .jnpage-terms-section__title {
        font-size: 1.5rem;
    }
    
    .jnpage-terms-section__requirements,
    .jnpage-terms-section__change-process {
        gap: 1rem;
    }
    
    .jnpage-terms-section__requirement,
    .jnpage-terms-section__change-step,
    .jnpage-terms-section__warning,
    .jnpage-terms-section__enforcement,
    .jnpage-terms-section__content-term,
    .jnpage-terms-section__liability-disclaimer,
    .jnpage-terms-section__liability-limits,
    .jnpage-terms-section__acceptance,
    .jnpage-terms-section__contact,
    .jnpage-terms-section__ip-notice {
        padding: 1rem 0.8rem;
    }
    
    .jnpage-terms-section__model-features {
        grid-template-columns: 1fr;
    }
    
    .jnpage-terms-footer__summary {
        padding: 1rem 0.8rem;
    }
    
    .jnpage-terms-footer__actions {
        flex-direction: column;
        text-align: center;
    }
    
    .jnpage-terms-footer__scroll-top {
        width: 100%;
    }

    .jnpage-terms-section__ip-notice a,
    .jnpage-terms-section__contact a {
        font-size: 0.8rem;
    }

    .jnpage-terms-section__limit-display {
        padding: 1.5rem 0.2rem;
    }
}

@media (max-width: 320px) {
    .jnpage-terms-hero__title {
        font-size: 1.75rem;
    }
    
    .jnpage-terms-hero__description {
        font-size: 0.95rem;
    }
    
    .jnpage-terms-section__title {
        font-size: 1.3rem;
    }
    
    .jnpage-terms-section__requirement,
    .jnpage-terms-section__change-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .jnpage-terms-section__req-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

.jnpage-responsible-main {
    background: linear-gradient(180deg, #0a0a14 0%, #15152a 100%);
    min-height: 100vh;
    padding: 15rem 0 2rem;
}

.jnpage-responsible-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.jnpage-responsible-header {
    position: relative;
    padding: 5rem 0;
    margin-bottom: 3rem;
    overflow: hidden;
}

.jnpage-responsible-header__visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.jnpage-responsible-header__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.2;
    animation: jnpage-responsible-orb-float 15s ease-in-out infinite;
}

.jnpage-responsible-header__orb--1 {
    width: 300px;
    height: 300px;
    background: #00c896;
    top: -100px;
    left: 10%;
    animation-delay: 0s;
}

.jnpage-responsible-header__orb--2 {
    width: 200px;
    height: 200px;
    background: #2575fc;
    top: 50%;
    right: 15%;
    animation-delay: 5s;
}

.jnpage-responsible-header__orb--3 {
    width: 150px;
    height: 150px;
    background: #6a11cb;
    bottom: -50px;
    left: 50%;
    animation-delay: 10s;
}

@keyframes jnpage-responsible-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.jnpage-responsible-header__waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(0, 200, 150, 0.1));
    border-radius: 50% 50% 0 0;
}

.jnpage-responsible-header__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.jnpage-responsible-header__title {
    font-family: 'Newsreader', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #e0e0ff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #00c896, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.jnpage-responsible-header__subtitle {
    font-size: 1.25rem;
    color: #a0a0cc;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.jnpage-responsible-header__age-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 71, 87, 0.1);
    border: 2px solid #ff4757;
    border-radius: 30px;
    animation: jnpage-responsible-pulse 2s infinite;
}

@keyframes jnpage-responsible-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.01); }
}

.jnpage-responsible-header__age-number {
    font-family: 'Newsreader', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ff4757;
}

.jnpage-responsible-header__age-label {
    color: #a0a0cc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jnpage-responsible-navigation {
    margin-bottom: 3rem;
    position: relative;
    top: 2rem;
    z-index: 10;
}

.jnpage-responsible-navigation__container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #2a2a4a;
    border-radius: 20px;
    padding: 1rem;
}

.jnpage-responsible-navigation__tab {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 15px;
    color: #a0a0cc;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jnpage-responsible-navigation__tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 150, 0.1), transparent);
    transition: left 0.6s ease;
}

.jnpage-responsible-navigation__tab:hover::before {
    left: 100%;
}

.jnpage-responsible-navigation__tab:hover {
    color: #e0e0ff;
    border-color: #2a2a4a;
    transform: translateY(-3px);
}

.jnpage-responsible-navigation__tab.active {
    background: rgba(0, 200, 150, 0.1);
    border-color: #00c896;
    color: #e0e0ff;
}

.jnpage-responsible-navigation__tab-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.jnpage-responsible-navigation__tab.active .jnpage-responsible-navigation__tab-icon {
    opacity: 0.4;
}

.jnpage-responsible-navigation__tab span {
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
}

.jnpage-responsible-content {
    min-height: 600px;
}

.jnpage-responsible-tab {
    display: none;
    animation: jnpage-responsible-fadeIn 0.6s ease forwards;
}

.jnpage-responsible-tab.active {
    display: block;
}

@keyframes jnpage-responsible-fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.jnpage-responsible-tab__header {
    text-align: center;
    margin-bottom: 3rem;
}

.jnpage-responsible-tab__title {
    font-family: 'Newsreader', serif;
    font-size: 2.5rem;
    color: #e0e0ff;
    margin-bottom: 1rem;
}

.jnpage-responsible-tab__description {
    color: #a0a0cc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.jnpage-responsible-tab__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.jnpage-responsible-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #2a2a4a;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.jnpage-responsible-card:hover {
    transform: translateY(-10px);
    border-color: #00c896;
}

.jnpage-responsible-card__visual {
    position: relative;
    height: 180px;
    background: rgba(10, 10, 20, 0.3);
    overflow: hidden;
}

.jnpage-responsible-card__number {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: 'Newsreader', serif;
    font-size: 3rem;
    font-weight: 600;
    color: rgba(0, 200, 150, 0.1);
}

.jnpage-responsible-card__graphic {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-radius: 50% 0 0 0;
    opacity: 0.3;
}

.jnpage-responsible-card__graphic--time {
    background: linear-gradient(135deg, #00c896, transparent);
}

.jnpage-responsible-card__graphic--balance {
    background: linear-gradient(135deg, #2575fc, transparent);
}

.jnpage-responsible-card__graphic--awareness {
    background: linear-gradient(135deg, #6a11cb, transparent);
}

.jnpage-responsible-card__graphic--social {
    background: linear-gradient(135deg, #ff9a3c, transparent);
}

.jnpage-responsible-card__graphic--goals {
    background: linear-gradient(135deg, #8b5cf6, transparent);
}

.jnpage-responsible-card__graphic--limits {
    background: linear-gradient(135deg, #00d2ff, transparent);
}

.jnpage-responsible-card__content {
    padding: 2rem;
}

.jnpage-responsible-card__title {
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    color: #e0e0ff;
    margin-bottom: 1rem;
}

.jnpage-responsible-card__description {
    color: #a0a0cc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.jnpage-responsible-card__tip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 200, 150, 0.05);
    border-left: 3px solid #00c896;
    border-radius: 8px;
}

.jnpage-responsible-card__tip-icon {
    width: 20px;
    height: 20px;
    background: #00c896;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.jnpage-responsible-card__tip-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.jnpage-responsible-card__tip p {
    color: #a0a0cc;
    font-size: 0.9rem;
    margin: 0;
}

.jnpage-responsible-resources {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.jnpage-responsible-resource {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #2a2a4a;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.jnpage-responsible-resource:hover {
    transform: translateX(10px);
    border-color: #00c896;
}

.jnpage-responsible-resource__logo {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    position: relative;
}

.jnpage-responsible-resource__logo-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 20px;
    transform: rotate(5deg);
}

.jnpage-responsible-resource__logo span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: 'Newsreader', serif;
    font-size: 2rem;
    font-weight: 600;
}

.jnpage-responsible-resource__content {
    flex: 1;
}

.jnpage-responsible-resource__title {
    font-family: 'Newsreader', serif;
    font-size: 1.75rem;
    color: #e0e0ff;
    margin-bottom: 1rem;
}

.jnpage-responsible-resource__description {
    color: #a0a0cc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.jnpage-responsible-resource__details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.jnpage-responsible-resource__detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.jnpage-responsible-resource__detail-icon {
    width: 12px;
    height: 12px;
    background: #00c896;
    border-radius: 50%;
    flex-shrink: 0;
}

.jnpage-responsible-resource__detail span {
    color: #a0a0cc;
    font-size: 0.9rem;
}

.jnpage-responsible-resource__link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.jnpage-responsible-resource__link:hover {
    transform: translateY(-2px);
}

.jnpage-responsible-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.jnpage-responsible-tool {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #2a2a4a;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.jnpage-responsible-tool:hover {
    transform: translateY(-5px);
    border-color: #00c896;
}

.jnpage-responsible-tool__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(10, 10, 20, 0.3);
    border-bottom: 1px solid #2a2a4a;
}

.jnpage-responsible-tool__icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    flex-shrink: 0;
}

.jnpage-responsible-tool__icon--timer {
    background: linear-gradient(135deg, #00c896, rgba(0, 200, 150, 0.3));
}

.jnpage-responsible-tool__icon--limit {
    background: linear-gradient(135deg, #2575fc, rgba(37, 117, 252, 0.3));
}

.jnpage-responsible-tool__icon--break {
    background: linear-gradient(135deg, #ff9a3c, rgba(255, 154, 60, 0.3));
}

.jnpage-responsible-tool__icon--self {
    background: linear-gradient(135deg, #6a11cb, rgba(106, 17, 203, 0.3));
}

.jnpage-responsible-tool__icon--cool {
    background: linear-gradient(135deg, #00d2ff, rgba(0, 210, 255, 0.3));
}

.jnpage-responsible-tool__icon--support {
    background: linear-gradient(135deg, #8b5cf6, rgba(139, 92, 246, 0.3));
}

.jnpage-responsible-tool__title {
    font-family: 'Newsreader', serif;
    font-size: 1.25rem;
    color: #e0e0ff;
}

.jnpage-responsible-tool__body {
    padding: 1.5rem;
}

.jnpage-responsible-tool__description {
    color: #a0a0cc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.jnpage-responsible-tool__settings {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.jnpage-responsible-tool__setting {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 8px;
}

.jnpage-responsible-tool__setting span:first-child {
    color: #e0e0ff;
    font-weight: 500;
}

.jnpage-responsible-tool__setting span:last-child {
    color: #a0a0cc;
    font-size: 0.9rem;
}

.jnpage-responsible-tool__configure {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Public Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.jnpage-responsible-tool__configure:hover {
    transform: translateY(-2px);
}

.jnpage-responsible-support__pathway {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.jnpage-responsible-support__step {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #2a2a4a;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.jnpage-responsible-support__step:hover {
    transform: translateX(10px);
    border-color: #00c896;
}

.jnpage-responsible-support__step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.jnpage-responsible-support__step-content {
    flex: 1;
}

.jnpage-responsible-support__step-content h3 {
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    color: #e0e0ff;
    margin-bottom: 1rem;
}

.jnpage-responsible-support__step-content p {
    color: #a0a0cc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.jnpage-responsible-support__indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.jnpage-responsible-support__indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 71, 87, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 71, 87, 0.2);
}

.jnpage-responsible-support__indicator-dot {
    width: 8px;
    height: 8px;
    background: #ff4757;
    border-radius: 50%;
}

.jnpage-responsible-support__indicator span {
    color: #a0a0cc;
    font-size: 0.9rem;
}

.jnpage-responsible-support__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.jnpage-responsible-support__action {
    padding: 0.75rem 1.5rem;
    background: rgba(0, 200, 150, 0.1);
    border: 1px solid #00c896;
    border-radius: 20px;
    color: #e0e0ff;
    font-family: 'Public Sans', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jnpage-responsible-support__action:hover {
    background: #00c896;
    transform: translateY(-2px);
}

.jnpage-responsible-support__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.jnpage-responsible-support__contact {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.jnpage-responsible-support__contact:hover {
    transform: translateY(-2px);
}

.jnpage-responsible-support__resources {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.jnpage-responsible-support__resource {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(37, 117, 252, 0.05);
    border: 1px solid rgba(37, 117, 252, 0.2);
    border-radius: 12px;
}

.jnpage-responsible-support__resource-icon {
    width: 20px;
    height: 20px;
    background: #2575fc;
    border-radius: 50%;
    position: relative;
}

.jnpage-responsible-support__resource-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.jnpage-responsible-support__resource span {
    color: #a0a0cc;
    font-size: 0.9rem;
}

.jnpage-responsible-support__emergency {
    padding: 2.5rem;
    background: rgba(255, 71, 87, 0.05);
    border: 2px solid #ff4757;
    border-radius: 20px;
}

.jnpage-responsible-support__emergency-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.jnpage-responsible-support__emergency-icon {
    width: 40px;
    height: 40px;
    background: #ff4757;
    border-radius: 50%;
    position: relative;
}

.jnpage-responsible-support__emergency-icon::before {
    content: '!';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.jnpage-responsible-support__emergency-header h3 {
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    color: #ff4757;
}

.jnpage-responsible-support__emergency-content p {
    color: #a0a0cc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.jnpage-responsible-support__emergency-contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.jnpage-responsible-support__emergency-contact {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 12px;
}

.jnpage-responsible-support__emergency-contact span:first-child {
    color: #e0e0ff;
    font-weight: 500;
}

.jnpage-responsible-support__emergency-contact span:last-child {
    color: #ff4757;
    font-weight: 500;
    font-size: 1.1rem;
}

.jnpage-responsible-education__category {
    margin-bottom: 3rem;
}

.jnpage-responsible-education__category-title {
    font-family: 'Newsreader', serif;
    font-size: 1.75rem;
    color: #e0e0ff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #2a2a4a;
}

.jnpage-responsible-education__materials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.jnpage-responsible-education__material {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #2a2a4a;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.jnpage-responsible-education__material:hover {
    transform: translateY(-5px);
    border-color: #00c896;
}

.jnpage-responsible-education__material-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 12px;
    flex-shrink: 0;
    position: relative;
}

.jnpage-responsible-education__material-icon::before {
    content: '📚';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
}

.jnpage-responsible-education__material-content {
    flex: 1;
}

.jnpage-responsible-education__material-content h4 {
    font-family: 'Newsreader', serif;
    font-size: 1.1rem;
    color: #e0e0ff;
    margin-bottom: 0.75rem;
}

.jnpage-responsible-education__material-content p {
    color: #a0a0cc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.jnpage-responsible-education__material-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 200, 150, 0.1);
    color: #00c896;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.jnpage-responsible-education__material-link:hover {
    background: #00c896;
    color: white;
    transform: translateY(-2px);
}

.jnpage-responsible-policy__commitments {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.jnpage-responsible-policy__commitment {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #2a2a4a;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.jnpage-responsible-policy__commitment:hover {
    transform: translateX(10px);
    border-color: #00c896;
}

.jnpage-responsible-policy__commitment-number {
    font-family: 'Newsreader', serif;
    font-size: 3rem;
    font-weight: 600;
    color: rgba(0, 200, 150, 0.2);
    flex-shrink: 0;
    width: 80px;
}

.jnpage-responsible-policy__commitment-content {
    flex: 1;
}

.jnpage-responsible-policy__commitment-content h3 {
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    color: #e0e0ff;
    margin-bottom: 1rem;
}

.jnpage-responsible-policy__commitment-content p {
    color: #a0a0cc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.jnpage-responsible-policy__commitment-metrics {
    display: flex;
    gap: 2rem;
}

.jnpage-responsible-policy__metric {
    text-align: center;
}

.jnpage-responsible-policy__metric-value {
    display: block;
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #00c896;
    margin-bottom: 0.25rem;
}

.jnpage-responsible-policy__metric-label {
    font-size: 0.85rem;
    color: #a0a0cc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jnpage-responsible-policy__contact {
    padding: 2.5rem;
    background: rgba(37, 117, 252, 0.05);
    border: 1px solid rgba(37, 117, 252, 0.3);
    border-radius: 20px;
}

.jnpage-responsible-policy__contact h3 {
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    color: #e0e0ff;
    margin-bottom: 1rem;
}

.jnpage-responsible-policy__contact p {
    color: #a0a0cc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.jnpage-responsible-policy__contact-details {
    padding: 1.5rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 15px;
}

.jnpage-responsible-policy__contact-email {
    display: block;
    color: #2575fc;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    text-decoration: none;
}

.jnpage-responsible-policy__contact-email:hover {
    text-decoration: underline;
}

.jnpage-responsible-policy__contact-details p {
    color: #a0a0cc;
    font-size: 0.9rem;
    margin: 0;
}

.jnpage-responsible-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #2a2a4a;
    text-align: center;
}

.jnpage-responsible-footer__message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.3);
    border-radius: 20px;
    border: 1px solid #2a2a4a;
}

.jnpage-responsible-footer__message-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.jnpage-responsible-footer__message-icon::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.jnpage-responsible-footer__message p {
    color: #a0a0cc;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
}

.jnpage-responsible-footer__actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.jnpage-responsible-footer__pledge,
.jnpage-responsible-footer__share {
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-family: 'Public Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.jnpage-responsible-footer__pledge {
    background: linear-gradient(135deg, #00c896, #00d4aa);
    color: white;
}

.jnpage-responsible-footer__pledge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 200, 150, 0.3);
}

.jnpage-responsible-footer__share {
    background: transparent;
    color: #a0a0cc;
    border: 2px solid #2a2a4a;
}

.jnpage-responsible-footer__share:hover {
    background: rgba(106, 17, 203, 0.1);
    color: #e0e0ff;
    border-color: #6a11cb;
}

@media (max-width: 1024px) {
    .jnpage-responsible-container {
        padding: 0 1.5rem;
    }
    
    .jnpage-responsible-header__title {
        font-size: 3rem;
    }
    
    .jnpage-responsible-tab__grid,
    .jnpage-responsible-tools {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .jnpage-responsible-header {
        padding: 3rem 0;
    }
    
    .jnpage-responsible-header__title {
        font-size: 2.5rem;
    }
    
    .jnpage-responsible-header__subtitle {
        font-size: 1.1rem;
    }
    
    .jnpage-responsible-navigation__container {
        flex-direction: column;
    }
    
    .jnpage-responsible-navigation__tab {
        min-width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .jnpage-responsible-tab__title {
        font-size: 2rem;
    }
    
    .jnpage-responsible-resource {
        flex-direction: column;
        text-align: center;
    }
    
    .jnpage-responsible-resource__logo {
        margin: 0 auto;
    }
    
    .jnpage-responsible-resource__details {
        justify-content: center;
    }
    
    .jnpage-responsible-support__step {
        flex-direction: column;
        text-align: center;
    }
    
    .jnpage-responsible-support__step-number {
        margin: 0 auto;
    }
    
    .jnpage-responsible-support__indicators,
    .jnpage-responsible-support__actions,
    .jnpage-responsible-support__contacts,
    .jnpage-responsible-support__resources {
        justify-content: center;
    }
    
    .jnpage-responsible-policy__commitment {
        flex-direction: column;
        text-align: center;
    }
    
    .jnpage-responsible-policy__commitment-number {
        width: auto;
    }
    
    .jnpage-responsible-policy__commitment-metrics {
        justify-content: center;
    }
    
    .jnpage-responsible-footer__message {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .jnpage-responsible-container {
        padding: 0 0.8rem;
    }
    
    .jnpage-responsible-header__title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .jnpage-responsible-header__subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .jnpage-responsible-header__age-badge {
        padding: 0.75rem 1.5rem;
    }
    
    .jnpage-responsible-tab__title {
        font-size: 1.75rem;
    }
    
    .jnpage-responsible-tab__description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .jnpage-responsible-tab__grid,
    .jnpage-responsible-tools,
    .jnpage-responsible-education__materials {
        grid-template-columns: 1fr;
    }
    
    .jnpage-responsible-card,
    .jnpage-responsible-resource,
    .jnpage-responsible-tool,
    .jnpage-responsible-support__step,
    .jnpage-responsible-policy__commitment,
    .jnpage-responsible-education__material {
        padding: 1.5rem 0.8rem;
    }
    
    .jnpage-responsible-card__visual {
        height: 150px;
    }
    
    .jnpage-responsible-card__number {
        font-size: 2.5rem;
    }
    
    .jnpage-responsible-resource__title {
        font-size: 1.5rem;
    }
    
    .jnpage-responsible-support__emergency {
        padding: 1.5rem 0.8rem;
    }
    
    .jnpage-responsible-policy__contact {
        padding: 1.5rem 0.8rem;
    }
    
    .jnpage-responsible-policy__contact-email {
        font-size: 0.9rem;
        word-break: break-all;
    }
    
    .jnpage-responsible-footer__message {
        padding: 1rem 0.8rem;
    }
    
    .jnpage-responsible-footer__message p {
        font-size: 1rem;
    }
    
    .jnpage-responsible-footer__pledge,
    .jnpage-responsible-footer__share {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
}

@media (max-width: 320px) {
    .jnpage-responsible-header__title {
        font-size: 1.75rem;
    }
    
    .jnpage-responsible-header__subtitle {
        font-size: 0.95rem;
    }
    
    .jnpage-responsible-tab__title {
        font-size: 1.5rem;
    }
    
    .jnpage-responsible-card__title,
    .jnpage-responsible-resource__title,
    .jnpage-responsible-tool__title {
        font-size: 1.25rem;
    }
    
    .jnpage-responsible-policy__contact-email {
        font-size: 0.8rem;
    }
}

.jnpage-cookies-main {
    background: linear-gradient(135deg, #0a0a14 0%, #1a1a2e 100%);
    min-height: 100vh;
    padding: 15rem 0 2rem;
}

.jnpage-cookies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.jnpage-cookies-header {
    position: relative;
    padding: 5rem 0;
    margin-bottom: 3rem;
    text-align: center;
    overflow: hidden;
}

.jnpage-cookies-header__animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.jnpage-cookies-header__cookie {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9a3c, #ff7b25);
    animation: jnpage-cookies-float 20s linear infinite;
}

.jnpage-cookies-header__cookie--1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.jnpage-cookies-header__cookie--2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    animation-duration: 20s;
}

.jnpage-cookies-header__cookie--3 {
    width: 50px;
    height: 50px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
    animation-duration: 22s;
}

@keyframes jnpage-cookies-float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(100px, 50px) rotate(90deg); }
    50% { transform: translate(50px, 100px) rotate(180deg); }
    75% { transform: translate(-50px, 50px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.jnpage-cookies-header__particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: jnpage-cookies-particle 15s linear infinite;
}

.jnpage-cookies-header__particle--1 {
    width: 10px;
    height: 10px;
    top: 30%;
    right: 20%;
    animation-delay: 0s;
}

.jnpage-cookies-header__particle--2 {
    width: 8px;
    height: 8px;
    top: 50%;
    left: 25%;
    animation-delay: 3s;
}

.jnpage-cookies-header__particle--3 {
    width: 12px;
    height: 12px;
    bottom: 40%;
    right: 30%;
    animation-delay: 7s;
}

@keyframes jnpage-cookies-particle {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(200px, -200px) scale(0); opacity: 0; }
}

.jnpage-cookies-header__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.jnpage-cookies-header__title {
    font-family: 'Newsreader', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #e0e0ff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ff9a3c, #ff7b25);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.jnpage-cookies-header__subtitle {
    font-size: 1.25rem;
    color: #a0a0cc;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.jnpage-cookies-header__controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.jnpage-cookies-header__accept-all,
.jnpage-cookies-header__customize {
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-family: 'Public Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.jnpage-cookies-header__accept-all {
    background: linear-gradient(135deg, #00c896, #00d4aa);
    color: white;
}

.jnpage-cookies-header__accept-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 200, 150, 0.3);
}

.jnpage-cookies-header__customize {
    background: transparent;
    color: #a0a0cc;
    border: 2px solid #2a2a4a;
}

.jnpage-cookies-header__customize:hover {
    background: rgba(106, 17, 203, 0.1);
    color: #e0e0ff;
    border-color: #6a11cb;
}

.jnpage-cookies-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.jnpage-cookies-summary__card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #2a2a4a;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.jnpage-cookies-summary__card:hover {
    transform: translateY(-5px);
}

.jnpage-cookies-summary__icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    flex-shrink: 0;
}

.jnpage-cookies-summary__icon--essential {
    background: linear-gradient(135deg, #ff4757, rgba(255, 71, 87, 0.3));
}

.jnpage-cookies-summary__icon--functional {
    background: linear-gradient(135deg, #6a11cb, rgba(106, 17, 203, 0.3));
}

.jnpage-cookies-summary__icon--analytical {
    background: linear-gradient(135deg, #2575fc, rgba(37, 117, 252, 0.3));
}

.jnpage-cookies-summary__content {
    flex: 1;
}

.jnpage-cookies-summary__title {
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    color: #e0e0ff;
    margin-bottom: 0.5rem;
}

.jnpage-cookies-summary__count {
    color: #ff9a3c;
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.jnpage-cookies-summary__description {
    color: #a0a0cc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.jnpage-cookies-categories {
    margin-bottom: 4rem;
}

.jnpage-cookies-categories__title {
    font-family: 'Newsreader', serif;
    font-size: 2.5rem;
    color: #e0e0ff;
    margin-bottom: 1rem;
    text-align: center;
}

.jnpage-cookies-categories__description {
    color: #a0a0cc;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.jnpage-cookies-category {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #2a2a4a;
    border-radius: 20px;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.jnpage-cookies-category:hover {
    transform: translateY(-3px);
    border-color: #6a11cb;
}

.jnpage-cookies-category__header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(10, 10, 20, 0.3);
    border-bottom: 1px solid #2a2a4a;
}

.jnpage-cookies-category__badge {
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jnpage-cookies-category__badge--essential {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border: 1px solid #ff4757;
}

.jnpage-cookies-category__badge--functional {
    background: rgba(106, 17, 203, 0.1);
    color: #6a11cb;
    border: 1px solid #6a11cb;
}

.jnpage-cookies-category__badge--analytical {
    background: rgba(37, 117, 252, 0.1);
    color: #2575fc;
    border: 1px solid #2575fc;
}

.jnpage-cookies-category__title {
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    color: #e0e0ff;
    flex: 1;
    min-width: 300px;
}

.jnpage-cookies-category__toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(10, 10, 20, 0.5);
    border-radius: 25px;
    border: 1px solid #2a2a4a;
}

.jnpage-cookies-category__toggle-switch {
    width: 40px;
    height: 20px;
    background: #2a2a4a;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.jnpage-cookies-category__toggle-switch::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: #a0a0cc;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.jnpage-cookies-category__toggle-switch.active {
    background: #00c896;
}

.jnpage-cookies-category__toggle-switch.active::before {
    background: white;
    transform: translateX(20px);
}

.jnpage-cookies-category__toggle span {
    color: #a0a0cc;
    font-size: 0.9rem;
}

.jnpage-cookies-category__content {
    padding: 2rem;
    color: #a0a0cc;
    line-height: 1.6;
}

.jnpage-cookies-category__description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.jnpage-cookies-category__details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.jnpage-cookies-category__detail h4 {
    color: #e0e0ff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: 'Newsreader', serif;
}

.jnpage-cookies-category__list {
    list-style: none;
}

.jnpage-cookies-category__list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(42, 42, 74, 0.3);
    color: #a0a0cc;
    position: relative;
    padding-left: 1.5rem;
}

.jnpage-cookies-category__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6a11cb;
    font-size: 1.2rem;
}

.jnpage-cookies-category__duration,
.jnpage-cookies-category__data,
.jnpage-cookies-category__scope {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.jnpage-cookies-category__duration-item,
.jnpage-cookies-category__data-item,
.jnpage-cookies-category__scope-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 8px;
}

.jnpage-cookies-category__duration-item span:first-child,
.jnpage-cookies-category__data-item span:first-child,
.jnpage-cookies-category__scope-item span:first-child {
    color: #e0e0ff;
    font-weight: 500;
}

.jnpage-cookies-category__duration-item span:last-child,
.jnpage-cookies-category__data-item span:last-child,
.jnpage-cookies-category__scope-item span:last-child {
    color: #a0a0cc;
    font-size: 0.9rem;
}

.jnpage-cookies-category__impact,
.jnpage-cookies-category__controls,
.jnpage-cookies-category__privacy {
    padding: 1.5rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 15px;
    margin-top: 2rem;
}

.jnpage-cookies-category__impact h4,
.jnpage-cookies-category__controls h4,
.jnpage-cookies-category__privacy h4 {
    color: #e0e0ff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: 'Newsreader', serif;
}

.jnpage-cookies-category__impact p,
.jnpage-cookies-category__privacy p {
    color: #a0a0cc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.jnpage-cookies-category__control-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.jnpage-cookies-category__control-button {
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-family: 'Public Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.jnpage-cookies-category__control-button--enable {
    background: linear-gradient(135deg, #00c896, #00d4aa);
    color: white;
}

.jnpage-cookies-category__control-button--enable:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
}

.jnpage-cookies-category__control-button--disable {
    background: transparent;
    color: #a0a0cc;
    border: 1px solid #2a2a4a;
}

.jnpage-cookies-category__control-button--disable:hover {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border-color: #ff4757;
}

.jnpage-cookies-category__control-button--custom {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
}

.jnpage-cookies-category__control-button--custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.jnpage-cookies-category__privacy-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.jnpage-cookies-category__privacy-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.jnpage-cookies-category__privacy-check {
    width: 20px;
    height: 20px;
    background: #00c896;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.jnpage-cookies-category__privacy-check::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.jnpage-cookies-category__privacy-feature span {
    color: #a0a0cc;
    font-size: 0.95rem;
}

.jnpage-cookies-management {
    margin-bottom: 4rem;
}

.jnpage-cookies-management__title {
    font-family: 'Newsreader', serif;
    font-size: 2.5rem;
    color: #e0e0ff;
    margin-bottom: 1rem;
    text-align: center;
}

.jnpage-cookies-management__description {
    color: #a0a0cc;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.jnpage-cookies-management__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.jnpage-cookies-management__section {
    padding: 2rem;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #2a2a4a;
    border-radius: 20px;
}

.jnpage-cookies-management__section-title {
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    color: #e0e0ff;
    margin-bottom: 1rem;
}

.jnpage-cookies-management__section-description {
    color: #a0a0cc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.jnpage-cookies-management__browsers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.jnpage-cookies-management__browser {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 15px;
}

.jnpage-cookies-management__browser-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    flex-shrink: 0;
}

.jnpage-cookies-management__browser-icon--chrome {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

.jnpage-cookies-management__browser-icon--firefox {
    background: linear-gradient(135deg, #ff7139, #ffcd02);
}

.jnpage-cookies-management__browser-icon--safari {
    background: linear-gradient(135deg, #1b73e8, #34a853);
}

.jnpage-cookies-management__browser-content h4 {
    color: #e0e0ff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.jnpage-cookies-management__browser-content p {
    color: #a0a0cc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.jnpage-cookies-management__platform-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.jnpage-cookies-management__control {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 15px;
}

.jnpage-cookies-management__control-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 10px;
    flex-shrink: 0;
    position: relative;
}

.jnpage-cookies-management__control-icon::before {
    content: '⚙️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
}

.jnpage-cookies-management__control-content h4 {
    color: #e0e0ff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.jnpage-cookies-management__control-content p {
    color: #a0a0cc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.jnpage-cookies-management__actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.jnpage-cookies-management__action {
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-family: 'Public Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.jnpage-cookies-management__action--save {
    background: linear-gradient(135deg, #00c896, #00d4aa);
    color: white;
}

.jnpage-cookies-management__action--save:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 200, 150, 0.3);
}

.jnpage-cookies-management__action--reset {
    background: transparent;
    color: #a0a0cc;
    border: 2px solid #2a2a4a;
}

.jnpage-cookies-management__action--reset:hover {
    background: rgba(106, 17, 203, 0.1);
    color: #e0e0ff;
    border-color: #6a11cb;
}

.jnpage-cookies-management__action--export {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
}

.jnpage-cookies-management__action--export:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(106, 17, 203, 0.3);
}

.jnpage-cookies-retention {
    margin-bottom: 4rem;
}

.jnpage-cookies-retention__title {
    font-family: 'Newsreader', serif;
    font-size: 2.5rem;
    color: #e0e0ff;
    margin-bottom: 1rem;
    text-align: center;
}

.jnpage-cookies-retention__description {
    color: #a0a0cc;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.jnpage-cookies-retention__timeline {
    position: relative;
    padding-left: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.jnpage-cookies-retention__timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #6a11cb, #2575fc, #00d2ff);
}

.jnpage-cookies-retention__period {
    position: relative;
    margin-bottom: 3rem;
}

.jnpage-cookies-retention__period-dot {
    position: absolute;
    left: -2.2rem;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid #0a0a14;
}

.jnpage-cookies-retention__period-dot--session {
    background: #ff4757;
}

.jnpage-cookies-retention__period-dot--short {
    background: #ff9a3c;
}

.jnpage-cookies-retention__period-dot--medium {
    background: #00d2ff;
}

.jnpage-cookies-retention__period-dot--long {
    background: #00c896;
}

.jnpage-cookies-retention__period-content {
    padding: 1.5rem;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #2a2a4a;
    border-radius: 15px;
}

.jnpage-cookies-retention__period-content h3 {
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    color: #e0e0ff;
    margin-bottom: 0.75rem;
}

.jnpage-cookies-retention__period-content p {
    color: #a0a0cc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.jnpage-cookies-retention__period-duration {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 8px;
}

.jnpage-cookies-retention__period-duration span:first-child {
    color: #e0e0ff;
    font-weight: 500;
}

.jnpage-cookies-retention__period-duration span:last-child {
    color: #a0a0cc;
    font-size: 0.9rem;
}

.jnpage-cookies-contact {
    margin-bottom: 4rem;
}

.jnpage-cookies-contact__title {
    font-family: 'Newsreader', serif;
    font-size: 2.5rem;
    color: #e0e0ff;
    margin-bottom: 1rem;
    text-align: center;
}

.jnpage-cookies-contact__description {
    color: #a0a0cc;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.jnpage-cookies-contact__methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.jnpage-cookies-contact__method {
    padding: 2rem;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #2a2a4a;
    border-radius: 20px;
}

.jnpage-cookies-contact__method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    position: relative;
}

.jnpage-cookies-contact__method-icon::before {
    content: '📧';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
}

.jnpage-cookies-contact__method-content h3 {
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    color: #e0e0ff;
    margin-bottom: 1rem;
}

.jnpage-cookies-contact__email {
    display: block;
    color: #2575fc;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    text-decoration: none;
    word-break: break-all;
}

.jnpage-cookies-contact__email:hover {
    text-decoration: underline;
}

.jnpage-cookies-contact__method-content p {
    color: #a0a0cc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.jnpage-cookies-contact__requirements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.jnpage-cookies-contact__requirement {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 8px;
}

.jnpage-cookies-contact__requirement-check {
    width: 16px;
    height: 16px;
    background: #00c896;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.jnpage-cookies-contact__requirement-check::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
}

.jnpage-cookies-contact__requirement span {
    color: #a0a0cc;
    font-size: 0.9rem;
}

.jnpage-cookies-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #2a2a4a;
    text-align: center;
}

.jnpage-cookies-footer__notice {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.3);
    border-radius: 20px;
    border: 1px solid #2a2a4a;
}

.jnpage-cookies-footer__notice p {
    color: #a0a0cc;
    line-height: 1.7;
    font-size: 1.1rem;
}

.jnpage-cookies-footer__meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: #a0a0cc;
    font-size: 0.9rem;
}

.jnpage-cookies-footer__version,
.jnpage-cookies-footer__date {
    padding: 0.5rem 1rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 15px;
}

.jnpage-cookies-footer__link {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.jnpage-cookies-footer__link:hover {
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .jnpage-cookies-container {
        padding: 0 1.5rem;
    }
    
    .jnpage-cookies-header__title {
        font-size: 3rem;
    }
    
    .jnpage-cookies-summary {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .jnpage-cookies-header {
        padding: 3rem 0;
    }
    
    .jnpage-cookies-header__title {
        font-size: 2.5rem;
    }
    
    .jnpage-cookies-header__subtitle {
        font-size: 1.1rem;
    }
    
    .jnpage-cookies-categories__title,
    .jnpage-cookies-management__title,
    .jnpage-cookies-retention__title,
    .jnpage-cookies-contact__title {
        font-size: 2rem;
    }
    
    .jnpage-cookies-category__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .jnpage-cookies-category__title {
        min-width: auto;
        font-size: 1.25rem;
    }
    
    .jnpage-cookies-management__grid {
        grid-template-columns: 1fr;
    }
    
    .jnpage-cookies-contact__methods {
        grid-template-columns: 1fr;
    }
    
    .jnpage-cookies-retention__timeline {
        padding-left: 2rem;
    }
    
    .jnpage-cookies-retention__timeline::before {
        left: 0.5rem;
    }
    
    .jnpage-cookies-retention__period-dot {
        left: -1.7rem;
    }
}

@media (max-width: 480px) {
    .jnpage-cookies-container {
        padding: 0 0.8rem;
    }
    
    .jnpage-cookies-header__title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .jnpage-cookies-header__subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .jnpage-cookies-header__accept-all,
    .jnpage-cookies-header__customize {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .jnpage-cookies-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .jnpage-cookies-summary__card {
        padding: 1.5rem 0.8rem;
    }
    
    .jnpage-cookies-categories__title,
    .jnpage-cookies-management__title,
    .jnpage-cookies-retention__title,
    .jnpage-cookies-contact__title {
        font-size: 1.75rem;
    }
    
    .jnpage-cookies-category__header,
    .jnpage-cookies-category__content {
        padding: 1.5rem 0.8rem;
    }
    
    .jnpage-cookies-category__details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .jnpage-cookies-category__impact,
    .jnpage-cookies-category__controls,
    .jnpage-cookies-category__privacy {
        padding: 1rem 0.8rem;
    }
    
    .jnpage-cookies-management__section {
        padding: 1.5rem 0.8rem;
    }
    
    .jnpage-cookies-management__browser,
    .jnpage-cookies-management__control {
        padding: 1rem 0.8rem;
    }
    
    .jnpage-cookies-management__actions {
        flex-direction: column;
    }
    
    .jnpage-cookies-management__action {
        width: 100%;
    }
    
    .jnpage-cookies-retention__period-content {
        padding: 1rem 0.8rem;
    }
    
    .jnpage-cookies-contact__method {
        padding: 1.5rem 0.8rem;
    }
    
    .jnpage-cookies-contact__email {
        font-size: 0.9rem;
    }
    
    .jnpage-cookies-footer__notice {
        padding: 1rem 0.8rem;
    }
    
    .jnpage-cookies-footer__notice p {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .jnpage-cookies-header__title {
        font-size: 1.75rem;
    }
    
    .jnpage-cookies-header__subtitle {
        font-size: 0.95rem;
    }
    
    .jnpage-cookies-categories__title,
    .jnpage-cookies-management__title,
    .jnpage-cookies-retention__title,
    .jnpage-cookies-contact__title {
        font-size: 1.5rem;
    }
    
    .jnpage-cookies-summary__card {
        flex-direction: column;
        text-align: center;
    }
    
    .jnpage-cookies-summary__icon {
        margin: 0 auto;
    }
    
    .jnpage-cookies-contact__email {
        font-size: 0.8rem;
    }
}

.jnpage-404-main {
    background: linear-gradient(135deg, #0a0a14 0%, #15152a 100%);
    min-height: 100vh;
    padding: 15rem 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jnpage-404-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.jnpage-404-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    z-index: 0;
    opacity: 0.1;
}

.jnpage-404-animation__orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(106, 17, 203, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.jnpage-404-animation__orbit--1 {
    width: 400px;
    height: 400px;
    animation: jnpage-404-orbit-rotate 30s linear infinite;
}

.jnpage-404-animation__orbit--2 {
    width: 300px;
    height: 300px;
    animation: jnpage-404-orbit-rotate 20s linear infinite reverse;
}

.jnpage-404-animation__orbit--3 {
    width: 200px;
    height: 200px;
    animation: jnpage-404-orbit-rotate 15s linear infinite;
}

@keyframes jnpage-404-orbit-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.jnpage-404-animation__particle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #6a11cb;
    border-radius: 50%;
    filter: blur(2px);
}

.jnpage-404-animation__central {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.jnpage-404-animation__central-glow {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(106, 17, 203, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: jnpage-404-pulse 4s ease-in-out infinite;
}

@keyframes jnpage-404-pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.jnpage-404-animation__central-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #6a11cb;
    border-radius: 50%;
    filter: blur(4px);
}

.jnpage-404-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.jnpage-404-code {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.jnpage-404-code__digit {
    font-family: 'Newsreader', serif;
    font-size: 8rem;
    font-weight: 600;
    line-height: 1;
    position: relative;
    animation: jnpage-404-digit-appear 1s ease-out forwards;
    opacity: 0;
}

.jnpage-404-code__digit--4 {
    color: #6a11cb;
    animation-delay: 0.2s;
}

.jnpage-404-code__digit--0 {
    color: #2575fc;
    animation-delay: 0.4s;
}

.jnpage-404-code__digit--4:last-child {
    color: #00d2ff;
    animation-delay: 0.6s;
}

@keyframes jnpage-404-digit-appear {
    0% { opacity: 0; transform: translateY(50px) scale(0.5); }
    70% { transform: translateY(-10px) scale(1.1); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.jnpage-404-title {
    font-family: 'Newsreader', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #e0e0ff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #e0e0ff, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: jnpage-404-title-appear 1s ease-out 0.8s forwards;
    opacity: 0;
}

@keyframes jnpage-404-title-appear {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.jnpage-404-description {
    font-size: 1.25rem;
    color: #a0a0cc;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    animation: jnpage-404-description-appear 1s ease-out 1s forwards;
    opacity: 0;
}

@keyframes jnpage-404-description-appear {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.jnpage-404-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    animation: jnpage-404-details-appear 1s ease-out 1.2s forwards;
    opacity: 0;
}

@keyframes jnpage-404-details-appear {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.jnpage-404-details__card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #2a2a4a;
    border-radius: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

.jnpage-404-details__card:hover {
    transform: translateY(-5px);
    border-color: #6a11cb;
}

.jnpage-404-details__icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    flex-shrink: 0;
    position: relative;
}

.jnpage-404-details__icon--location {
    background: linear-gradient(135deg, #6a11cb, rgba(106, 17, 203, 0.3));
}

.jnpage-404-details__icon--location::before {
    content: '📍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
}

.jnpage-404-details__icon--time {
    background: linear-gradient(135deg, #2575fc, rgba(37, 117, 252, 0.3));
}

.jnpage-404-details__icon--time::before {
    content: '⏰';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
}

.jnpage-404-details__content {
    flex: 1;
}

.jnpage-404-details__content h3 {
    font-family: 'Newsreader', serif;
    font-size: 1.25rem;
    color: #e0e0ff;
    margin-bottom: 0.75rem;
}

.jnpage-404-details__content p {
    color: #a0a0cc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.jnpage-404-suggestions {
    margin-bottom: 3rem;
    animation: jnpage-404-suggestions-appear 1s ease-out 1.4s forwards;
    opacity: 0;
}

@keyframes jnpage-404-suggestions-appear {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.jnpage-404-suggestions__title {
    font-family: 'Newsreader', serif;
    font-size: 2.5rem;
    color: #e0e0ff;
    margin-bottom: 1rem;
}

.jnpage-404-suggestions__description {
    color: #a0a0cc;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.jnpage-404-suggestions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.jnpage-404-suggestion {
    padding: 2rem;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #2a2a4a;
    border-radius: 20px;
    text-align: left;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jnpage-404-suggestion:hover {
    transform: translateY(-5px);
    border-color: #6a11cb;
}

.jnpage-404-suggestion::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(106, 17, 203, 0.1), transparent);
    transition: left 0.6s ease;
}

.jnpage-404-suggestion:hover::before {
    left: 100%;
}

.jnpage-404-suggestion__number {
    font-family: 'Newsreader', serif;
    font-size: 3rem;
    font-weight: 600;
    color: rgba(106, 17, 203, 0.2);
    margin-bottom: 1rem;
}

.jnpage-404-suggestion__content {
    position: relative;
    z-index: 1;
}

.jnpage-404-suggestion__content h3 {
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    color: #e0e0ff;
    margin-bottom: 0.75rem;
}

.jnpage-404-suggestion__content p {
    color: #a0a0cc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.jnpage-404-suggestion__link,
.jnpage-404-suggestion__copy,
.jnpage-404-suggestion__contact {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-family: 'Public Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.jnpage-404-suggestion__link {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
}

.jnpage-404-suggestion__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.jnpage-404-suggestion__copy {
    background: transparent;
    color: #a0a0cc;
    border: 1px solid #2a2a4a;
}

.jnpage-404-suggestion__copy:hover {
    background: rgba(37, 117, 252, 0.1);
    color: #2575fc;
    border-color: #2575fc;
}

.jnpage-404-suggestion__contact {
    background: linear-gradient(135deg, #00c896, #00d4aa);
    color: white;
}

.jnpage-404-suggestion__contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
}

.jnpage-404-suggestion__explore {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.jnpage-404-suggestion__explore-link {
    padding: 0.5rem 1rem;
    background: rgba(106, 17, 203, 0.1);
    color: #6a11cb;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.jnpage-404-suggestion__explore-link:hover {
    background: #6a11cb;
    color: white;
    transform: translateY(-2px);
}

.jnpage-404-search {
    margin-bottom: 3rem;
    animation: jnpage-404-search-appear 1s ease-out 1.6s forwards;
    opacity: 0;
}

@keyframes jnpage-404-search-appear {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.jnpage-404-search__title {
    font-family: 'Newsreader', serif;
    font-size: 1.75rem;
    color: #e0e0ff;
    margin-bottom: 0.75rem;
}

.jnpage-404-search__description {
    color: #a0a0cc;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.jnpage-404-search__container {
    display: flex;
    max-width: 600px;
    margin: 0 auto 1rem;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #2a2a4a;
    border-radius: 30px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.jnpage-404-search__container:focus-within {
    border-color: #6a11cb;
}

.jnpage-404-search__input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: #e0e0ff;
    font-family: 'Public Sans', sans-serif;
    font-size: 1rem;
}

.jnpage-404-search__input:focus {
    outline: none;
}

.jnpage-404-search__input::placeholder {
    color: #a0a0cc;
}

.jnpage-404-search__button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    border: none;
    font-family: 'Public Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.jnpage-404-search__button:hover {
    transform: translateX(-2px);
}

.jnpage-404-search__suggestions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #a0a0cc;
    font-size: 0.9rem;
}

.jnpage-404-search__suggestion {
    padding: 0.5rem 1rem;
    background: rgba(106, 17, 203, 0.1);
    color: #6a11cb;
    border: 1px solid rgba(106, 17, 203, 0.3);
    border-radius: 20px;
    font-family: 'Public Sans', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jnpage-404-search__suggestion:hover {
    background: #6a11cb;
    color: white;
    transform: translateY(-2px);
}

.jnpage-404-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: jnpage-404-stats-appear 1s ease-out 1.8s forwards;
    opacity: 0;
}

@keyframes jnpage-404-stats-appear {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.jnpage-404-stats__item {
    text-align: center;
}

.jnpage-404-stats__value {
    font-family: 'Newsreader', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #00c896;
    margin-bottom: 0.5rem;
}

.jnpage-404-stats__label {
    color: #a0a0cc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jnpage-404-footer {
    animation: jnpage-404-footer-appear 1s ease-out 2s forwards;
    opacity: 0;
}

@keyframes jnpage-404-footer-appear {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.jnpage-404-footer__note {
    color: #a0a0cc;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.jnpage-404-footer__actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.jnpage-404-footer__home {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Public Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.jnpage-404-footer__home:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(106, 17, 203, 0.3);
}

.jnpage-404-footer__report {
    padding: 1rem 2.5rem;
    background: transparent;
    color: #a0a0cc;
    border: 2px solid #2a2a4a;
    border-radius: 25px;
    font-family: 'Public Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jnpage-404-footer__report:hover {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border-color: #ff4757;
}

@media (max-width: 1024px) {
    .jnpage-404-container {
        padding: 0 1.5rem;
    }
    
    .jnpage-404-animation {
        width: 400px;
        height: 400px;
    }
    
    .jnpage-404-animation__orbit--1 {
        width: 320px;
        height: 320px;
    }
    
    .jnpage-404-animation__orbit--2 {
        width: 240px;
        height: 240px;
    }
    
    .jnpage-404-animation__orbit--3 {
        width: 160px;
        height: 160px;
    }
    
    .jnpage-404-code__digit {
        font-size: 6rem;
    }
    
    .jnpage-404-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .jnpage-404-animation {
        width: 300px;
        height: 300px;
    }
    
    .jnpage-404-animation__orbit--1 {
        width: 240px;
        height: 240px;
    }
    
    .jnpage-404-animation__orbit--2 {
        width: 180px;
        height: 180px;
    }
    
    .jnpage-404-animation__orbit--3 {
        width: 120px;
        height: 120px;
    }
    
    .jnpage-404-code {
        gap: 1rem;
    }
    
    .jnpage-404-code__digit {
        font-size: 5rem;
    }
    
    .jnpage-404-title {
        font-size: 2.5rem;
    }
    
    .jnpage-404-description {
        font-size: 1.1rem;
    }
    
    .jnpage-404-suggestions__title {
        font-size: 2rem;
    }
    
    .jnpage-404-suggestions__grid {
        grid-template-columns: 1fr;
    }
    
    .jnpage-404-search__container {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .jnpage-404-search__input {
        width: 100%;
        text-align: center;
    }
    
    .jnpage-404-search__button {
        width: 100%;
        border-radius: 0 0 20px 20px;
    }
    
    .jnpage-404-stats {
        gap: 2rem;
    }
    
    .jnpage-404-stats__value {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .jnpage-404-container {
        padding: 0 0.8rem;
    }
    
    .jnpage-404-animation {
        width: 200px;
        height: 200px;
    }
    
    .jnpage-404-animation__orbit--1 {
        width: 160px;
        height: 160px;
    }
    
    .jnpage-404-animation__orbit--2 {
        width: 120px;
        height: 120px;
    }
    
    .jnpage-404-animation__orbit--3 {
        width: 80px;
        height: 80px;
    }
    
    .jnpage-404-code__digit {
        font-size: 4rem;
    }
    
    .jnpage-404-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .jnpage-404-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .jnpage-404-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .jnpage-404-details__card {
        padding: 1.5rem 0.8rem;
    }
    
    .jnpage-404-suggestions__title {
        font-size: 1.75rem;
    }
    
    .jnpage-404-suggestions__description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .jnpage-404-suggestion {
        padding: 1.5rem 0.8rem;
    }
    
    .jnpage-404-suggestion__number {
        font-size: 2.5rem;
    }
    
    .jnpage-404-suggestion__content h3 {
        font-size: 1.25rem;
    }
    
    .jnpage-404-search__title {
        font-size: 1.5rem;
    }
    
    .jnpage-404-search__description {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .jnpage-404-stats {
        gap: 1.5rem;
    }
    
    .jnpage-404-stats__value {
        font-size: 1.75rem;
    }
    
    .jnpage-404-footer__note {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .jnpage-404-footer__actions {
        flex-direction: column;
    }
    
    .jnpage-404-footer__home,
    .jnpage-404-footer__report {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 320px) {
    .jnpage-404-code__digit {
        font-size: 3rem;
    }
    
    .jnpage-404-title {
        font-size: 1.75rem;
    }
    
    .jnpage-404-description {
        font-size: 0.95rem;
    }
    
    .jnpage-404-suggestion__number {
        font-size: 2rem;
    }
    
    .jnpage-404-suggestion__content h3 {
        font-size: 1.1rem;
    }
    
    .jnpage-404-stats__value {
        font-size: 1.5rem;
    }
}