/* Custom basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Prevent horizontal scrolling, allow vertical if needed */
    overflow-x: hidden;
    background-color: #000;
}

/* Custom glow text utility */
.glow-text {
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}
