/* ============================================
   TEAL BACKGROUND ONLY - Preserve original gold styling
   ============================================ */

:root {
    --color-gold: #d4af37;
}

/* Only change the background gradient - keep all other styles */
html,
html body,
body {
    background: linear-gradient(135deg, #0d2538 0%, #0f3a4a 30%, #0a3040 60%, #081e30 100%) !important;
    background-attachment: fixed !important;
}

/* Remove the old cosmic background image */
body {
    background-image: none !important;
}

/* Make main container transparent to show teal bg */
.min-h-screen {
    background: transparent !important;
}

div.min-h-screen {
    background: transparent !important;
}

/* Keep transparency for the main wrapper */
body>div:first-child,
body>div:first-child>div {
    background: transparent !important;
}

/* Hide the old blur orbs */
.fixed.inset-0.pointer-events-none>div {
    display: none !important;
}