:root {
    --bseb-red: #C00000;
    --navy-blue: #003366;
    --text-color: #333;
    --bg-light: #f9f9f9;
}

/* Header Match */
.sggs-header-main {
    background-color: #fff;
    border-bottom: 3px solid var(--bseb-red);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 100%;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--bseb-red) !important;
    text-decoration: none;
    letter-spacing: -1px;
}

/* Nav Menu */
.sggs-nav-ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.sggs-nav-ul li {
    margin-left: 15px;
    position: relative;
}

.sggs-nav-ul li a {
    text-decoration: none;
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
}

.sggs-nav-ul li a:hover {
    color: var(--bseb-red);
}

/* Submenu */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    display: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

.sub-menu li {
    margin: 0;
    width: 100%;
}

.sub-menu li a {
    padding: 10px 15px;
    display: block;
    font-size: 13px;
    border-bottom: 1px solid #eee;
}

.has-sub:hover .sub-menu {
    display: block;
}

/* Ticker */
.sggs-ticker-box {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 5px 0;
}

.sggs-ticker-box marquee {
    font-weight: bold;
    color: var(--bseb-red);
}

/* Footer Section */
.sggs-disclaimer-area {
    max-width: 900px;
    margin: 30px auto;
}

.disclaimer {
    background: #fff3f3;
    border: 1px solid #ffcccc;
    padding: 15px;
    font-size: 13px;
    color: #555;
    border-radius: 4px;
}

.sggs-footer-main {
    text-align: center;
    padding: 30px;
    background: var(--navy-blue);
    color: white;
    margin-top: 50px;
}

.footer-links-row {
    margin-bottom: 15px;
}

.footer-links-row a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 13px;
}

/* Responsive Mobile */
.mobile-menu-btn {
    display: none;
    background: var(--navy-blue);
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-container { flex-direction: column; }
    .mobile-menu-btn { display: block; margin-top: 10px; }
    .sggs-nav-ul { display: none; flex-direction: column; width: 100%; text-align: center; }
    .sggs-nav-ul.active { display: flex; }
    .sggs-nav-ul li { margin: 10px 0; }
    .sub-menu { position: static; box-shadow: none; }
}