:root {
    /* Premium VOD Palette */
    --bg-base: #09090e;
    /* Deep, almost black background (like Netflix/Disney+) */
    --bg-surface: #14141f;
    /* Slightly lighter for surfaces */

    --lorna-violet: #6366f1;
    /* Primary Brand Violet */
    --neon-blue: #0ea5e9;
    /* Gamer/Tech Accent Blue */
    --neon-magenta: #d946ef;
    /* Tech Accent Magenta */

    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;

    /* Liquid Glass properties */
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover-bg: rgba(255, 255, 255, 0.05);
    --glass-hover-border: rgba(99, 102, 241, 0.4);

    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    /* Condensed, strong personality */
    --font-body: 'Inter', sans-serif;
    /* Extremely readable */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Organic background halos (Subtle, large blurs) */
.organic-halo {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.halo-1 {
    width: 600px;
    height: 600px;
    background: var(--lorna-violet);
    top: -200px;
    left: -200px;
}

.halo-2 {
    width: 500px;
    height: 500px;
    background: var(--neon-blue);
    bottom: -100px;
    right: -150px;
}

/* Typography */
h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 500;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.section-title.center {
    text-align: center;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Liquid Glass Utilities */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1),
        background 200ms ease,
        border-color 200ms ease;
}

.glass-card:hover {
    background: var(--glass-hover-bg);
    border-color: var(--glass-hover-border);
    transform: translateY(-4px);
}

/* Header */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(9, 9, 14, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--lorna-violet);
}

.logo-icon {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 150ms;
}

.nav-item:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 150ms;
}

.lang-selector:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.btn-login {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background 150ms;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 8px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 200ms ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--lorna-violet), #4f46e5);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-text {
    padding: 0;
    background: transparent;
    color: var(--lorna-violet);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-text svg {
    width: 16px;
    height: 16px;
    transition: transform 200ms;
}

.btn-text:hover svg {
    transform: translateX(4px);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-mockup-bg {
    width: 100%;
    height: 100%;
    /* Simulating the blurred mockup background */
    background: url('/img/app-screenshot.webp') center/cover no-repeat;
    filter: blur(24px) brightness(0.4);
    transform: scale(1.1);
    /* Prevent blur edges */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(9, 9, 14, 0.2) 0%, rgba(9, 9, 14, 1) 90%);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.premium-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-transform: none;
    font-family: var(--font-body);
    font-weight: 700;
}

.hero-content h1 span {
    color: var(--neon-blue);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 650px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.icon {
    width: 20px;
    height: 20px;
}

/* Sections Global */
section {
    padding: 80px 0;
}

/* Asymmetric Grids */
.asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Shifting columns to break the perfect template look */
.asymmetric-grid .step-2 {
    transform: translateY(30px);
}

.asymmetric-grid .step-3 {
    transform: translateY(60px);
}

/* Reversing the asymmetric effect for variety */
.asymmetric-grid-reverse {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.asymmetric-grid-reverse .prof-1 {
    transform: translateY(60px);
}

.asymmetric-grid-reverse .prof-2 {
    transform: translateY(30px);
}

/* How it works */
.how-step {
    padding: 40px 32px;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.how-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.how-step p {
    color: var(--text-secondary);
    font-size: 15px;
    position: relative;
    z-index: 2;
}

/* Internal glowing halos for cards */
.card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    transition: opacity 300ms;
    z-index: 1;
}

.glass-card:hover .card-glow {
    opacity: 0.15;
}

.glow-blue {
    background: var(--neon-blue);
    top: -50px;
    right: -50px;
}

.glow-purple {
    background: var(--lorna-violet);
    bottom: -50px;
    left: -50px;
}

.glow-neon {
    background: var(--neon-magenta);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Emotion Section (Pensé pour regarder) */
.emotion-section {
    padding: 120px 0;
}

.emotion-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.emotion-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.emotion-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.emotion-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 17px;
}

.emotion-list svg {
    width: 24px;
    height: 24px;
    color: var(--neon-blue);
}

.emotion-visual {
    perspective: 1000px;
    /* For 3D tilt effect */
}

/* Simulated Tilt Effect (without JS for simplicity, using static CSS rotation) */
.tilt-wrapper {
    transform: rotateY(-10deg) rotateX(5deg);
    transform-style: preserve-3d;
    transition: transform 300ms ease;
}

.tilt-wrapper:hover {
    transform: rotateY(-5deg) rotateX(2deg);
}

.tilt-card {
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.5);
}

.tilt-img {
    width: 100%;
    border-radius: 8px;
    display: block;
    position: relative;
    z-index: 2;
}

/* Platforms */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.platform-icon {
    width: 40px;
    height: 40px;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.platform-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.platform-card p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.tag-soon {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    color: var(--text-secondary);
    font-weight: 500;
}

.disabled {
    opacity: 0.7;
}

.disabled:hover {
    transform: none;
    border-color: var(--glass-border);
}

/* Profiles */
.profiles-section {
    padding-bottom: 160px;
}

/* Extra padding for bottom shifted cards */

.profile-card {
    padding: 40px 32px;
    position: relative;
}

.profile-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.organic-svg {
    width: 24px;
    height: 24px;
    color: var(--neon-blue);
}

.prof-2 .organic-svg {
    color: var(--neon-magenta);
}

.prof-3 .organic-svg {
    color: var(--lorna-violet);
}

.profile-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.profile-card p {
    color: var(--text-secondary);
    font-size: 15px;
    position: relative;
    z-index: 2;
}

/* Organic shapes inside cards */
.organic-blob {
    position: absolute;
    filter: blur(30px);
    opacity: 0.1;
    z-index: 1;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s ease-in-out infinite;
}

.blob-1 {
    width: 120px;
    height: 120px;
    background: var(--neon-blue);
    top: 20px;
    right: 20px;
}

.blob-2 {
    width: 140px;
    height: 140px;
    background: var(--neon-magenta);
    bottom: 20px;
    left: 20px;
}

.blob-3 {
    width: 100px;
    height: 100px;
    background: var(--lorna-violet);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes morph {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }
}

/* Security */
.security-section {
    margin-bottom: 80px;
}

.security-card {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    background: rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.2);
}

.security-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.security-content p {
    color: var(--text-secondary);
    font-size: 15px;
}

.security-content strong {
    color: var(--text-primary);
}

.security-icon svg {
    width: 48px;
    height: 48px;
    color: var(--lorna-violet);
    opacity: 0.5;
}

/* Footer Additions */
.glass-footer {
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 20px;
    background: rgba(9, 9, 14, 0.8);
    backdrop-filter: blur(20px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand-col {
    max-width: 320px;
}

.brand-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    transition: all 200ms;
}

.social-links a:hover {
    background: var(--lorna-violet);
    color: white;
    transform: translateY(-2px);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-col h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: none;
}

.footer-links-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 150ms;
}

.footer-links-col a:hover {
    color: var(--lorna-violet);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 24px;
}

.copyright-line {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.copyright-line p {
    color: var(--text-secondary);
    font-size: 13px;
}

.safe-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.safe-icons span {
    font-size: 12px;
    color: var(--text-secondary);
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 16px;
}

.footer-links-wrapper {
    display: flex;
    gap: 80px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 150ms;
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 24px;
    color: var(--text-secondary);
    font-size: 13px;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand-col {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .asymmetric-grid {
        grid-template-columns: 1fr;
    }

    .asymmetric-grid .step-2,
    .asymmetric-grid .step-3 {
        transform: none;
    }

    .asymmetric-grid-reverse {
        grid-template-columns: 1fr;
    }

    .asymmetric-grid-reverse .prof-1,
    .asymmetric-grid-reverse .prof-2 {
        transform: none;
    }

    .emotion-container {
        grid-template-columns: 1fr;
    }

    .tilt-wrapper {
        transform: none;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .security-card {
        flex-direction: column-reverse;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .lang-selector,
    .btn-login {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand-col {
        grid-column: span 1;
    }


    .copyright-line {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* --- Support, FAQ & Guide Pages --- */

/* Page Headers */
.page-content {
    padding-top: 100px;
}

.page-header {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
    text-transform: none;
    font-family: var(--font-body);
    font-weight: 700;
}

.page-title span {
    color: var(--neon-blue);
}

.page-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Support Page */
.support-section {
    padding-bottom: 100px;
}

.support-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.support-form-card {
    padding: 40px;
}

.support-form-card h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
    text-transform: none;
}

.form-desc {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.glass-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.glass-input {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 200ms ease;
    outline: none;
}

.glass-input:focus {
    border-color: var(--lorna-violet);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
}

select.glass-input {
    appearance: none;
    cursor: pointer;
}

textarea.glass-input {
    resize: vertical;
    min-height: 120px;
}

.w-full {
    width: 100%;
}

.support-alternatives {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.alt-card {
    padding: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.alt-icon {
    width: 48px;
    height: 48px;
}

.discord-icon {
    color: #5865F2;
    /* Discord branding override */
}

.email-icon {
    color: var(--lorna-violet);
}

.alt-card h3 {
    font-size: 1.4rem;
    font-family: var(--font-body);
    text-transform: none;
}

.alt-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

.link-discrete {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 150ms;
}

.link-discrete:hover {
    color: var(--lorna-violet);
}

/* FAQ Page */
.faq-section {
    padding-bottom: 100px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    padding: 32px;
}

.faq-q {
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-family: var(--font-body);
    text-transform: none;
    color: var(--neon-blue);
    font-weight: 600;
}

.faq-a {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.faq-a strong {
    color: var(--text-primary);
}

.faq-footer-cta {
    margin-top: 60px;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.faq-footer-cta p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.faq-footer-cta.center {
    border-top: 0;
    padding-top: 20px;
}

/* Guide Page */
.guide-section {
    padding-bottom: 120px;
    max-width: 900px;
    margin: 0 auto;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

/* Subtle connecting line */
.guide-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 24px;
    width: 2px;
    background: var(--glass-border);
    z-index: 0;
}

.guide-step {
    display: flex;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.step-marker {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid var(--lorna-violet);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.step-content {
    flex-grow: 1;
    padding: 32px;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-family: var(--font-body);
    text-transform: none;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 16px;
}

.step-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-list li {
    color: var(--text-secondary);
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.step-list li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lorna-violet);
    margin-top: 8px;
    flex-shrink: 0;
}

.step-list strong {
    color: var(--text-primary);
}

.text-link {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 500;
}

.text-link:hover {
    text-decoration: underline;
}

.code-block {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 16px;
    font-family: inherit;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 16px;
}

.code-block span {
    color: var(--lorna-violet);
    font-weight: 700;
}

/* Responsive Support/Guide Pages */
@media (max-width: 900px) {
    .support-grid {
        grid-template-columns: 1fr;
    }

    .guide-step {
        flex-direction: column;
        gap: 16px;
    }

    .guide-steps::before {
        display: none;
    }

    .page-title {
        font-size: 2.5rem;
    }
}