:root {
    
    --color-dark-primary: #0B0E18;
    --color-dark-secondary: #121A2C;
    --color-purple: #8A2BE2;
    --color-blue: #4169E1;
    --color-highlight: #00FFFF;
    --color-neon-pink: #FF00FF;
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #B8C0D9;
    --color-success: #00FA9A;
    --color-alert: #FF4500;
    --color-border: #33417A;
    
    
    --gradient-primary: linear-gradient(135deg, #8A2BE2, #4169E1);
    --gradient-purple-dark: linear-gradient(135deg, #8A2BE2, #121A2C);
    --gradient-blue-dark: linear-gradient(135deg, #4169E1, #121A2C);
    
    
    --font-family: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    
    
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;
    --space-xxxl: 5rem;
    
    
    --container-max-width: 1280px;
    --header-height: 80px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    
    --z-header: 100;
    --z-modal: 200;
    --z-cookie-consent: 300;
    --z-stars-overlay: 0;
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-dark-primary);
    overflow-x: hidden;
    padding-top: var(--header-height);
    font-weight: 400;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul, ol {
    list-style-position: inside;
}

button {
    font-family: var(--font-family);
    cursor: pointer;
    background: none;
    border: none;
}


.iti {
    width: 100%;
}


.ns-body {
    position: relative;
}

.ns-stars-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj4KPGcgb3BhY2l0eT0iMC4zIj4KPGNpcmNsZSBmaWxsPSIjZmZmIiBjeD0iMTAiIGN5PSIxNSIgcj0iMC41Ii8+CjxjaXJjbGUgZmlsbD0iI2ZmZiIgY3g9IjI1IiBjeT0iMzAiIHI9IjAuMyIvPgo8Y2lyY2xlIGZpbGw9IiNmZmYiIGN4PSI0MCIgY3k9IjEwIiByPSIwLjYiLz4KPGNpcmNsZSBmaWxsPSIjZmZmIiBjeD0iNTUiIGN5PSI0MCIgcj0iMC40Ii8+CjxjaXJjbGUgZmlsbD0iI2ZmZiIgY3g9IjcwIiBjeT0iMjAiIHI9IjAuMiIvPgo8Y2lyY2xlIGZpbGw9IiNmZmYiIGN4PSI4NSIgY3k9IjUwIiByPSIwLjUiLz4KPGNpcmNsZSBmaWxsPSIjZmZmIiBjeD0iOTUiIGN5PSIzMCIgcj0iMC4zIi8+CjxjaXJjbGUgZmlsbD0iI2ZmZiIgY3g9IjE1IiBjeT0iNjAiIHI9IjAuNCIvPgo8Y2lyY2xlIGZpbGw9IiNmZmYiIGN4PSIzMCIgY3k9IjgwIiByPSIwLjIiLz4KPGNpcmNsZSBmaWxsPSIjZmZmIiBjeD0iNDUiIGN5PSI3MCIgcj0iMC41Ii8+CjxjaXJjbGUgZmlsbD0iI2ZmZiIgY3g9IjYwIiBjeT0iOTAiIHI9IjAuMyIvPgo8Y2lyY2xlIGZpbGw9IiNmZmYiIGN4PSI3NSIgY3k9IjgwIiByPSIwLjIiLz4KPGNpcmNsZSBmaWxsPSIjZmZmIiBjeD0iOTAiIGN5PSI2MCIgcj0iMC40Ii8+CjxjaXJjbGUgZmlsbD0iI2ZmZiIgY3g9IjUiIGN5PSI4NSIgcj0iMC4zIi8+CjxjaXJjbGUgZmlsbD0iI2ZmZiIgY3g9IjIwIiBjeT0iOTUiIHI9IjAuMiIvPgo8Y2lyY2xlIGZpbGw9IiNmZmYiIGN4PSI4MCIgY3k9IjUiIHI9IjAuMiIvPgo8L2c+Cjwvc3ZnPg==');
    background-size: 500px 500px;
    z-index: var(--z-stars-overlay);
    pointer-events: none;
    opacity: 0.4;
}

.ns-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}


.ns-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(11, 14, 24, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: var(--z-header);
}

.ns-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    margin-top: 15px;
}

.ns-logo {
    display: block;
    height: 40px;
}

.ns-logo img {
    height: 100%;
    width: auto;
}

.ns-nav {
    display: flex;
    align-items: center;
}

.ns-menu {
    display: flex;
    list-style: none;
}

.ns-menu li {
    margin-left: var(--space-lg);
    position: relative;
}

.ns-menu a {
    font-weight: 500;
    padding: var(--space-sm) var(--space-sm);
    color: var(--color-text-secondary);
    position: relative;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
}

.ns-menu a:hover,
.ns-menu a.ns-active {
    color: var(--color-text-primary);
}

.ns-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transform: scaleX(0.6);
    transform-origin: center;
    transition: all 0.3s ease;
}

.ns-menu a:hover::after,
.ns-menu a.ns-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.ns-menu-toggle {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 10;
}

.ns-menu-icon,
.ns-menu-icon::before,
.ns-menu-icon::after {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-primary);
    position: absolute;
    transition: all 0.3s ease;
}

.ns-menu-icon {
    top: 50%;
    transform: translateY(-50%);
}

.ns-menu-icon::before,
.ns-menu-icon::after {
    content: '';
    left: 0;
}

.ns-menu-icon::before {
    top: -8px;
}

.ns-menu-icon::after {
    top: 8px;
}

.ns-menu-toggle.ns-active .ns-menu-icon {
    background-color: transparent;
}

.ns-menu-toggle.ns-active .ns-menu-icon::before {
    transform: rotate(45deg) translate(6px, 6px);
}

.ns-menu-toggle.ns-active .ns-menu-icon::after {
    transform: rotate(-45deg) translate(5px, -5px);
}


.ns-hero {
    position: relative;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    padding: var(--space-xxxl) 0;
    overflow: hidden;
}

.ns-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 14, 24, 0.8), rgba(11, 14, 24, 0.7));
    z-index: 1;
}

.ns-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl) 0;
}

.ns-title {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: var(--space-xl);
    background: linear-gradient(to right, var(--color-highlight), var(--color-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
}

.ns-subtitle {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: var(--space-xl);
    color: var(--color-text-secondary);
    font-weight: 400;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.ns-small-hero {
    min-height: 400px;
}


.ns-section {
    padding: var(--space-xxl) 0;
    position: relative;
}

.ns-dark-section {
    background-color: var(--color-dark-primary);
    position: relative;
}

.ns-gradient-section {
    background: linear-gradient(135deg, #121A2C, #0B0E18);
    position: relative;
}

.ns-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-xxl);
    text-align: center;
    position: relative;
}

.ns-section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.ns-section-title.ns-left-align {
    text-align: left;
}

.ns-section-title.ns-left-align::after {
    left: 0;
    transform: none;
}

.ns-description {
    font-size: 1.2rem;
    margin-bottom: var(--space-xl);
    color: var(--color-text-secondary);
}

.ns-lead-text {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: var(--space-xl);
    color: var(--color-text-secondary);
}


.ns-button {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1rem;
    border: none;
}

.ns-button-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.3);
}

.ns-button-primary:hover {
    box-shadow: 0 6px 25px rgba(138, 43, 226, 0.5);
    transform: translateY(-2px);
}

.ns-button-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 2px solid var(--color-purple);
}

.ns-button-secondary:hover {
    background: rgba(138, 43, 226, 0.1);
}

.ns-button-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.ns-button-outline:hover {
    border-color: var(--color-purple);
    background: rgba(138, 43, 226, 0.1);
}

.ns-button-text {
    background: transparent;
    color: var(--color-purple);
    padding: 0.5rem 0;
    position: relative;
}

.ns-button-text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--color-purple);
    bottom: 0;
    left: 0;
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.ns-button-text:hover::after {
    transform: scaleX(1);
}

.ns-button.ns-full-width {
    width: 100%;
    display: block;
}

.ns-button i {
    margin-left: 0.5rem;
}


.ns-cosmic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.ns-cosmic-card {
    background: rgba(18, 26, 44, 0.6);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: var(--space-xl);
    box-shadow: 0 8px 32px rgba(11, 14, 24, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ns-cosmic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(11, 14, 24, 0.3);
    border-color: var(--color-purple);
}

.ns-cosmic-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--color-highlight);
    text-align: center;
}

.ns-cosmic-card-title {
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
    font-weight: 600;
}


.ns-learning-path {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.ns-learning-node {
    display: flex;
    background: rgba(18, 26, 44, 0.6);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--color-purple);
    overflow: hidden;
    transition: all 0.3s ease;
}

.ns-learning-node:hover {
    transform: translateX(5px);
    background: rgba(18, 26, 44, 0.8);
}

.ns-node-number {
    background: var(--gradient-primary);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ns-node-content {
    padding: var(--space-lg);
}

.ns-node-content h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    font-weight: 600;
}


.ns-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.ns-guide-card {
    height: 500px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 32px rgba(11, 14, 24, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-end;
}

.ns-guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 14, 24, 0.95) 30%, rgba(11, 14, 24, 0.5) 100%);
}

.ns-guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(65, 105, 225, 0.3);
}

.ns-guide-content {
    position: relative;
    padding: var(--space-xl);
    width: 100%;
}

.ns-guide-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: white;
    font-weight: 600;
}

.ns-guide-steps {
    list-style: decimal;
    list-style-position: outside;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-xl);
    color: var(--color-text-secondary);
}

.ns-guide-steps li {
    margin-bottom: var(--space-sm);
}


.ns-hazards-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.ns-hazard {
    display: flex;
    gap: var(--space-lg);
    background: rgba(18, 26, 44, 0.6);
    border-radius: var(--border-radius-md);
    padding: var(--space-lg);
    border-left: 4px solid var(--color-alert);
    transition: all 0.3s ease;
}

.ns-hazard:hover {
    background: rgba(18, 26, 44, 0.8);
    transform: translateX(5px);
}

.ns-hazard-icon {
    color: var(--color-alert);
    font-size: 2rem;
    min-width: 40px;
    text-align: center;
}

.ns-hazard-content h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    font-weight: 600;
}


.ns-flex-section {
    display: flex;
    align-items: center;
    gap: var(--space-xxl);
    margin: var(--space-xl) 0;
}

.ns-flex-reverse {
    flex-direction: row-reverse;
}

.ns-flex-content {
    flex: 1;
}

.ns-flex-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ns-orbital-image {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(11, 14, 24, 0.4);
    max-height: 500px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.ns-orbital-image:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(65, 105, 225, 0.3);
}


.ns-subscription-tools {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.ns-tool {
    padding: var(--space-lg);
    background: rgba(18, 26, 44, 0.6);
    border-radius: var(--border-radius-md);
    border-left: 3px solid var(--color-blue);
}

.ns-tool h4 {
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
    font-weight: 600;
}

.ns-tool h4 i {
    margin-right: var(--space-sm);
    color: var(--color-highlight);
}


.ns-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
}

.ns-contact-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.ns-contact-intro {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

.ns-contact-form-wrapper {
    background: rgba(18, 26, 44, 0.6);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 32px rgba(11, 14, 24, 0.3);
}

.ns-contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.ns-form-field {
    display: flex;
    flex-direction: column;
}

.ns-form-field label {
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.ns-form-field input,
.ns-form-field textarea {
    padding: 1rem;
    background: rgba(11, 14, 24, 0.8);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    color: var(--color-text-primary);
    font-family: var(--font-family);
    transition: all 0.3s ease;
}

.ns-form-field input:focus,
.ns-form-field textarea:focus {
    outline: none;
    border-color: var(--color-purple);
    box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.2);
}

.ns-checkbox-field {
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
}

.ns-checkbox-field input {
    width: auto;
    margin-top: 0;
    accent-color: var(--color-purple);
}

.ns-link {
    color: var(--color-highlight);
    border-bottom: 1px dotted var(--color-highlight);
    transition: all 0.3s ease;
}

.ns-link:hover {
    border-bottom-style: solid;
}


.ns-blog-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.ns-blog-card {
    background: rgba(18, 26, 44, 0.6);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(11, 14, 24, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ns-blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-purple);
    box-shadow: 0 12px 40px rgba(11, 14, 24, 0.4);
}

.ns-blog-image {
    height: 220px;
    overflow: hidden;
}

.ns-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.ns-blog-card:hover .ns-blog-image img {
    transform: scale(1.05);
}

.ns-blog-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ns-blog-meta {
    margin-bottom: var(--space-sm);
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.ns-blog-date {
    margin-right: var(--space-md);
}

.ns-blog-title {
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
    line-height: 1.4;
    font-weight: 600;
}

.ns-blog-excerpt {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.ns-cta-center {
    display: flex;
    justify-content: center;
    margin-top: var(--space-xl);
}


.ns-cta-section {
    padding: var(--space-xxxl) 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.ns-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 14, 24, 0.8);
}

.ns-cta-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.ns-cta-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.ns-cta-text {
    font-size: 1.2rem;
    margin-bottom: var(--space-xl);
    color: var(--color-text-secondary);
}

.ns-cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}


.ns-footer {
    background-color: var(--color-dark-secondary);
    padding: var(--space-xxl) 0 var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.ns-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-xxl);
    margin-bottom: var(--space-xl);
}

.ns-footer-logo {
    display: block;
    margin-bottom: var(--space-lg);
}

.ns-footer-tagline {
    margin-bottom: var(--space-xl);
    color: var(--color-text-secondary);
    font-style: italic;
}

.ns-footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    font-style: normal;
}

.ns-footer-contact i {
    margin-right: var(--space-sm);
    color: var(--color-highlight);
}

.ns-footer-contact a:hover {
    color: var(--color-highlight);
}

.ns-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.ns-footer-col h4 {
    margin-bottom: var(--space-lg);
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.ns-footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-purple);
}

.ns-footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.ns-footer-col a,
.ns-cookie-settings-btn {
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
    text-align: left;
}

.ns-footer-col a:hover,
.ns-cookie-settings-btn:hover {
    color: var(--color-highlight);
    transform: translateX(3px);
}

.ns-footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.ns-footer-meta {
    display: flex;
    gap: var(--space-lg);
}


.ns-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 26, 44, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--color-border);
    padding: var(--space-lg);
    z-index: var(--z-cookie-consent);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s ease;
}

.ns-cookie-consent.ns-show {
    transform: translateY(0);
    opacity: 1;
}

.ns-cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.ns-cookie-text {
    flex: 1;
    min-width: 280px;
}

.ns-cookie-text h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.ns-cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.ns-cookie-btn {
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.ns-cookie-btn.ns-accept {
    background: var(--gradient-primary);
    color: white;
}

.ns-cookie-btn.ns-necessary {
    background: transparent;
    border: 1px solid var(--color-text-secondary);
    color: var(--color-text-secondary);
}

.ns-cookie-btn.ns-customize {
    background: transparent;
    color: var(--color-highlight);
    border: 1px solid var(--color-highlight);
}

.ns-cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


.ns-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 14, 24, 0.8);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.ns-modal.ns-modal-active {
    opacity: 1;
    visibility: visible;
}

.ns-modal-content {
    background: var(--color-dark-secondary);
    border-radius: var(--border-radius-lg);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--color-border);
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.ns-modal.ns-modal-active .ns-modal-content {
    transform: translateY(0);
}

.ns-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid var(--color-border);
}

.ns-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.ns-modal-close {
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}

.ns-modal-close:hover {
    color: var(--color-text-primary);
}

.ns-modal-body {
    padding: var(--space-xl);
}

.ns-cookie-category {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.ns-cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ns-cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.ns-cookie-category-header h4 {
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.ns-cookie-category-header p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.ns-cookie-toggle {
    position: relative;
    min-width: 50px;
    height: 26px;
}

.ns-cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.ns-cookie-toggle label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-dark-primary);
    border-radius: 34px;
    cursor: pointer;
    transition: 0.4s;
}

.ns-cookie-toggle label:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: var(--color-text-secondary);
    border-radius: 50%;
    transition: 0.4s;
}

.ns-cookie-toggle input:checked + label {
    background-color: var(--color-purple);
}

.ns-cookie-toggle input:checked + label:before {
    transform: translateX(24px);
    background-color: white;
}

.ns-cookie-toggle.ns-disabled label {
    opacity: 0.7;
    cursor: not-allowed;
}

.ns-modal-footer {
    padding: var(--space-lg) var(--space-xl);
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: flex-end;
}

.ns-success-modal {
    max-width: 450px;
    padding: var(--space-xxl);
    text-align: center;
}

.ns-success-icon {
    font-size: 3rem;
    color: var(--color-success);
    margin-bottom: var(--space-lg);
}

.ns-success-modal h3 {
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.ns-success-modal p {
    color: var(--color-text-secondary);
    margin-bottom: 0;
}


.ns-blog-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xxl);
    font-size: 1.2rem;
    color: var(--color-text-secondary);
}

.ns-articles-heading {
    font-size: 2rem;
    margin-bottom: var(--space-lg);
    font-weight: 700;
}

.ns-blog-articles {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.ns-article-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-lg);
    background: rgba(18, 26, 44, 0.6);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(11, 14, 24, 0.3);
}

.ns-article-card:hover {
    border-color: var(--color-purple);
    box-shadow: 0 12px 40px rgba(11, 14, 24, 0.4);
    transform: translateX(5px);
}

.ns-article-image {
    height: 100%;
    min-height: 220px;
    overflow: hidden;
}

.ns-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.ns-article-card:hover .ns-article-image img {
    transform: scale(1.05);
}

.ns-article-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
}

.ns-article-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.ns-article-category {
    color: var(--color-highlight);
    font-weight: 500;
}

.ns-article-title {
    font-size: 1.6rem;
    margin-bottom: var(--space-md);
    line-height: 1.3;
    font-weight: 600;
}

.ns-article-excerpt {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    flex-grow: 1;
    line-height: 1.6;
}

.ns-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ns-reading-time {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.ns-reading-time i {
    margin-right: var(--space-xs);
}


.ns-article {
    margin-bottom: var(--space-xxl);
}

.ns-article-header {
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: var(--space-xxl) 0;
}

.ns-article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 14, 24, 0.95) 20%, rgba(11, 14, 24, 0.7) 50%, rgba(11, 14, 24, 0.5) 100%);
}

.ns-article-header-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.ns-article-title {
    font-size: 2.5rem;
    line-height: 1.3;
    margin: var(--space-md) 0;
    font-weight: 700;
}

.ns-article-author {
    display: flex;
    align-items: center;
    margin-top: var(--space-md);
}

.ns-article-content {
    max-width: 800px;
    margin: var(--space-xxl) auto;
    line-height: 1.7;
}

.ns-article-intro {
    font-size: 1.3rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
    font-weight: 400;
    border-left: 3px solid var(--color-purple);
    padding-left: var(--space-lg);
}

.ns-article-content h2 {
    font-size: 1.8rem;
    margin: var(--space-xl) 0 var(--space-lg);
    font-weight: 700;
    color: var(--color-text-primary);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-border);
}

.ns-article-content h3 {
    font-size: 1.4rem;
    margin: var(--space-lg) 0 var(--space-md);
    font-weight: 600;
    color: var(--color-text-primary);
}

.ns-article-content h4 {
    font-size: 1.2rem;
    margin: var(--space-md) 0 var(--space-sm);
    font-weight: 600;
    color: var(--color-text-primary);
}

.ns-article-content p {
    margin-bottom: var(--space-md);
    color: var(--color-text-secondary);
}

.ns-article-content ul,
.ns-article-content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
    color: var(--color-text-secondary);
}

.ns-article-content li {
    margin-bottom: var(--space-sm);
}

.ns-article-content ul li {
    list-style-type: disc;
}

.ns-article-content ol li {
    list-style-type: decimal;
}

.ns-info-box,
.ns-warning-box {
    margin: var(--space-lg) 0;
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    border-left: 4px solid;
    background-color: rgba(18, 26, 44, 0.6);
}

.ns-info-box {
    border-color: var(--color-highlight);
}

.ns-warning-box {
    border-color: var(--color-alert);
}

.ns-info-box h4,
.ns-warning-box h4 {
    display: flex;
    align-items: center;
    margin-top: 0;
}

.ns-info-box h4 i,
.ns-warning-box h4 i {
    margin-right: var(--space-sm);
}

.ns-info-box h4 i {
    color: var(--color-highlight);
}

.ns-warning-box h4 i {
    color: var(--color-alert);
}

.ns-case-study {
    background: rgba(18, 26, 44, 0.6);
    border-radius: var(--border-radius-md);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    border-left: 4px solid var(--color-purple);
}

.ns-case-study h4 {
    margin-top: 0;
    color: var(--color-purple);
}

.ns-psychology-points,
.ns-auth-methods,
.ns-password-strategies,
.ns-subscription-practices,
.ns-trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

.ns-psych-point,
.ns-auth-method,
.ns-strategy,
.ns-practice,
.ns-trend {
    background: rgba(18, 26, 44, 0.6);
    border-radius: var(--border-radius-md);
    padding: var(--space-lg);
}

.ns-table-wrapper {
    margin: var(--space-lg) 0;
    overflow-x: auto;
}

.ns-comparison-table,
.ns-decision-table,
.ns-cancellation-table,
.ns-cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-md) 0;
    font-size: 0.95rem;
}

.ns-comparison-table th,
.ns-decision-table th,
.ns-cancellation-table th,
.ns-cookie-table th {
    background-color: rgba(18, 26, 44, 0.8);
    color: var(--color-text-primary);
    text-align: left;
    padding: var(--space-md);
    font-weight: 600;
    border-bottom: 2px solid var(--color-border);
}

.ns-comparison-table td,
.ns-decision-table td,
.ns-cancellation-table td,
.ns-cookie-table td {
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    vertical-align: top;
}

.ns-comparison-table tr:last-child td,
.ns-decision-table tr:last-child td,
.ns-cancellation-table tr:last-child td,
.ns-cookie-table tr:last-child td {
    border-bottom: none;
}

.ns-comparison-table tr:nth-child(even),
.ns-decision-table tr:nth-child(even),
.ns-cancellation-table tr:nth-child(even),
.ns-cookie-table tr:nth-child(even) {
    background-color: rgba(18, 26, 44, 0.4);
}

.ns-audit-framework {
    margin: var(--space-lg) 0;
}

.ns-audit-step {
    padding: var(--space-md) var(--space-lg);
    border-left: 3px solid var(--color-purple);
    margin-bottom: var(--space-md);
    background: rgba(18, 26, 44, 0.4);
}

.ns-audit-step h4 {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.ns-step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-right: var(--space-sm);
    font-weight: 700;
    font-size: 1.1rem;
}

.ns-reference-section {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.ns-references {
    padding-left: var(--space-lg);
}

.ns-references li {
    margin-bottom: var(--space-sm);
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.ns-scam-analysis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin: var(--space-md) 0 var(--space-lg);
}

.ns-scam-details,
.ns-warning-signs {
    background: rgba(18, 26, 44, 0.6);
    border-radius: var(--border-radius-md);
    padding: var(--space-lg);
}

.ns-scam-details {
    border-left: 3px solid var(--color-purple);
}

.ns-warning-signs {
    border-left: 3px solid var(--color-alert);
}

.ns-scam-details h4,
.ns-warning-signs h4 {
    margin-top: 0;
    margin-bottom: var(--space-md);
}

.ns-warning-signs h4 {
    color: var(--color-alert);
}

.ns-verification-steps {
    margin: var(--space-lg) 0;
}

.ns-step {
    background: rgba(18, 26, 44, 0.4);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    border-left: 3px solid var(--color-blue);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.ns-step h4 {
    margin-top: 0;
    color: var(--color-blue);
}


.ns-legal-hero {
    min-height: 300px;
}

.ns-legal-title {
    font-size: 3rem;
}

.ns-legal-date {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
}

.ns-legal-content {
    max-width: 850px;
    margin: var(--space-xl) auto;
}

.ns-legal-intro {
    font-size: 1.2rem;
    margin-bottom: var(--space-xl);
    color: var(--color-text-secondary);
}

.ns-legal-section {
    margin-bottom: var(--space-xxl);
}

.ns-legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: var(--space-lg);
    font-weight: 700;
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-border);
}

.ns-legal-section h3 {
    font-size: 1.4rem;
    margin: var(--space-lg) 0 var(--space-md);
    font-weight: 600;
}

.ns-legal-section p {
    margin-bottom: var(--space-md);
    color: var(--color-text-secondary);
}

.ns-legal-section ul,
.ns-legal-section ol {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
    color: var(--color-text-secondary);
}

.ns-legal-section li {
    margin-bottom: var(--space-sm);
}

.ns-contact-details-legal {
    background: rgba(18, 26, 44, 0.6);
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    margin-top: var(--space-md);
}

.ns-manage-cookies {
    background: rgba(18, 26, 44, 0.6);
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    margin: var(--space-lg) 0;
    text-align: center;
}

.ns-manage-cookies h4 {
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.ns-manage-cookies p {
    margin-bottom: var(--space-md);
}


.ns-contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    align-items: flex-start;
}

.ns-contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.ns-contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
}

.ns-contact-icon {
    font-size: 1.5rem;
    color: var(--color-highlight);
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ns-contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.ns-hours,
.ns-response-time {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-top: var(--space-xs);
}

.ns-cta-block {
    background: rgba(18, 26, 44, 0.6);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    border-left: 4px solid var(--color-purple);
}

.ns-cta-block h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.ns-cta-block p {
    margin-bottom: var(--space-md);
    color: var(--color-text-secondary);
}

.ns-map-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ns-map-container h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.ns-map {
    flex-grow: 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 450px;
    border: 1px solid var(--color-border);
}

.ns-map iframe {
    height: 100%;
    width: 100%;
}


.ns-faq-wrapper {
    margin-top: var(--space-xl);
}

.ns-accordion-item {
    background: rgba(18, 26, 44, 0.6);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: var(--space-md);
    border: 1px solid var(--color-border);
}

.ns-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ns-accordion-header:hover {
    background: rgba(138, 43, 226, 0.1);
}

.ns-accordion-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    padding-right: var(--space-md);
}

.ns-accordion-icon {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}

.ns-accordion-item.active .ns-accordion-icon {
    transform: rotate(45deg);
    color: var(--color-highlight);
}

.ns-accordion-content {
    padding: 0 var(--space-lg);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ns-accordion-item.active .ns-accordion-content {
    padding: 0 var(--space-lg) var(--space-lg);
    max-height: 500px;
    border-top: 1px solid var(--color-border);
}

.ns-accordion-content p {
    color: var(--color-text-secondary);
}


.ns-thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xxxl) 0;
}

.ns-thanks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 14, 24, 0.8);
    z-index: 1;
}

.ns-thanks-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    background: rgba(18, 26, 44, 0.8);
    padding: var(--space-xxl);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.ns-thanks-icon {
    font-size: 5rem;
    color: var(--color-success);
    margin-bottom: var(--space-xl);
}

.ns-thanks-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
    font-weight: 700;
}

.ns-thanks-message {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.ns-action-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.ns-additional-info {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.ns-additional-info h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.ns-resource-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.ns-resource-link {
    padding: var(--space-md);
    background: rgba(11, 14, 24, 0.6);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.ns-resource-link:hover {
    background: rgba(138, 43, 226, 0.2);
    transform: translateY(-3px);
}

.ns-resource-link i {
    color: var(--color-highlight);
}


.ns-checklist-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.ns-checklist-category {
    background: rgba(18, 26, 44, 0.6);
    border-radius: var(--border-radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.ns-checklist-category h3 {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-lg);
    font-size: 1.3rem;
    font-weight: 600;
}

.ns-checklist-category h3 i {
    margin-right: var(--space-sm);
    color: var(--color-highlight);
}

.ns-checklist {
    list-style: none;
}

.ns-checklist li {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.ns-check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: var(--space-md);
    flex-shrink: 0;
}

.ns-do .ns-check-icon {
    background-color: rgba(0, 250, 154, 0.2);
    color: var(--color-success);
}

.ns-dont .ns-check-icon {
    background-color: rgba(255, 69, 0, 0.2);
    color: var(--color-alert);
}

.ns-check-text {
    flex: 1;
}


.ns-gift-card-security,
.ns-subscription-security {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
    margin: var(--space-xl) 0;
}

.ns-gc-content,
.ns-sub-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.ns-gift-card-checks,
.ns-refund-claims {
    background: rgba(18, 26, 44, 0.6);
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    border-left: 3px solid var(--color-highlight);
}

.ns-section-subtitle {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.ns-check-list {
    padding-left: var(--space-lg);
}

.ns-check-list li {
    margin-bottom: var(--space-sm);
    list-style: disc;
}

.ns-ordered-list {
    padding-left: var(--space-lg);
}

.ns-ordered-list li {
    margin-bottom: var(--space-sm);
}

.ns-risk-scenarios {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.ns-scenario {
    background: rgba(18, 26, 44, 0.4);
    padding: var(--space-md);
    border-radius: var(--border-radius-sm);
    border-left: 2px solid var(--color-border);
}

.ns-scenario h4 {
    margin-top: 0;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
}

.ns-scenario h4 i {
    margin-right: var(--space-sm);
    color: var(--color-purple);
}

.ns-scenario p {
    margin-bottom: var(--space-sm);
}

.ns-scenario p:last-child {
    margin-bottom: 0;
}

.ns-scenario p strong {
    color: var(--color-text-primary);
}

.ns-priority-note {
    background: rgba(0, 250, 154, 0.1);
    padding: var(--space-md);
    border-radius: var(--border-radius-md);
    border-left: 3px solid var(--color-success);
    margin-top: var(--space-md);
}

.ns-recommendation,
.ns-example-box,
.ns-tier-system {
    background: rgba(11, 14, 24, 0.6);
    padding: var(--space-md);
    border-radius: var(--border-radius-sm);
    margin-top: var(--space-sm);
}

.ns-recommendation p,
.ns-example-box p,
.ns-tier-system p {
    margin-bottom: var(--space-xs);
}

.ns-recommendation p:last-child,
.ns-example-box p:last-child,
.ns-tier-system p:last-child {
    margin-bottom: 0;
}


@media (max-width: 1024px) {
    .ns-title {
        font-size: 3.5rem;
    }
    
    .ns-subtitle {
        font-size: 1.3rem;
    }
    
    .ns-section-title {
        font-size: 2.2rem;
    }
    
    .ns-flex-section {
        flex-direction: column;
    }
    
    .ns-flex-content,
    .ns-flex-image {
        width: 100%;
    }
    
    .ns-contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .ns-footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .ns-article-card {
        grid-template-columns: 1fr;
    }
    
    .ns-article-image {
        height: 240px;
    }
    
    .ns-checklist-wrapper {
        grid-template-columns: 1fr;
    }
    
    .ns-gift-card-security,
    .ns-subscription-security {
        grid-template-columns: 1fr;
    }
    
    .ns-contact-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .ns-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-dark-secondary);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--header-height) + var(--space-md)) var(--space-lg) var(--space-lg);
        z-index: 9;
        transition: all 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
        border-left: 1px solid var(--color-border);
        overflow-y: auto;
    }
    
    .ns-menu.ns-active {
        right: 0;
    }
    
    .ns-menu li {
        margin: 0;
        width: 100%;
    }
    
    .ns-menu a {
        padding: var(--space-md) 0;
        display: block;
        font-size: 1.2rem;
    }
    
    .ns-menu-toggle {
        display: block;
    }
    
    .ns-title {
        font-size: 2.8rem;
    }
    
    .ns-subtitle {
        font-size: 1.1rem;
    }
    
    .ns-section-title {
        font-size: 2rem;
    }
    
    .ns-cosmic-grid,
    .ns-guides-grid {
        grid-template-columns: 1fr;
    }
    
    .ns-hero {
        min-height: 500px;
        padding: var(--space-xl) 0;
    }
    
    .ns-cookie-content {
        flex-direction: column;
    }
    
    .ns-cookie-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .ns-footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .ns-footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        align-items: center;
    }
    
    .ns-blog-preview {
        grid-template-columns: 1fr;
    }
    
    .ns-article-header {
        height: 400px;
    }
    
    .ns-article-title {
        font-size: 2rem;
    }
    
    .ns-psychology-points,
    .ns-auth-methods,
    .ns-password-strategies,
    .ns-subscription-practices,
    .ns-trends-grid {
        grid-template-columns: 1fr;
    }
    
    .ns-scam-analysis {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ns-hero {
        min-height: 400px;
    }
    
    .ns-title {
        font-size: 2.2rem;
    }
    
    .ns-subtitle {
        font-size: 1rem;
    }
    
    .ns-section-title {
        font-size: 1.8rem;
    }
    
    .ns-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .ns-cta-buttons .ns-button {
        width: 100%;
    }
    
    .ns-action-buttons {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .ns-action-buttons .ns-button {
        width: 100%;
    }
}

#phone {
  width: 100%;
}


.ns-about-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--space-xxl);
}

.ns-about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  font-size: 1.1rem;
  line-height: 1.7;
}

.ns-about-content p {
  color: var(--color-text-secondary);
}


.ns-methodology-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.ns-method-point {
  background: rgba(18, 26, 44, 0.4);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  border-left: 3px solid var(--color-purple);
  transition: all 0.3s ease;
}

.ns-method-point:hover {
  background: rgba(18, 26, 44, 0.6);
  transform: translateX(5px);
}

.ns-method-point h4 {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.ns-method-point h4 i {
  margin-right: var(--space-md);
  color: var(--color-highlight);
  font-size: 1.3rem;
  min-width: 24px;
}

.ns-method-point p {
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}


.ns-topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.ns-topic-card {
  background: rgba(18, 26, 44, 0.6);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 8px 32px rgba(11, 14, 24, 0.2);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ns-topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(11, 14, 24, 0.3);
  border-color: var(--color-purple);
}

.ns-topic-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
  color: var(--color-highlight);
  text-align: center;
}

.ns-topic-card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-lg);
  font-weight: 600;
  text-align: center;
  color: var(--color-text-primary);
}

.ns-topic-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.ns-topic-list li {
  padding: var(--space-sm) 0;
  color: var(--color-text-secondary);
  position: relative;
  padding-left: var(--space-lg);
  line-height: 1.5;
}

.ns-topic-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--color-purple);
  font-weight: bold;
}

.ns-topic-list li:hover {
  color: var(--color-text-primary);
}


.ns-standards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.ns-standard-block {
  display: flex;
  gap: var(--space-lg);
  background: rgba(18, 26, 44, 0.6);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  border-left: 4px solid var(--color-blue);
  transition: all 0.3s ease;
}

.ns-standard-block:hover {
  background: rgba(18, 26, 44, 0.8);
  transform: translateY(-3px);
}

.ns-standard-icon {
  color: var(--color-highlight);
  font-size: 2rem;
  min-width: 40px;
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: var(--space-xs);
}

.ns-standard-content h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  font-weight: 600;
  color: var(--color-text-primary);
}

.ns-standard-content p {
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}


.iti__country-list {
  background-color: var(--color-dark-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  box-shadow: 0 8px 32px rgba(11, 14, 24, 0.4);
}

.iti__country {
  padding: var(--space-sm) var(--space-md);
  color: var(--color-text-primary);
  transition: all 0.3s ease;
}

.iti__country:hover {
  background-color: rgba(138, 43, 226, 0.1);
}

.iti__selected-flag {
  background-color: rgba(11, 14, 24, 0.8);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
}

.iti__arrow {
  border-top-color: var(--color-text-secondary);
}


.ns-form-field.ns-error input,
.ns-form-field.ns-error textarea {
  border-color: var(--color-alert);
  box-shadow: 0 0 0 2px rgba(255, 69, 0, 0.2);
}

.ns-form-field.ns-success input,
.ns-form-field.ns-success textarea {
  border-color: var(--color-success);
  box-shadow: 0 0 0 2px rgba(0, 250, 154, 0.2);
}

.ns-error-message {
  color: var(--color-alert);
  font-size: 0.9rem;
  margin-top: var(--space-xs);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.ns-success-message {
  color: var(--color-success);
  font-size: 0.9rem;
  margin-top: var(--space-xs);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}


.ns-loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.ns-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid var(--color-purple);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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


@media (max-width: 1024px) {
  .ns-methodology-points {
      gap: var(--space-md);
  }
  
  .ns-topics-grid {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .ns-standards-wrapper {
      grid-template-columns: 1fr;
  }
  
  .ns-standard-block {
      flex-direction: column;
      text-align: center;
  }
  
  .ns-standard-icon {
      align-self: center;
      padding-top: 0;
  }
}

@media (max-width: 768px) {
  .ns-topics-grid {
      grid-template-columns: 1fr;
  }
  
  .ns-method-point {
      padding: var(--space-md);
  }
  
  .ns-method-point h4 {
      flex-direction: column;
      align-items: flex-start;
      gap: var(--space-sm);
  }
  
  .ns-method-point h4 i {
      margin-right: 0;
      margin-bottom: var(--space-xs);
  }
}

@media (max-width: 480px) {
  .ns-topic-card {
      padding: var(--space-lg);
  }
  
  .ns-topic-icon {
      font-size: 2rem;
  }
  
  .ns-method-point h4 {
      font-size: 1.1rem;
  }
  
  .ns-standard-block {
      padding: var(--space-md);
  }
}