/* ==========================================================================
   Design System & Reset
   ========================================================================== */
:root {
    --bg-color-1: #020610;
    --bg-color-2: #081229;
    --bg-color-3: #010408;
    --surface-color: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #a09db0;
    --accent-color: #8b5cf6;
    --glow-color-1: rgba(139, 92, 246, 0.4);
    --glow-color-2: rgba(192, 132, 252, 0.3);

    --font-primary: 'Outfit', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, var(--bg-color-1), var(--bg-color-2), var(--bg-color-3));
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-primary);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Subtle animated noise texture for premium feel */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Loader
   ========================================================================== */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-color-1);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.loader-text {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 800;
    letter-spacing: 0.2em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    position: relative;
    /* Optional: add some glow to the outline */
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

.loader-text::before {
    content: "NOOPTIX";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    color: var(--text-primary);
    -webkit-text-stroke: 0px transparent;
    overflow: hidden;
    white-space: nowrap;
    animation: fillText 3s ease-in-out forwards;
    /* Extra glow when filled */
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.6), 0 0 40px rgba(255, 255, 255, 0.3);
}

@keyframes fillText {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1,
h2,
h3 {
    font-family: var(--font-display);
    line-height: 1.1;
}

.glass-panel {
    background: var(--surface-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(10, 5, 16, 0.9) 0%, rgba(10, 5, 16, 0) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
}

.navbar.in-view {
    animation: textReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    line-height: 1;
}

.nav-parent-company {
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    margin-top: 4px;
    font-weight: 600;
    opacity: 1;
}

.nav-links {
    display: none;
    /* Hidden on mobile */
    list-style: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-cta {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--text-primary);
    color: var(--bg-color-1);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 5% 50px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .hero-section {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Background Gradients */
.hero-bg-gradients {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: moveGradients 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.sphere-1 {
    width: 50vw;
    height: 50vw;
    background: var(--glow-color-1);
    top: -10%;
    left: -10%;
}

.sphere-2 {
    width: 40vw;
    height: 40vw;
    background: var(--glow-color-2);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.sphere-3 {
    width: 30vw;
    height: 30vw;
    background: rgba(139, 92, 246, 0.3);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes moveGradients {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.2);
    }
}

.hero-content {
    flex: 1;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

@media (min-width: 992px) {
    .hero-content {
        align-items: center;
        text-align: center;
        padding-right: 0;
    }
}

.hero-text-wrapper {
    position: relative;
}

.hero-title-large {
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: -20px;
    position: relative;
    z-index: 1;
}

.hero-info-card {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 400px;
    margin: 2rem auto 0;
    /* Centers horizontally without overlapping */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateX(0);
}

@media (min-width: 992px) {
    .hero-info-card {
        transform: translateX(0);
    }
}

.hero-info-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.hero-info-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.primary-cta {
    display: inline-block;
    background: var(--text-primary);
    color: var(--bg-color-1);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.hero-visual {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    width: 100%;
}

@media (min-width: 992px) {
    .hero-visual {
        margin-top: 0;
    }
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    width: 90%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.8));
    z-index: 2;
}

.dynamic-float {
    animation: dynamicFloat 6s ease-in-out infinite;
}

@keyframes dynamicFloat {
    0% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }

    33% {
        transform: translateY(-20px) rotate(2deg) scale(1.02);
    }

    66% {
        transform: translateY(-5px) rotate(-1deg) scale(0.98);
    }

    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
}

.floating-tag {
    position: absolute;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 3;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tag-1 {
    top: 10%;
    right: 0%;
    animation: floatTag 5s ease-in-out infinite alternate;
}

.tag-2 {
    bottom: 10%;
    left: 0%;
    animation: floatTag 7s ease-in-out infinite alternate-reverse;
}

@keyframes floatTag {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-15px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    z-index: 3;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-primary), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    50.1% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ==========================================================================
   About Section (Coming Soon)
   ========================================================================== */
.about-section {
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 5%;
    position: relative;
}

.coming-soon-container {
    text-align: center;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.5s;
    padding: 2rem;
    border-radius: 20px;
}

.coming-soon-container:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 40px rgba(139, 92, 246, 0.15));
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
}

.coming-soon-text {
    font-size: clamp(2.5rem, 8vw, 8rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    display: block;
    text-align: center;
    perspective: 1000px;
    margin-bottom: 2rem;

    /* Gradient mask animation for hover */
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 50%, rgba(0, 0, 0, 0.05) 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 50%, rgba(0, 0, 0, 0.05) 100%);
    -webkit-mask-size: 100% 200%;
    mask-size: 100% 200%;
    -webkit-mask-position: top;
    mask-position: top;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        -webkit-mask-position 0.5s ease,
        mask-position 0.5s ease;
    cursor: pointer;
}

.coming-soon-text:hover {
    transform: scale(1.08);
    -webkit-mask-position: bottom;
    mask-position: bottom;
}

.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px) rotateX(-90deg) scale(0.8);
    transform-origin: bottom center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        opacity 0.8s ease-out;
}

.coming-soon-text.in-view .char {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
}

.progress-bar-container {
    width: 100%;
    max-width: 400px;
    height: 2px;
    background: var(--border-color);
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
    transition: width 1.5s ease-out 0.5s;
}

.in-view+.progress-bar-container .progress-bar {
    width: 100%;
    animation: progressIndeterminate 2s ease-in-out infinite 2s;
}

.about-description {
    color: var(--text-secondary);
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 1s;
}

.in-view~.about-description {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 5%;
}

.contact-container {
    width: 100%;
    max-width: 900px;
    text-align: left;
    transform: translateY(30px);
    opacity: 0;
    overflow: hidden;
}

.split-layout {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .split-layout {
        flex-direction: row;
    }
}

.contact-form-side {
    flex: 1;
    padding: 4rem 3rem;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid var(--border-color);
}

.contact-content-side {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-container.in-view {
    animation: textReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.contact-content-side h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.contact-content-side p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    position: relative;
    text-align: left;
}

.input-group input {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-bottom-color: var(--accent-color);
}

.input-group label {
    position: absolute;
    left: 0;
    top: 1rem;
    color: var(--text-secondary);
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--text-primary);
}

.submit-btn {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: var(--text-primary);
    color: var(--bg-color-1);
    border: none;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
}

.footer.in-view {
    animation: textReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .brand-section {
        align-items: flex-start;
        text-align: left;
    }

    .contact-section-footer {
        align-items: center;
        text-align: center;
    }

    .social-section {
        align-items: flex-end;
        text-align: right;
    }
}

@media (max-width: 767px) {
    .footer-section {
        align-items: center;
        text-align: center;
    }
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.parent-company {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-section h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.company-address {
    line-height: 1.8;
}

.contact-section-footer a,
.social-link {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
    gap: 0.8rem;
}

.contact-section-footer a:hover,
.social-link:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.separator {
    color: var(--border-color);
    opacity: 0.5;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes progressIndeterminate {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ==========================================================================
   Thank You Overlay
   ========================================================================== */
.thank-you-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.thank-you-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.overlay-center {
    text-align: center;
    transform: scale(0.95);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.thank-you-overlay.active .overlay-center {
    transform: scale(1);
    opacity: 1;
}

.overlay-huge-text {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
}

.thank-you-overlay.active .overlay-huge-text {
    animation: textReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        letter-spacing: 0.3em;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 0.05em;
    }
}

.overlay-bottom {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 1s ease 0.8s;
}

.thank-you-overlay.active .overlay-bottom {
    opacity: 1;
}

.overlay-timer {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.overlay-timer span {
    color: #ffffff;
    font-weight: 700;
}

.overlay-progress-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem auto 0;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.overlay-progress-fill {
    width: 100%;
    height: 100%;
    background: #ffffff;
    transform-origin: left;
    transform: scaleX(0);
}

.thank-you-overlay.active .overlay-progress-fill {
    animation: fillProgress 4s linear forwards;
}

@keyframes fillProgress {
    0% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0);
    }
}

/* ==========================================================================
   Legal Pages (Terms, Privacy)
   ========================================================================== */
.page-content {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.legal-section {
    width: 100%;
    max-width: 900px;
    padding: 0 5%;
}

.legal-container {
    padding: 3rem 4rem;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 2rem;
    }
}

.legal-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.legal-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-primary);
    font-family: var(--font-display);
}

.legal-content h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: #e0e0e0;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--text-primary);
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: #c084fc;
}