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

:root {
    --nso-deep-ocean: #0f0d1f;
    --nso-coral-reef: #ff7b54;
    --nso-gold-sand: #f4d35e;
    --nso-aqua-marine: #8b5cf6;
    --nso-forest-green: #6dd3c0;
    --nso-text-light: #f3f0ff;
    --nso-text-muted: #c6c0d8;
    --nso-overlay-dark: rgba(15, 13, 31, 0.9);
    --nso-card-bg: rgba(255, 255, 255, 0.08);
    --nso-border-glow: rgba(139, 92, 246, 0.35);
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: linear-gradient(135deg, var(--nso-deep-ocean) 0%, #1c1033 100%);
    color: var(--nso-text-light);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/serac-nucleus/serac-imagery/background-visual.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

main {
    background: var(--nso-overlay-dark);
    margin: 0 auto;
    max-width: 1400px;
    backdrop-filter: blur(10px);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Spectral', serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(45deg, var(--nso-gold-sand), var(--nso-aqua-marine));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--nso-text-light);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--nso-gold-sand);
}

.nso__header_navigation {
    background: rgba(15, 13, 31, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.35);
    padding: 1rem 0;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1000;
}

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

.nso__header_logo {
    width: 68px;
    height: 68px;
    transition: transform 0.3s ease;
}

.nso__header_logo:hover {
    transform: scale(1.05);
}

.nso__header_nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.nso__header_navitem {
    color: #f3f0ff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nso__header_navitem::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
    transition: left 0.5s ease;
}

.nso__header_navitem:hover::before {
    left: 100%;
}

.nso__header_navitem:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #8b5cf6;
}

.nso__header_menubutton {
    display: none;
    background: none;
    border: none;
    color: #f3f0ff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
    z-index: 1001;
}

.nso__header_menubutton:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nso__welcome_hero {
    padding: 6rem 2rem;
    text-align: center;
}

.nso__welcome_subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--nso-text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.nso__welcome_card {
    background: var(--nso-card-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    flex: 1 1 200px;
    max-width: 220px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.nso__welcome_card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--nso-coral-reef), var(--nso-aqua-marine), var(--nso-forest-green));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nso__welcome_card:hover::before {
    opacity: 1;
}

.nso__welcome_card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--nso-border-glow);
}

.nso__welcome_card .fa-solid {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--nso-aqua-marine);
}

.nso__welcome_card p {
    margin-bottom: 1.5rem;
    min-height: 3rem;
    font-weight: 500;
}

.nso__welcome_cardlink {
    color: var(--nso-gold-sand);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid var(--nso-gold-sand);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nso__welcome_cardlink:hover {
    background: var(--nso-gold-sand);
    color: var(--nso-deep-ocean);
}

.nso__features_showcase {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

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

.nso__features_item {
    background: var(--nso-card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    flex: 1 1 250px;
    max-width: 280px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    position: relative;
}

.nso__features_item:hover {
    transform: translateY(-5px);
    border-color: var(--nso-forest-green);
    box-shadow: 0 10px 30px rgba(109, 211, 192, 0.25);
}

.nso__features_item .fa-solid {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--nso-forest-green);
}

.nso__features_item h3 {
    margin-bottom: 1rem;
    min-height: 3.5rem;
}

.nso__features_item p {
    color: var(--nso-text-muted);
    min-height: 4rem;
}

.nso__about_platform {
    padding: 6rem 2rem;
}

.nso__about_container {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.nso__about_visual {
    flex: 1;
    text-align: center;
}

.nso__about_visual img {
    width: 100%;
    max-width: 400px;
    height: 100%;
    max-height: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.nso__about_visual img:hover {
    transform: rotate(-5deg) scale(1.05);
}

.nso__about_content {
    flex: 1;
}

.nso__about_content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.nso__about_content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.nso__about_highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.nso__about_highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--nso-card-bg);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    flex: 1 1 150px;
}

.nso__about_highlight .fa-solid {
    color: var(--nso-coral-reef);
    font-size: 1.2rem;
}

.nso__about_gamelink {
    display: inline-block;
    background: linear-gradient(45deg, var(--nso-coral-reef), var(--nso-gold-sand));
    color: var(--nso-deep-ocean);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nso__about_gamelink:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 123, 84, 0.32);
}

.nso__journey_container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.nso__journey_content {
    flex: 1;
}

.nso__journey_content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.nso__journey_content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.nso__journey_milestones {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.nso__journey_milestone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--nso-card-bg);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    flex: 1 1 150px;
}

.nso__journey_milestone .fa-solid {
    color: var(--nso-aqua-marine);
    font-size: 1.2rem;
}

.nso__journey_gamelink {
    display: inline-block;
    background: linear-gradient(45deg, var(--nso-aqua-marine), var(--nso-forest-green));
    color: var(--nso-deep-ocean);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nso__journey_gamelink:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.35);
}

.nso__journey_visual {
    flex: 1;
    text-align: center;
}

.nso__journey_visual img {
    width: 100%;
    max-width: 400px;
    height: 100%;
    max-height: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.nso__journey_visual img:hover {
    transform: rotate(5deg) scale(1.05);
}

.nso__games_showcase {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

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

.nso__games_item {
    background: var(--nso-card-bg);
    border-radius: 15px;
    padding: 1.5rem;
    flex: 1 1 300px;
    min-height: 380px;
    max-width: 320px;
    text-align: center;
    position: relative;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    overflow: hidden;
}

.nso__games_item:hover {
    transform: translateY(-10px);
    border-color: var(--nso-border-glow);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.22);
}

.nso__games_badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--nso-coral-reef);
    color: var(--nso-deep-ocean);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.nso__games_item img {
    width: 100%;
    max-width: 320px;
    height: 100%;
    max-height: 210px;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.nso__games_item:hover img {
    transform: scale(1.05);
}

.nso__games_item h3 {
    margin-bottom: 0.5rem;
    min-height: 3rem;
}

.nso__games_item .fa-solid {
    color: var(--nso-gold-sand);
    margin-bottom: 1rem;
}

.nso__games_link {
    display: inline-block;
    background: var(--nso-aqua-marine);
    color: var(--nso-deep-ocean);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nso__games_link:hover {
    background: var(--nso-gold-sand);
    transform: scale(1.05);
}

.nso__faq_section {
    padding: 6rem 2rem;
}

.nso__faq_columns {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nso__faq_column {
    flex: 1 1 250px;
    background: var(--nso-card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.nso__faq_column:hover {
    border-color: var(--nso-border-glow);
    transform: translateY(-5px);
}

.nso__faq_column h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--nso-aqua-marine);
    min-height: 3rem;
}

.nso__faq_item {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.nso__faq_question {
    font-weight: 600;
    cursor: pointer;
    padding: 0.8rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nso__faq_question:hover {
    color: var(--nso-aqua-marine);
}

.nso__faq_question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.nso__faq_item.active .nso__faq_question::after {
    transform: translateY(-50%) rotate(45deg);
}

.nso__faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--nso-text-muted);
}

.nso__faq_item.active .nso__faq_answer {
    max-height: 500px;
    padding-top: 0.5rem;
}

.nso__faq_contactlink {
    display: block;
    text-align: center;
    margin-top: 3rem;
    color: var(--nso-gold-sand);
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 2px solid var(--nso-gold-sand);
    border-radius: 30px;
    transition: all 0.3s ease;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.nso__faq_contactlink:hover {
    background: var(--nso-gold-sand);
    color: var(--nso-deep-ocean);
    transform: translateY(-3px);
}

.nso__reviews_display {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

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

.nso__reviews_card {
    background: var(--nso-card-bg);
    padding: 2rem;
    border-radius: 15px;
    flex: 1 1 300px;
    max-width: 320px;
    position: relative;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.nso__reviews_card:hover {
    transform: translateY(-8px);
    border-color: var(--nso-border-glow);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.18);
}

.nso__reviews_avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid var(--nso-aqua-marine);
}

.nso__reviews_card h3 {
    margin-bottom: 0.5rem;
    text-align: center;
}

.nso__reviews_rating {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.nso__reviews_rating .fa-solid {
    color: var(--nso-gold-sand);
    font-size: 1.2rem;
}

.nso__reviews_text {
    text-align: center;
    margin-bottom: 1rem;
    font-style: italic;
    min-height: 4rem;
}

.nso__reviews_location, .nso__reviews_date {
    display: block;
    text-align: center;
    color: var(--nso-text-muted);
    font-size: 0.9rem;
}

.nso__reviews_icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--nso-forest-green);
    opacity: 0.5;
    font-size: 2rem;
}

.nso__responsible_gaming {
    padding: 6rem 2rem;
}

.nso__responsible_container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.nso__responsible_description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.nso__responsible_description a {
    color: var(--nso-aqua-marine);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nso__responsible_description a:hover {
    color: var(--nso-gold-sand);
}

.nso__responsible_link {
    display: inline-block;
    background: var(--nso-forest-green);
    color: var(--nso-deep-ocean);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.nso__responsible_link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(109, 211, 192, 0.35);
}

.nso__responsible_partners {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.nso__responsible_partner {
    width: 120px;
    height: 60px;
    min-height: 60px;
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: var(--nso-forest-green);
    padding: 5px;
    border-radius: 5px;
}

.nso__responsible_partner:hover {
    transform: scale(1.1);
}

.nso__responsible_age {
    width: 60px;
    height: 60px;
    min-height: 60px;
    max-height: 60px;
    border: 2px solid var(--nso-coral-reef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--nso-coral-reef);
}

.nso__contact_section {
    padding: 6rem 2rem;
    position: relative;
}

.nso__contact_animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.nso__contact_visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(139, 92, 246, 0.12) 50%, transparent 70%);
    animation: contactShimmer 8s ease-in-out infinite;
}

@keyframes contactShimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.nso__contact_container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.nso__contact_content {
    flex: 1;
}

.nso__contact_content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.nso__contact_content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--nso-text-muted);
}

.nso__contact_form {
    flex: 1;
    background: var(--nso-card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--nso-border-glow);
}

.nso__contact_field {
    position: relative;
    margin-bottom: 2rem;
}

.nso__contact_icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--nso-aqua-marine);
    z-index: 2;
}

.nso__contact_input, .nso__contact_textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 10px;
    color: var(--nso-text-light);
    font-size: 16px;
    font-family: 'Source Sans Pro', sans-serif;
    transition: all 0.3s ease;
    min-height: 44px;
}

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

.nso__contact_input:focus, .nso__contact_textarea:focus {
    outline: none;
    border-color: var(--nso-aqua-marine);
    background: rgba(255, 255, 255, 0.08);
}

.nso__contact_label {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--nso-text-muted);
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--nso-card-bg);
    padding: 0 0.5rem;
}

.nso__contact_textarea + .nso__contact_label {
    top: 1.5rem;
    transform: none;
}

.nso__contact_input:focus + .nso__contact_label,
.nso__contact_input:not(:placeholder-shown) + .nso__contact_label,
.nso__contact_textarea:focus + .nso__contact_label,
.nso__contact_textarea:not(:placeholder-shown) + .nso__contact_label {
    top: -0.5rem;
    left: 1rem;
    font-size: 0.8rem;
    color: var(--nso-aqua-marine);
}

.nso__contact_hint {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    font-size: 0.8rem;
    color: var(--nso-coral-reef);
    padding: 0.3rem 0;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.nso__contact_input:focus ~ .nso__contact_hint,
.nso__contact_textarea:focus ~ .nso__contact_hint {
    opacity: 1;
    transform: translateY(0);
}

.nso__contact_checkarea {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2.5rem;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nso__contact_checkbox {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    margin: 0;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}

.nso__contact_checkbox + .nso__contact_checklabel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--nso-text-muted);
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.nso__contact_checkbox:checked + .nso__contact_checklabel::before {
    background: var(--nso-forest-green);
    border-color: var(--nso-forest-green);
}

.nso__contact_checkbox:checked + .nso__contact_checklabel::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--nso-deep-ocean);
    font-size: 14px;
    font-weight: bold;
}

.nso__contact_checklabel {
    cursor: pointer;
    color: var(--nso-text-muted);
    line-height: 1.4;
}

.nso__contact_checklabel a {
    color: var(--nso-aqua-marine);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nso__contact_checklabel a:hover {
    color: var(--nso-gold-sand);
}

.nso__contact_checkbox:focus + .nso__contact_checklabel::before {
    border-color: var(--nso-aqua-marine);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.35);
}

.nso__contact_submit {
    width: 100%;
    background: linear-gradient(45deg, var(--nso-aqua-marine), var(--nso-forest-green));
    color: var(--nso-deep-ocean);
    border: none;
    padding: 1.2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
    min-height: 44px;
}

.nso__contact_submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.35);
}

.nso__contact_submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.nso__footer_section {
    background: var(--nso-overlay-dark);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--nso-border-glow);
    padding: 3rem 0 1rem;
    width: 100%;
}

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

.nso__footer_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.nso__footer_sitename {
    font-family: 'Spectral', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--nso-text-light);
    text-decoration: none;
}

.nso__footer_nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nso__footer_link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--nso-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.nso__footer_link:hover {
    color: var(--nso-aqua-marine);
    background: var(--nso-card-bg);
}

.nso__footer_link .fa-solid {
    font-size: 1.2rem;
}

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

.nso__footer_copyright {
    color: var(--nso-text-muted);
    font-size: 0.9rem;
}

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    overflow-y: auto;
}

.age-confirmation-dialog {
    background: var(--nso-deep-ocean);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--nso-coral-reef);
    box-shadow: 0 20px 60px rgba(255, 123, 84, 0.32);
    overflow-y: auto;
}

.age-confirmation-dialog h2 {
    color: var(--nso-coral-reef);
    margin-bottom: 1rem;
}

.age-confirmation-dialog p {
    margin-bottom: 2rem;
    color: var(--nso-text-muted);
}

.age-verification-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-confirm-button, .age-decline-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
    min-height: 44px;
}

.age-confirm-button {
    background: var(--nso-forest-green);
    color: var(--nso-deep-ocean);
}

.age-confirm-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(109, 211, 192, 0.35);
}

.age-decline-button {
    background: transparent;
    color: var(--nso-text-muted);
    border: 2px solid var(--nso-text-muted);
}

.age-decline-button:hover {
    color: var(--nso-coral-reef);
    border-color: var(--nso-coral-reef);
    transform: translateY(-3px);
}

.cookie-notification-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--nso-deep-ocean);
    padding: 1.5rem 2rem;
    border-top: 2px solid var(--nso-gold-sand);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-consent-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-content .fa-solid {
    color: var(--nso-gold-sand);
    font-size: 2rem;
}

.cookie-content p {
    color: var(--nso-text-light);
    margin: 0;
}

.cookie-content a {
    color: var(--nso-aqua-marine);
    text-decoration: none;
}

.cookie-content a:hover {
    color: var(--nso-gold-sand);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.cookie-accept, .cookie-decline {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
    min-height: 44px;
}

.cookie-accept {
    background: var(--nso-gold-sand);
    color: var(--nso-deep-ocean);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 202, 87, 0.3);
}

.cookie-decline {
    background: transparent;
    color: var(--nso-text-muted);
    border: 2px solid var(--nso-text-muted);
}

.cookie-decline:hover {
    color: var(--nso-coral-reef);
    border-color: var(--nso-coral-reef);
    transform: translateY(-2px);
}

.contact-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.contact-form-overlay.show {
    display: flex;
}

.feedback-modal-window {
    background: var(--nso-deep-ocean);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--nso-forest-green);
    box-shadow: 0 20px 60px rgba(109, 211, 192, 0.35);
    position: relative;
}

.feedback-modal-window .fa-solid {
    font-size: 4rem;
    color: var(--nso-forest-green);
    margin-bottom: 1rem;
}

.feedback-modal-window h2 {
    color: var(--nso-text-light);
    margin-bottom: 1rem;
}

.feedback-modal-window p {
    margin-bottom: 2rem;
    color: var(--nso-text-muted);
    line-height: 1.6;
}

.modal-close-button {
    background: var(--nso-forest-green);
    color: var(--nso-deep-ocean);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
    min-height: 44px;
}

.modal-close-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(109, 211, 192, 0.35);
}

.nso__subscribe_modaloverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    backdrop-filter: blur(10px);
    overflow-y: auto;
}

.nso__subscribe_modaldialog {
    background: linear-gradient(135deg, #0f0d1f 0%, #1c1033 100%);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 2px solid rgba(139, 92, 246, 0.55);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.35);
    animation: nso__subscribe_modalappear 0.5s ease-out;
    overflow-y: auto;
}

@keyframes nso__subscribe_modalappear {
    0% { transform: scale(0.8) translateY(-50px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

.nso__subscribe_modalclose {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #c6c0d8;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nso__subscribe_modalclose:hover {
    color: #ff7b54;
    background: rgba(255, 123, 84, 0.12);
}

.nso__subscribe_modalcontent {
    text-align: center;
}

.nso__subscribe_mainicon {
    font-size: 4rem;
    color: #8b5cf6;
    margin-bottom: 1.5rem;
    animation: nso__subscribe_iconpulse 2s ease-in-out infinite;
}

@keyframes nso__subscribe_iconpulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.nso__subscribe_modalcontent h2 {
    font-family: 'Spectral', serif;
    font-size: 2rem;
    color: #f3f0ff;
    margin-bottom: 1rem;
}

.nso__subscribe_modalcontent p {
    color: #c6c0d8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.nso__subscribe_modalform {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.nso__subscribe_modalfield {
    position: relative;
}

.nso__subscribe_modalicon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #8b5cf6;
    z-index: 2;
}

.nso__subscribe_modalinput {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 10px;
    color: #f3f0ff;
    font-size: 16px;
    font-family: 'Source Sans Pro', sans-serif;
    transition: all 0.3s ease;
    min-height: 44px;
}

.nso__subscribe_modalinput:focus {
    outline: none;
    border-color: #8b5cf6;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
}

.nso__subscribe_modalinput::placeholder {
    color: #c6c0d8;
}

.nso__subscribe_modalhint {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    font-size: 0.8rem;
    color: #ff7b54;
    padding: 0.3rem 0;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.nso__subscribe_modalinput:focus ~ .nso__subscribe_modalhint {
    opacity: 1;
    transform: translateY(0);
}

.nso__subscribe_modalcheckarea {
    position: relative;
    padding-left: 2.5rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    text-align: left;
}

.nso__subscribe_modalcheckbox {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    margin: 0;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}

.nso__subscribe_modalcheckbox + .nso__subscribe_modalchecklabel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #c6c0d8;
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.nso__subscribe_modalcheckbox:checked + .nso__subscribe_modalchecklabel::before {
    background: #6dd3c0;
    border-color: #6dd3c0;
}

.nso__subscribe_modalcheckbox:checked + .nso__subscribe_modalchecklabel::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: #0f0d1f;
    font-size: 14px;
    font-weight: bold;
}

.nso__subscribe_modalchecklabel {
    cursor: pointer;
    color: #c6c0d8;
    line-height: 1.4;
    font-size: 0.9rem;
}

.nso__subscribe_modalchecklabel a {
    color: #8b5cf6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nso__subscribe_modalchecklabel a:hover {
    color: #6dd3c0;
}

.nso__subscribe_modalcheckbox:focus + .nso__subscribe_modalchecklabel::before {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.35);
}

.nso__subscribe_modalsubmit {
    width: 100%;
    background: linear-gradient(45deg, #8b5cf6, #6dd3c0);
    color: #0f0d1f;
    border: none;
    padding: 1.2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
    min-height: 44px;
}

.nso__subscribe_modalsubmit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.35);
}

.nso__subscribe_modalsubmit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.nso__subscribe_modallink {
    color: #8b5cf6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nso__subscribe_modallink:hover {
    color: #6dd3c0;
}

.nso__subscribe_successsection {
    text-align: center;
}

.nso__subscribe_successicon {
    font-size: 4rem;
    color: #6dd3c0;
    margin-bottom: 1.5rem;
    animation: nso__subscribe_successpulse 2s ease-in-out infinite;
}

@keyframes nso__subscribe_successpulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.nso__subscribe_successsection h2 {
    font-family: 'Spectral', serif;
    font-size: 2rem;
    color: #f3f0ff;
    margin-bottom: 1rem;
}

.nso__subscribe_successsection p {
    color: #c6c0d8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.nso__subscribe_successactions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.nso__subscribe_successclose {
    background: #8b5cf6;
    color: #0f0d1f;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
}

.nso__subscribe_successclose:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.35);
}

.nso__subscribe_successunsubscribe {
    background: transparent;
    color: #ff7b54;
    border: 2px solid #ff7b54;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
}

.nso__subscribe_successunsubscribe:hover {
    background: #ff7b54;
    color: #0f0d1f;
    transform: translateY(-3px);
}

.nso__subscribe_unsubscribeoverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10003;
}

.nso__subscribe_unsubscribecontent {
    background: #0f0d1f;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    border: 2px solid #6dd3c0;
    box-shadow: 0 20px 60px rgba(109, 211, 192, 0.35);
}

.nso__subscribe_unsubscribeicon {
    font-size: 4rem;
    color: #6dd3c0;
    margin-bottom: 1.5rem;
}

.nso__subscribe_unsubscribecontent h2 {
    font-family: 'Spectral', serif;
    font-size: 2rem;
    color: #f3f0ff;
    margin-bottom: 1rem;
}

.nso__subscribe_unsubscribecontent p {
    color: #c6c0d8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.nso__subscribe_unsubscribeclose {
    background: #8b5cf6;
    color: #0f0d1f;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
}

.nso__subscribe_unsubscribeclose:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.35);
}

@media (max-width: 480px) {
    .nso__subscribe_modaldialog {
        padding: 2rem 0.5rem;
        margin: 0 0.3rem;
        width: 95%;
    }
    
    .nso__subscribe_modalcontent h2 {
        font-size: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .nso__subscribe_modalcontent p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .nso__subscribe_modalinput {
        padding: 1rem 1rem 1rem 2.5rem;
        font-size: 14px;
    }
    
    .nso__subscribe_modalchecklabel {
        font-size: 0.8rem;
    }
    
    .nso__subscribe_unsubscribecontent {
        margin: 1rem;
        padding: 2rem;
    }

    .age-verification-overlay,
    .nso__subscribe_modaloverlay {
        align-items: flex-start;
    }
}

@media (max-width: 1024px) {
    .nso__about_container,
    .nso__journey_container,
    .nso__contact_container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .nso__about_content h2,
    .nso__journey_content h2 {
        text-align: center;
    }
    
    .nso__faq_columns {
        gap: 1.5rem;
    }
    
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nso__header_nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--nso-overlay-dark);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid var(--nso-border-glow);
    }
    
    .nso__header_nav.show {
        display: flex;
    }
    
    .nso__header_container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .nso__header_menubutton {
        display: block;
    }
    
    .nso__welcome_hero,
    .nso__features_showcase,
    .nso__about_platform,
    .nso__games_showcase,
    .nso__faq_section,
    .nso__reviews_display,
    .nso__responsible_gaming,
    .nso__contact_section {
        padding: 4rem 1rem;
    }
    
    .nso__welcome_cards,
    .nso__features_grid,
    .nso__games_grid,
    .nso__reviews_grid {
        gap: 1.5rem;
    }
    
    .nso__responsible_partners {
        gap: 1.5rem;
    }
    
    .nso__footer_main {
        flex-direction: column;
        text-align: center;
    }
    
    .nso__footer_nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .nso__welcome_hero,
    .nso__features_showcase,
    .nso__about_platform,
    .nso__games_showcase,
    .nso__faq_section,
    .nso__reviews_display,
    .nso__responsible_gaming,
    .nso__contact_section {
        padding: 3rem 0.5rem;
    }
    
    .nso__header_container,
    .nso__footer_container {
        padding: 0 1rem;
    }
    
    .nso__welcome_card,
    .nso__features_item,
    .nso__games_item,
    .nso__reviews_card {
        flex: 1 1 100%;
        max-width: none;
    }
    
    .nso__about_highlights,
    .nso__journey_milestones {
        gap: 0.8rem;
    }
    
    .nso__about_highlight,
    .nso__journey_milestone {
        flex: 1 1 100%;
    }
    
    .nso__faq_columns {
        flex-direction: column;
    }
    
    .nso__faq_column {
        flex: 1 1 100%;
    }
    
    .nso__responsible_partners {
        flex-direction: column;
        align-items: center;
    }
    
    .nso__contact_form {
        padding: 1.5rem;
    }
    
    .age-confirmation-dialog,
    .feedback-modal-window {
        margin: 1rem;
        padding: 2rem;
    }
    
    .age-verification-buttons {
        flex-direction: column;
    }
    
    .cookie-notification-bar {
        padding: 1rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-accept,
    .cookie-decline {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .nso__header_container,
    .nso__footer_container {
        padding: 0 0.5rem;
    }
    
    .nso__welcome_hero,
    .nso__features_showcase,
    .nso__about_platform,
    .nso__games_showcase,
    .nso__faq_section,
    .nso__reviews_display,
    .nso__responsible_gaming,
    .nso__contact_section {
        padding: 2rem 0.3rem;
    }
    
    .nso__welcome_card,
    .nso__features_item,
    .nso__games_item,
    .nso__reviews_card {
        padding: 1.5rem 1rem;
    }
    
    .nso__contact_form {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .nso__welcome_card:hover,
    .nso__features_item:hover,
    .nso__games_item:hover,
    .nso__reviews_card:hover,
    .nso__faq_column:hover {
        transform: none;
    }
    
    .nso__about_visual img:hover,
    .nso__journey_visual img:hover {
        transform: none;
    }
    
    .nso__welcome_cardlink:hover,
    .nso__about_gamelink:hover,
    .nso__journey_gamelink:hover,
    .nso__games_link:hover,
    .nso__faq_contactlink:hover,
    .nso__responsible_link:hover,
    .nso__contact_submit:hover:not(:disabled),
    .age-confirm-button:hover,
    .age-decline-button:hover,
    .cookie-accept:hover,
    .cookie-decline:hover,
    .modal-close-button:hover {
        transform: none;
    }
}

.nsopg__privacy_main {
    background: rgba(15, 13, 31, 0.95);
    min-height: 100vh;
    padding: 2rem 0;
}

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

.nsopg__privacy_container h1 {
    font-family: 'Spectral', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #f4d35e, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nsopg__privacy_subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #c6c0d8;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.nsopg__privacy_content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.nsopg__privacy_item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.nsopg__privacy_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.12), transparent);
    transition: left 0.6s ease;
}

.nsopg__privacy_item:hover::before {
    left: 100%;
}

.nsopg__privacy_item:hover {
    border-color: rgba(139, 92, 246, 0.35);
    transform: translateY(-5px);
}

.nsopg__privacy_header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.nsopg__privacy_header .fa-solid {
    font-size: 2.5rem;
    color: #8b5cf6;
}

.nsopg__privacy_header h2 {
    font-family: 'Spectral', serif;
    font-size: 1.8rem;
    color: #f3f0ff;
    margin: 0;
}

.nsopg__privacy_item p {
    color: #c6c0d8;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.nsopg__privacy_item a {
    color: #8b5cf6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nsopg__privacy_item a:hover {
    color: #f4d35e;
}

@media (max-width: 768px) {
    .nsopg__privacy_hero {
        padding: 0 1.5rem;
    }
    
    .nsopg__privacy_container h1 {
        font-size: 2.5rem;
    }
    
    .nsopg__privacy_subtitle {
        font-size: 1.1rem;
    }
    
    .nsopg__privacy_item {
        padding: 2rem;
    }
    
    .nsopg__privacy_header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .nsopg__privacy_hero {
        padding: 0 0.3rem;
    }
    
    .nsopg__privacy_container h1 {
        font-size: 2rem;
        padding: 0 0.5rem;
    }
    
    .nsopg__privacy_subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .nsopg__privacy_item {
        padding: 1.5rem 0.5rem;
        margin: 0 0.3rem;
    }
    
    .nsopg__privacy_item p {
        font-size: 0.9rem;
    }
    
    .nsopg__privacy_header h2 {
        font-size: 1.5rem;
    }
    
    .nsopg__privacy_item:hover {
        transform: none;
    }
}

.nsopg__terms_main {
    background: linear-gradient(135deg, #0f0d1f 0%, #1c1033 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

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

.nsopg__terms_container h1 {
    font-family: 'Spectral', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff7b54, #6dd3c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nsopg__terms_subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #c6c0d8;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.nsopg__terms_item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid transparent;
    transition: all 0.4s ease;
    position: relative;
}

.nsopg__terms_item:nth-child(odd) {
    border-left-color: #ff7b54;
}

.nsopg__terms_item:nth-child(even) {
    border-left-color: #6dd3c0;
}

.nsopg__terms_item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nsopg__terms_header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.nsopg__terms_header .fa-solid {
    font-size: 2.5rem;
}

.nsopg__terms_item:nth-child(odd) .nsopg__terms_header .fa-solid {
    color: #ff7b54;
}

.nsopg__terms_item:nth-child(even) .nsopg__terms_header .fa-solid {
    color: #6dd3c0;
}

.nsopg__terms_header h2 {
    font-family: 'Spectral', serif;
    font-size: 1.8rem;
    color: #f3f0ff;
    margin: 0;
}

.nsopg__terms_item p {
    color: #c6c0d8;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.nsopg__terms_item a {
    color: #8b5cf6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nsopg__terms_item a:hover {
    color: #f4d35e;
}

@media (max-width: 768px) {
    .nsopg__terms_hero {
        padding: 0 1.5rem;
    }
    
    .nsopg__terms_container h1 {
        font-size: 2.5rem;
    }
    
    .nsopg__terms_subtitle {
        font-size: 1.1rem;
    }
    
    .nsopg__terms_item {
        padding: 2rem;
    }
    
    .nsopg__terms_header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .nsopg__terms_hero {
        padding: 0 0.3rem;
    }
    
    .nsopg__terms_container h1 {
        font-size: 2rem;
        padding: 0 0.5rem;
    }
    
    .nsopg__terms_subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .nsopg__terms_item {
        padding: 1.5rem 0.5rem;
        margin: 0 0.3rem;
        transform: none !important;
    }
    
    .nsopg__terms_item p {
        font-size: 0.9rem;
    }
    
    .nsopg__terms_header h2 {
        font-size: 1.5rem;
    }
    
    .nsopg__terms_item:hover {
        transform: none;
    }
}

.nsopg__cookies_main {
    background: linear-gradient(135deg, #0f0d1f 0%, #1c1033 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

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

.nsopg__cookies_container h1 {
    font-family: 'Spectral', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #f4d35e, #6dd3c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nsopg__cookies_subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #c6c0d8;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.nsopg__cookies_item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 20px;
    flex: 1 1 350px;
    max-width: 500px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.nsopg__cookies_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f4d35e, #6dd3c0);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.nsopg__cookies_item:hover::before {
    transform: scaleX(1);
}

.nsopg__cookies_item:hover {
    transform: translateY(-10px);
    border-color: rgba(254, 202, 87, 0.3);
    box-shadow: 0 15px 40px rgba(254, 202, 87, 0.2);
}

.nsopg__cookies_header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.nsopg__cookies_header .fa-solid {
    font-size: 2.5rem;
    color: #f4d35e;
}

.nsopg__cookies_header h2 {
    font-family: 'Spectral', serif;
    font-size: 1.8rem;
    color: #f3f0ff;
    margin: 0;
}

.nsopg__cookies_item p {
    color: #c6c0d8;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.nsopg__cookies_item a {
    color: #8b5cf6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nsopg__cookies_item a:hover {
    color: #f4d35e;
}

@media (max-width: 768px) {
    .nsopg__cookies_hero {
        padding: 0 1.5rem;
    }
    
    .nsopg__cookies_container h1 {
        font-size: 2.5rem;
    }
    
    .nsopg__cookies_subtitle {
        font-size: 1.1rem;
    }
    
    .nsopg__cookies_item {
        padding: 2rem;
    }
    
    .nsopg__cookies_header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .nsopg__cookies_hero {
        padding: 0 0.3rem;
    }
    
    .nsopg__cookies_container h1 {
        font-size: 2rem;
        padding: 0 0.5rem;
    }
    
    .nsopg__cookies_subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .nsopg__cookies_item {
        padding: 1.5rem 0.5rem;
        margin: 0 0.3rem;
        flex: 1 1 100%;
    }
    
    .nsopg__cookies_item p {
        font-size: 0.9rem;
    }
    
    .nsopg__cookies_header h2 {
        font-size: 1.5rem;
    }
    
    .nsopg__cookies_item:hover {
        transform: none;
    }
}

.nsopg__gambling_main {
    background: linear-gradient(135deg, #0f0d1f 0%, #1c1033 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

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

.nsopg__gambling_container h1 {
    font-family: 'Spectral', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff7b54, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nsopg__gambling_subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #c6c0d8;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.nsopg__gambling_item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    position: relative;
}

.nsopg__gambling_item:hover {
    border-color: rgba(255, 123, 84, 0.32);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 123, 84, 0.22);
}

.nsopg__gambling_header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.nsopg__gambling_header .fa-solid {
    font-size: 2.5rem;
    color: #ff7b54;
}

.nsopg__gambling_header h2 {
    font-family: 'Spectral', serif;
    font-size: 1.8rem;
    color: #f3f0ff;
    margin: 0;
}

.nsopg__gambling_item p {
    color: #c6c0d8;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.nsopg__gambling_item a {
    color: #8b5cf6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nsopg__gambling_item a:hover {
    color: #ff7b54;
}

.nsopg__gambling_resources {
    background: rgba(255, 123, 84, 0.12);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 123, 84, 0.32);
}

.nsopg__gambling_resources h3 {
    font-family: 'Spectral', serif;
    font-size: 2rem;
    color: #f3f0ff;
    text-align: center;
    margin-bottom: 2rem;
}

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

.nsopg__gambling_link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b5cf6;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border: 1px solid #8b5cf6;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nsopg__gambling_link:hover {
    background: #8b5cf6;
    color: #0f0d1f;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .nsopg__gambling_hero {
        padding: 0 1.5rem;
    }
    
    .nsopg__gambling_container h1 {
        font-size: 2.5rem;
    }
    
    .nsopg__gambling_subtitle {
        font-size: 1.1rem;
    }
    
    .nsopg__gambling_content {
        grid-template-columns: 1fr;
    }
    
    .nsopg__gambling_item {
        padding: 2rem;
    }
    
    .nsopg__gambling_header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .nsopg__gambling_links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nsopg__gambling_hero {
        padding: 0 0.3rem;
    }
    
    .nsopg__gambling_container h1 {
        font-size: 2rem;
        padding: 0 0.5rem;
    }
    
    .nsopg__gambling_subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .nsopg__gambling_item {
        padding: 1.5rem 0.5rem;
        margin: 0 0.3rem;
    }
    
    .nsopg__gambling_item p {
        font-size: 0.9rem;
    }
    
    .nsopg__gambling_header h2 {
        font-size: 1.5rem;
    }
    
    .nsopg__gambling_resources {
        padding: 1.5rem 0.5rem;
        margin: 0 0.3rem;
    }
    
    .nsopg__gambling_item:hover {
        transform: none;
    }
}

.nsopg__404_main {
    background: linear-gradient(135deg, #0f0d1f 0%, #1c1033 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.nsopg__404_hero {
    max-width: 800px;
    width: 100%;
}

.nsopg__404_container {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.nsopg__404_content {
    flex: 1;
    text-align: center;
    z-index: 2;
}

.nsopg__404_icon {
    font-size: 8rem;
    color: #ff7b54;
    margin-bottom: 2rem;
    animation: nsopg__404_bounce 3s ease-in-out infinite;
}

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

.nsopg__404_content h1 {
    font-family: 'Spectral', serif;
    font-size: 4rem;
    color: #f3f0ff;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ff7b54, #f4d35e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nsopg__404_text {
    color: #c6c0d8;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.nsopg__404_link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #8b5cf6, #6dd3c0);
    color: #0f0d1f;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.nsopg__404_link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.35);
}

.nsopg__404_animation {
    flex: 1;
    position: relative;
    height: 300px;
}

.nsopg__404_orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff7b54, #f4d35e);
    opacity: 0.3;
    animation: nsopg__404_float 6s ease-in-out infinite;
}

.nsopg__404_orb-1 {
    width: 100px;
    height: 100px;
    top: 20px;
    left: 50px;
    animation-delay: 0s;
}

.nsopg__404_orb-2 {
    width: 150px;
    height: 150px;
    top: 100px;
    right: 15px;
    background: linear-gradient(45deg, #8b5cf6, #6dd3c0);
    animation-delay: 2s;
}

.nsopg__404_orb-3 {
    width: 80px;
    height: 80px;
    bottom: 40px;
    left: 100px;
    background: linear-gradient(45deg, #f4d35e, #ff7b54);
    animation-delay: 4s;
}

@keyframes nsopg__404_float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

@media (max-width: 768px) {
    .nsopg__404_container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .nsopg__404_icon {
        font-size: 6rem;
    }
    
    .nsopg__404_content h1 {
        font-size: 3rem;
    }
    
    .nsopg__404_text {
        font-size: 1.1rem;
    }
    
    .nsopg__404_animation {
        height: 200px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nsopg__404_main {
        padding: 1rem 0.3rem;
    }
    
    .nsopg__404_icon {
        font-size: 5rem;
    }
    
    .nsopg__404_content h1 {
        font-size: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .nsopg__404_text {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .nsopg__404_link {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .nsopg__404_orb-1 {
        width: 60px;
        height: 60px;
        left: 20px;
    }
    
    .nsopg__404_orb-2 {
        width: 100px;
        height: 100px;
        right: 52px;
    }
    
    .nsopg__404_orb-3 {
        width: 50px;
        height: 50px;
        left: 50px;
    }
    
    @keyframes nsopg__404_bounce {
        0%, 100% { transform: translateY(0) scale(1); }
        50% { transform: translateY(-10px) scale(1.05); }
    }
    
    @keyframes nsopg__404_float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        33% { transform: translateY(-10px) rotate(120deg); }
        66% { transform: translateY(5px) rotate(240deg); }
    }
}

.nsopg__subscribe_main {
    background: linear-gradient(135deg, #0f0d1f 0%, #1c1033 100%);
    min-height: 100vh;
}

.nsopg__subscribe_hero {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

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

.nsopg__subscribe_content h1 {
    font-family: 'Spectral', serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #8b5cf6, #6dd3c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nsopg__subscribe_subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #c6c0d8;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.nsopg__subscribe_formsection {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.35);
}

.nsopg__subscribe_form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nsopg__subscribe_field {
    position: relative;
}

.nsopg__subscribe_icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #8b5cf6;
    z-index: 2;
}

.nsopg__subscribe_input {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 10px;
    color: #f3f0ff;
    font-size: 16px;
    font-family: 'Source Sans Pro', sans-serif;
    transition: all 0.3s ease;
    min-height: 44px;
}

.nsopg__subscribe_input:focus {
    outline: none;
    border-color: #8b5cf6;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
}

.nsopg__subscribe_input::placeholder {
    color: #c6c0d8;
}

.nsopg__subscribe_hint {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    font-size: 0.8rem;
    color: #ff7b54;
    padding: 0.3rem 0;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.nsopg__subscribe_input:focus ~ .nsopg__subscribe_hint {
    opacity: 1;
    transform: translateY(0);
}

.nsopg__subscribe_checkarea {
    position: relative;
    padding-left: 2.5rem;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nsopg__subscribe_checkbox {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    margin: 0;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}

.nsopg__subscribe_checkbox + .nsopg__subscribe_checklabel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #c6c0d8;
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.nsopg__subscribe_checkbox:checked + .nsopg__subscribe_checklabel::before {
    background: #6dd3c0;
    border-color: #6dd3c0;
}

.nsopg__subscribe_checkbox:checked + .nsopg__subscribe_checklabel::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: #0f0d1f;
    font-size: 14px;
    font-weight: bold;
}

.nsopg__subscribe_checklabel {
    cursor: pointer;
    color: #c6c0d8;
    line-height: 1.4;
    font-size: 0.9rem;
}

.nsopg__subscribe_checklabel a {
    color: #8b5cf6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nsopg__subscribe_checklabel a:hover {
    color: #6dd3c0;
}

.nsopg__subscribe_checkbox:focus + .nsopg__subscribe_checklabel::before {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.35);
}

.nsopg__subscribe_submit {
    width: 100%;
    background: linear-gradient(45deg, #8b5cf6, #6dd3c0);
    color: #0f0d1f;
    border: none;
    padding: 1.2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
    min-height: 44px;
}

.nsopg__subscribe_submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.35);
}

.nsopg__subscribe_submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.nsopg__subscribe_success {
    text-align: center;
    background: rgba(109, 211, 192, 0.14);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(109, 211, 192, 0.35);
}

.nsopg__subscribe_successicon {
    font-size: 4rem;
    color: #6dd3c0;
    margin-bottom: 1.5rem;
}

.nsopg__subscribe_success h2 {
    font-family: 'Spectral', serif;
    font-size: 2rem;
    color: #f3f0ff;
    margin-bottom: 1rem;
}

.nsopg__subscribe_success p {
    color: #c6c0d8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.nsopg__subscribe_actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nsopg__subscribe_homelink {
    background: #8b5cf6;
    color: #0f0d1f;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nsopg__subscribe_homelink:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.35);
}

.nsopg__subscribe_unsubscribe {
    background: transparent;
    color: #ff7b54;
    border: 2px solid #ff7b54;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
}

.nsopg__subscribe_unsubscribe:hover {
    background: #ff7b54;
    color: #0f0d1f;
    transform: translateY(-3px);
}

.nsopg__subscribe_benefits {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.nsopg__subscribe_benefits h2 {
    font-family: 'Spectral', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #f3f0ff;
}

.nsopg__subscribe_benefitssub {
    text-align: center;
    color: #c6c0d8;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.nsopg__subscribe_benefitsgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.nsopg__subscribe_benefit {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.nsopg__subscribe_benefit:hover {
    border-color: rgba(139, 92, 246, 0.35);
    transform: translateY(-10px);
}

.nsopg__subscribe_benefit .fa-solid {
    font-size: 3rem;
    color: #8b5cf6;
    margin-bottom: 1.5rem;
}

.nsopg__subscribe_benefit h3 {
    font-family: 'Spectral', serif;
    font-size: 1.5rem;
    color: #f3f0ff;
    min-height: 66px;
    margin-bottom: 1rem;
}

.nsopg__subscribe_benefit p {
    color: #c6c0d8;
    line-height: 1.6;
}

.nsopg__subscribe_features {
    padding: 6rem 2rem;
}

.nsopg__subscribe_featurecontent {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.nsopg__subscribe_featuretext {
    flex: 1;
}

.nsopg__subscribe_featuretext h2 {
    font-family: 'Spectral', serif;
    font-size: 2.5rem;
    color: #f3f0ff;
    margin-bottom: 1.5rem;
}

.nsopg__subscribe_featuretext p {
    color: #c6c0d8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.nsopg__subscribe_featurelist {
    list-style: none;
    padding: 0;
}

.nsopg__subscribe_featurelist li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #c6c0d8;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.nsopg__subscribe_featurelist .fa-solid {
    color: #6dd3c0;
    font-size: 1.2rem;
}

.nsopg__subscribe_featurevisual {
    flex: 1;
    position: relative;
    height: 300px;
}

.nsopg__subscribe_visualorb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #8b5cf6, #6dd3c0);
    opacity: 0.6;
    animation: nsopg__subscribe_pulse 4s ease-in-out infinite;
}

.nsopg__subscribe_orb1 {
    width: 120px;
    height: 120px;
    top: 20px;
    left: 50px;
    animation-delay: 0s;
}

.nsopg__subscribe_orb2 {
    width: 80px;
    height: 80px;
    top: 150px;
    right: 30px;
    animation-delay: 1.3s;
}

.nsopg__subscribe_orb3 {
    width: 100px;
    height: 100px;
    bottom: 40px;
    left: 100px;
    animation-delay: 2.6s;
}

@keyframes nsopg__subscribe_pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.nsopg__subscribe_community {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
}

.nsopg__subscribe_community h2 {
    font-family: 'Spectral', serif;
    font-size: 2.5rem;
    color: #f3f0ff;
    margin-bottom: 1rem;
}

.nsopg__subscribe_communitysub {
    color: #c6c0d8;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.nsopg__subscribe_communitystats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.nsopg__subscribe_stat {
    text-align: center;
}

.nsopg__subscribe_statnumber {
    display: block;
    font-family: 'Spectral', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.nsopg__subscribe_statlabel {
    color: #c6c0d8;
    font-size: 1.1rem;
}

.nsopg__subscribe_unsubscribeModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.nsopg__subscribe_modalcontent {
    background: #0f0d1f;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid #6dd3c0;
    box-shadow: 0 20px 60px rgba(109, 211, 192, 0.35);
}

.nsopg__subscribe_modalicon {
    font-size: 4rem;
    color: #6dd3c0;
    margin-bottom: 1.5rem;
}

.nsopg__subscribe_modalcontent h2 {
    font-family: 'Spectral', serif;
    font-size: 2rem;
    color: #f3f0ff;
    margin-bottom: 1rem;
}

.nsopg__subscribe_modalcontent p {
    color: #c6c0d8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.nsopg__subscribe_modalclose {
    background: #8b5cf6;
    color: #0f0d1f;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
}

.nsopg__subscribe_modalclose:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.35);
}

@media (max-width: 768px) {
    .nsopg__subscribe_hero {
        padding: 4rem 1.5rem;
    }
    
    .nsopg__subscribe_content h1 {
        font-size: 2.5rem;
    }
    
    .nsopg__subscribe_subtitle {
        font-size: 1.1rem;
    }
    
    .nsopg__subscribe_formsection {
        padding: 2rem;
    }
    
    .nsopg__subscribe_featurecontent {
        flex-direction: column;
        gap: 3rem;
    }
    
    .nsopg__subscribe_benefits,
    .nsopg__subscribe_features,
    .nsopg__subscribe_community {
        padding: 4rem 1.5rem;
    }

    .nsopg__subscribe_orb3,
    .nsopg__subscribe_orb1 {
        left: 0;
    }
    
    .nsopg__subscribe_actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nsopg__subscribe_hero {
        padding: 3rem 0.3rem;
    }
    
    .nsopg__subscribe_content h1 {
        font-size: 2rem;
        padding: 0 0.5rem;
    }
    
    .nsopg__subscribe_subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .nsopg__subscribe_formsection {
        padding: 1.5rem 0.5rem;
        margin: 0 0.3rem;
    }
    
    .nsopg__subscribe_input {
        padding: 1rem 1rem 1rem 2.5rem;
        font-size: 14px;
    }
    
    .nsopg__subscribe_success {
        padding: 2rem 0.5rem;
        margin: 0 0.3rem;
    }
    
    .nsopg__subscribe_benefits,
    .nsopg__subscribe_features,
    .nsopg__subscribe_community {
        padding: 3rem 0.3rem;
    }
    
    .nsopg__subscribe_benefit {
        padding: 1.5rem 0.5rem;
        margin: 0 0.3rem;
    }
    
    .nsopg__subscribe_benefit:hover {
        transform: none;
    }
    
    .nsopg__subscribe_featuretext h2 {
        font-size: 2rem;
        padding: 0 0.5rem;
    }
    
    .nsopg__subscribe_featuretext p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .nsopg__subscribe_communitystats {
        gap: 2rem;
    }
    
    .nsopg__subscribe_statnumber {
        font-size: 2.5rem;
    }
    
    .nsopg__subscribe_modalcontent {
        margin: 1rem;
        padding: 2rem;
    }
}



