@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --bg: #ffffff;
    --muted: #6b7280;
    --accent: #2563eb;
    --accent-contrast: #fff;
    --card: #f8fafc;
    --radius: 12px;
    --container-width: 1300px;
    --gap: 1rem;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color-scheme: light;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    color: #111827;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
}

a {
    text-decoration: none;
    display: block;
    color: #000F55;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer;
    -webkit-appearance: button;
}

img {
    vertical-align: middle;
    max-width: 100%;
}

/* container */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 10px;
}

header {
    margin-bottom: 20px;
    background-color: #fff;
    padding: 10px 0 0 0;
}

.header_top {
    display: flex;
    justify-content: center;
    align-items: center;
}

.topbar_right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.login a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.subscribe_link {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 3px 10px;
    width: 117px;
    height: 28px;
    text-align: center;
    font-size: 16px;
    white-space: nowrap;
    background-color: #3F51B5;
    font-weight: 700;
    border-radius: 4px;
}

.top_nav {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    border-top: 1px solid #EBEBEB;
    margin: 10px 0 0 0;
}

.top_nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.top_nav ul li a {
    font-size: 18px;
    color: #000;
    padding: 12px 0;
}

header .bottom-nav {
    background-color: #3F51B5;
    width: 100%;
    left: 0;
    display: flex;
    /* justify-content: center; */
    padding: 0px 10px;
    /* border-top: 3px solid #000; */
    height: 35px;
    align-items: center;
    gap: 25px;
    flex-wrap: nowrap;
    overflow-x: auto;
    min-width: 100%;
    white-space: nowrap;
}

header .bottom-nav a {
    color: #fff;
}

.circle-wrapper {
    position: relative;
    display: inline-block;
}

/* Big circle - transparent background, only border */
.big-circle {
    width: 10px;
    height: 10px;
    background: transparent;
    border: 1px solid #C20000;
    border-radius: 50%;
}

/* Small circle under it with text */
.small-circle {
    width: 5px;
    height: 5px;
    background: #C20000;
    color: white;
    /* font-size: 10px; */
    /* font-weight: bold; */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.watch_live {
    border-left: 1px solid #BABABA;
    border-right: 1px solid #BABABA;
    padding: 0 10px;
    font-size: 20px;
    color: #C20000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-right: 20px;
}

.hamburger {
    display: inline-block;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 2;
    border-right: 1px solid #ebebeb;
}

.hamburger.active {
    background: #3F51B5;
}

.hamburger span {
    display: block;
    /* width: 25px;
    height: 3px;
    margin: 5px; */
    transition: 0.3s;
}

/* Nav menu */
nav.hamburger_menu {
    background: #3F51B5;
    color: white;
    position: absolute;
    top: 55px;
    left: 0px;
    width: 220px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    z-index: 3;
}

nav.hamburger_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}

nav.hamburger_menu ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

nav.hamburger_menu ul li a {
    flex: 1;
    padding: 12px 15px;
    color: white;
    text-decoration: none;
}

nav.hamburger_menu ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Submenu toggle button */
.submenu-btn {
    padding: 12px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

.submenu-btn:hover {
    background: rgba(231, 66, 66, 0.15);
}

/* Submenu styling */
.submenu {
    max-height: 0;
    overflow: hidden;
    background: #1e4bb8;
    transition: max-height 0.3s ease;
    width: 100%;
}

.submenu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
}

/* Show menu */
nav.hamburger_menu.active {
    max-height: 500px;
    opacity: 1;
}

/* Show submenu */
.submenu.open {
    max-height: 300px;
}

/* Hamburger animation */
/* .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
    background:#fff
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
} .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
    background:#fff
} */
body.hamburger-body-open {
    overflow: hidden;
}

.hamburger .hamburger_line_close,
.hamburger.active .hamburger_line_open {
    display: none;
}

.hamburger.active .hamburger_line_close {
    display: block;
}
section {
    width: 100%;
    float: left;
}
.siteContent{width: 100%;float:left;}
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
    .top_nav ul li a{
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }
    .top_nav{
        border-bottom: 1px solid #EBEBEB;
    }
    .top_nav ul li:nth-child(n+5) {
        display: none;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 540px;
    }
    .top_nav ul li:nth-child(n+3) {
        display: none;
    }
}