* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Dark Mode variables (Default) */
    --bg-body: #000000;
    /* Fallback Black for Dark Mode */
    /* Canvas handles background */
    --bg-section-alt: #0a0a0a;
    --text-main: #fff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --accent: #00d4ff;
    --accent-dark: #0099ff;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --nav-bg: rgba(0, 0, 0, 0.3);
    --dropdown-bg: rgba(15, 15, 15, 0.98);
    --input-bg: rgba(255, 255, 255, 0.05);
}

.light-mode {
    /* Light Mode overrides */
    --bg-body: transparent;
    /* Canvas handles background */
    --bg-section-alt: rgba(255, 255, 255, 0.8);
    /* Pure White Transparency */
    /* Semi-transparent */
    --text-main: #1a1a1a;
    --text-muted: #555555;
    --accent: #0077cc;
    --accent-dark: #005599;
    --card-bg: rgba(255, 255, 255, 0.8);
    /* Glass effect */
    --card-border: rgba(0, 0, 0, 0.1);
    --nav-bg: rgba(255, 255, 255, 0.85);
    --dropdown-bg: #ffffff;
    --input-bg: rgba(0, 0, 0, 0.05);
}

.light-mode .logo img,
.light-mode .footer-logo {
    /* filter: invert(1); User requested to keep the same logo */
}

body {
    background-color: transparent;
    /* Allow canvas in -1 z-index to show if we move bg to html */
    /* Actually, for z-index -1 canvas to work, we need the background color BEHIND the canvas */
    /* So: HTML (Color) -> Canvas (-1) -> Body (Transparent) */
    color: var(--text-main);
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
    min-height: 100vh;
}



html {
    background-color: var(--bg-body);
    transition: background-color 0.3s;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== Navigasyon Bar ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo img {
    height: 85px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    padding-bottom: 5px;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--text-main);
    border-bottom: 2px solid var(--accent);
}

/* ========== Dropdown Menu ========== */
.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links>li>a i {
    font-size: 10px;
    transition: transform 0.3s;
}

.nav-links>li:hover>a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 250px;
    background: var(--dropdown-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    list-style: none;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--dropdown-bg);
}

.nav-links>li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-muted);
    font-size: 13px;
    border-bottom: none !important;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.dropdown-menu li a i {
    width: 20px;
    text-align: center;
    color: var(--accent);
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--text-main);
    border-left-color: var(--accent);
    padding-left: 25px;
}

.dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid var(--card-border);
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle {
    cursor: pointer;
    font-size: 18px;
}

/* Responsive Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-main);
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dropdown-bg);
        border-top: 1px solid var(--card-border);
        flex-direction: column;
        gap: 0;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        padding: 15px 20px;
        display: block;
        border-bottom: 1px solid var(--card-border);
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        padding-left: 20px;
        display: none;
    }

    .nav-links li:hover .dropdown-menu {
        display: block;
        transform: none;
    }

    .dropdown-menu li a {
        padding: 10px;
        font-size: 13px;
        border: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* ========== Hero Section ========== */
.hero {
    min-height: 100vh;
    width: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
    /* Ensure particles don't overflow */
}

/* Particle Text Canvas */
#particle-text-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Behind content but above background */
    pointer-events: none;
    /* Let clicks pass through to background/buttons */
    border: none;
    background: transparent;
}

.hero-content {
    max-width: 650px;
    padding-top: 80px;
    position: relative;
    /* Ensure z-index works */
    z-index: 2;
    /* Bring content above particles */
}

.badge {
    background: var(--card-bg);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    border: 1px solid var(--card-border);
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: var(--text-main);
    color: var(--dropdown-bg);
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-secondary:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--text-muted);
    font-size: 24px;
    transition: 0.3s;
}

.scroll-indicator a:hover {
    color: var(--accent);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========== Section Styles ========== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== Services Section ========== */
.services {
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-section-alt) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 35px;
    transition: 0.4s;
}

.service-card:hover {
    background: var(--input-bg);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-8px);
}

.service-card-image {
    width: 100%;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.service-link:hover {
    gap: 12px;
}

/* ========== About Section ========== */
.about {
    background: var(--bg-section-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-subtitle {
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.feature-item i {
    color: #00ff88;
}

.vision-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 255, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
}

.vision-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.vision-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.vision-card p,
.vision-card ul li {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 15px;
}

.vision-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.vision-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.vision-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* ========== Workflow Section ========== */
.workflow {
    background: linear-gradient(180deg, var(--bg-section-alt) 0%, var(--bg-body) 100%);
}

.workflow-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.workflow-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.workflow-step {
    text-align: center;
    position: relative;
    flex: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 150px;
    margin: 0 auto;
}

/* ========== Contact Section ========== */
.contact {
    background: var(--bg-section-alt);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .section-subtitle {
    margin-bottom: 15px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-info>p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 18px;
}

.contact-item span {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 5px;
}

.contact-item a,
.contact-item p {
    color: var(--text-main);
    font-weight: 500;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 25px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--input-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 15px;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0, 212, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-body);
    color: var(--text-main);
}

.full-width {
    width: 100%;
}

/* ========== Footer ========== */
.footer {
    background: var(--bg-section-alt);
    padding: 80px 0 30px;
    border-top: 1px solid var(--card-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 14px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    transition: 0.3s;
}

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

.footer-contact p {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--accent);
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--card-border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ========== WhatsApp Float ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

/* ========== Phone Float ========== */
.phone-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 5px 25px rgba(0, 123, 255, 0.4);
    z-index: 999;
    transition: 0.3s;
}

.phone-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(0, 123, 255, 0.5);
    color: #fff;
}

/* ========== Instagram Float ========== */
.instagram-float {
    position: fixed;
    bottom: 170px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 5px 25px rgba(225, 48, 108, 0.4);
    z-index: 999;
    transition: 0.3s;
}

.instagram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(225, 48, 108, 0.5);
    color: #fff;
}

/* ========== LinkedIn Float ========== */
.linkedin-float {
    position: fixed;
    bottom: 240px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #0077B5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 5px 25px rgba(0, 119, 181, 0.4);
    z-index: 999;
    transition: 0.3s;
}

.linkedin-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(0, 119, 181, 0.5);
    color: #fff;
}

/* ========== Scroll to Top ========== */
.scroll-top {
    position: fixed;
    bottom: 310px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #00d4ff;
    border-color: #00d4ff;
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .workflow-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .workflow-timeline::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0 5%;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== References Page ========== */
.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.client-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--text-main);
}

.client-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.client-logo-wrapper {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.client-logo-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.client-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.client-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========== Map Placeholder ========== */
.map-container {
    width: 50%;
    height: 200px;
    margin: 40px auto;
    border-radius: 15px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 500;
}

/* ========== Interactive Background ========== */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Behind everything */
    pointer-events: none;
    /* Let clicks pass through */
}