/* Define the deep teal/green background color matching the image */
:root {
    --xion-bg: #1A524A; /* Custom deep teal/green */
}
body {
    /* Updated font-family to Orbitron */
    font-family: 'Orbitron', sans-serif;
    background-color: var(--xion-bg);
}
/* Custom styling for the logo frame and line */
.logo-frame {
    border-color: white;
    position: relative;
}
.logo-frame::before, .logo-frame::after {
    content: '';
    position: absolute;
    width: 8px; /* Corner size */
    height: 8px; /* Corner size */
    border-style: solid;
    border-width: 0;
    z-index: 10;
}
/* Top-Left Corner */
.logo-frame::before {
    top: 0;
    left: 0;
    border-top-width: 2px;
    border-left-width: 2px;
    border-top-left-radius: 4px;
}
/* Bottom-Right Corner - using a second pseudo-element for simplicity */
.logo-frame .logo-corner-br {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 8px;
    height: 8px;
    border-style: solid;
    border-width: 0;
    border-bottom-width: 2px;
    border-right-width: 2px;
    border-bottom-right-radius: 4px;
    border-color: white;
}

/* Custom style to enforce larger font size (64px) for the title on larger screens */
@media (min-width: 768px) {
    .xion-title {
        font-size: 64px;
    }
}
