@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;700;900&display=swap');

:root {
    --color-bg: #050508;
    --color-surface: #0f1016;
    --color-primary: #00f2ff;
    --color-primary-glow: rgba(0, 242, 255, 0.4);
    --color-secondary: #7000ff;
    --color-text: #e0e0e0;
    --color-text-muted: #9494a8;
    --color-border: #2a2a35;
}

/* Footer */
.fixed-bottom-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 2rem 0 1rem;
    z-index: 1000;
}

/* Ensure content doesn't get hidden behind footer */
body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    padding-bottom: 300px;
    /* Approximate height of footer */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: #fff;
}

.navbar {
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.text-gradient {
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-primary-glow {
    background: var(--color-primary);
    color: #000;
    border: none;
    box-shadow: 0 0 15px var(--color-primary-glow);
    font-weight: bold;
    font-family: 'Outfit', sans-serif;
}

.btn-primary-glow:hover {
    background: #00d7e6;
    color: #000;
    box-shadow: 0 0 25px var(--color-primary-glow);
}

.section-padding {
    padding: 5rem 0;
}

.card-custom {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 4rem 0 2rem;
}

/* Responsive Fixed Layout */
@media (min-width: 992px) {
    .desktop-fixed-center {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 10;
        width: 100%;
        /* Ensure container constraints are respected within fixed context if needed, but 'container' class handles width */
    }
}

@media (max-width: 991.98px) {
    .desktop-fixed-center {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        padding-top: 100px;
        /* Space for navbar */
        padding-bottom: 50px;
    }
}