/* Bastion – House of Harrow subtle cosmic textile theme */

:root {
    --bastion-bg: #050509;
    --bastion-fg: #f5f5f7;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--bastion-bg);
    color: var(--bastion-fg);
}

/* Cosmic textile layer */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("/static/img/bastion_pattern.svg");
    background-repeat: repeat;
    background-size: 260px 260px;
    opacity: 0.14; /* subtle, not gaudy */
    pointer-events: none;
    z-index: -1;
}

/* Optional: slightly soften main content edges */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.main-container, .container, .content {
    position: relative;
    z-index: 0;
}
