/* GENERAL BODY + TEXT */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    background-color: #222;
    color: #fff;
}

/* MAIN RISK MESSAGE */
.risk-text {
    text-align: center;
    font-size: 2em;
    padding: 25vh 20px;
}

/* MENU ICON (hamburger) */
.menu-icon {
    position: fixed;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 999;
    display: none; /* hidden unless JS is active */
}

/* SIDE MENU (initially hidden off screen if JS is active) */
.side-menu {
    background-color: #111;
    padding-top: 60px;
    color: white;
}

/* DEFAULT: NO-JS fallback (menu is visible at top of page) */
.side-menu {
    position: static;
    width: 100%;
    border-bottom: 2px solid #333;
}

/* WITH JS: override to be slide-in */
html.js .side-menu {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100%;
    transition: right 0.3s ease-in-out;
    z-index: 998;
    padding-top: 60px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
}

/* SHOW SLIDE-IN MENU WHEN ACTIVE */
html.js .side-menu.visible {
    right: 0;
}

/* ONLY show hamburger icon when JS is active */
html.js .menu-icon {
    display: block;
}

/* MENU LIST STYLES */
.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu li {
    padding: 12px 20px;
    border-bottom: 1px solid #333;
}

.side-menu li a {
    color: white;
    text-decoration: none;
    display: block;
}

.submenu {
    padding-left: 15px;
    font-size: 0.95em;
}

/* NO-JS WARNING BAR */
.no-js-warning {
    background: #ffcc00;
    color: #000;
    padding: 10px;
    font-weight: bold;
    text-align: center;
}
