@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }

        html,
        body {
            background: #fff;
        }

        body.dark {
            background: #121212;
        }

        .main {
            position: relative;
            width: 1200px;
            min-height: auto;
            background-color: #F3F3F8;
            margin: auto;
            display: flex;
            flex-direction: column;
            padding: 0px 20px;
            box-sizing: border-box;
        }

        body.dark .main {
            background-color: #1a1a1a;
        }

        .announcement {
            position: relative;
            width: 100%;
            height: 35px;
            background-color: #9b3eec;
            font-size: 14px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
        }

        .announcement .close {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #fff;
            font-size: 1rem;
            cursor: pointer;
            padding: 5px;
        }

        .navbar {
            position: relative;
            width: 100%;
            height: 80px;
            padding: 0px 12px;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: #fff;
            border-radius: 0 0 5px 5px;
        }

        body.dark .navbar {
            background-color: #121212;
            border-bottom: 1px solid #282828;
        }

        .navbar a {
            text-decoration: none;
        }

        .navbar img {
            max-width: 250px;
            height: auto;
        }

        .navbar ul {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 8px;
            list-style: none;
            height: 100%;
            color: #8b8b8b;
            gap: 20px;
        }

        body.dark .navbar ul {
            color: #fff;
        }

        .navbar ul li a {
            font-size: 1rem;
            font-weight: 500;
            color: #8b8b8b;
        }

        body.dark .navbar ul li a {
            color: #fff;
        }

        #themeToggle {
            background: none;
            border: none;
            color: #8b8b8b;
            font-size: 1.5rem;
            cursor: pointer;
            margin-top: 8px;
        }

        body.dark #themeToggle {
            color: #fff;
        }

        .topAds {
            margin-bottom: 20px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .tab-area .topAds {
            width: 350px;
            margin-left: 30px;
            margin-bottom: 22px;
        }

        .tab-area .topAds a img {
            border: 3px solid #073576;
            border-radius: 5px;
        }

        .bottomAds {
            margin-top: 20px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .topAds.row-mode {
            flex-direction: row;
        }

        .bottomAds.column-mode {
            flex-direction: column;
        }

        .topAds a,
        .bottomAds a {
            margin: 0 10px;
        }

        .topAds img,
        .bottomAds img {
            max-width: 520px;
            width: 100%;
            height: auto;
        }

        .streamContainer {
            width: 100%;
            min-height: 480px;
            display: flex;
            flex-direction: row;
            margin-top: 20px;
        }

        .streamContainer .stream {
            width: 800px;
        }

        .streamContainer .stream iframe {
            width: 100%;
            height: 480px;
        }

        .streamContainer .tab {
            width: 350px;
            height: 480px;
            margin-left: 30px;
            display: flex;
            flex-direction: column;
            background-color: #fff;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        body.dark .streamContainer .tab {
            width: 350px;
            height: 480px;
            margin-left: 30px;
            display: flex;
            flex-direction: column;
            background-color: #121212;
        }

        .streamContainer .tab .list-header {
            display: flex;
            flex-wrap: nowrap;
            justify-content: space-around;
            position: relative;
            list-style: none;
        }

        .streamContainer .tab .list-header li {
            margin-bottom: 10px;
            position: relative;
            padding: 8px 9px;
            font-weight: 400;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            min-height: 34px;
            box-sizing: border-box;
            cursor: pointer;
            color: #646F81;
            width: 100%;
        }

        .streamContainer .tab .list-header li.active {
            background-color: #000;
        }

        .streamContainer .tab .list-header li a {
            text-decoration: none;
            color: #cccbcb;
            font-size: 1rem;
            font-weight: 500;
        }

        .streamContainer .tab .list-header li a span {
            margin-top: 5px;
        }

        .streamContainer .tab .list-header li:hover {
            background-color: #181818;
        }

        .streamContainer .tab .search {
            padding: 0px 10px;
        }

        .streamContainer .tab .search input {
            width: 100%;
            padding: 10px;
            border: none;
            border-radius: 5px;
            background-color: #1a1a1a;
            color: #fff;
        }

        .streamContainer .tab .list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 10px;
            flex: 1;
            position: relative;
            height: 360px;
            max-height: 360px;
            margin-top: 8px;
            overflow-y: scroll;
            scrollbar-width: none;
        }

        .streamContainer .tab .list .list-item {
            padding: 10px;
            border-radius: 5px;
            background-color: #fff;
            color: #000;
            cursor: pointer;
            width: 100%;
            min-height: 35px;
            margin-top: 3px;
            height: fit-content;
            box-sizing: border-box;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        body.dark .streamContainer .tab .list .list-item {
            padding: 10px;
            border-radius: 5px;
            background-color: #151515;
            color: #fff;
            cursor: pointer;
            width: 100%;
            min-height: 35px;
            margin-top: 3px;
            height: fit-content;
            box-sizing: border-box;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .streamContainer .tab .list .list-item span {
            font-weight: lighter;
        }

        .streamContainer .tab .list .list-item span.time {
            color: #ca5816;
        }

        .streamContainer .tab .list .list-item span.name { 
            color: #000;
        }

        body.dark .streamContainer .tab .list .list-item span.name {
            color: #fff;
        }
        

        .informationContainer {
            width: 100%;
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }

        .informationContainer .left {
            width: 35%;
        }

        .informationContainer .right {
            width: 60%;
        }

        .box {
            background-color: #fff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }

        body.dark .box {
            background-color: #121212;
            color: #fff;
        }

        .box h2 {
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 10px;
            color: #ac63eb;
        }

        .box p {
            font-size: 1rem;
            font-weight: 400;
            color: #8b8b8b;
        }

        .box ul {
            margin-top: 10px;
            list-style: none;
        }

        .box ul li {
            font-size: 1rem;
            font-weight: 400;
            color: #8b8b8b;
        }

        .box ul li::before {
            content: '•';
            margin-right: 5px;
        }

        footer {
            width: 100%;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #fff;
        }

        body.dark footer {
            background-color: #121212;
            color: #fff;
        }

        @media (max-width: 1200px) {
            .main {
                width: 100%;
            }

            nav.navbar {
                height: 100%;
                flex-direction: column;
                background-color: transparent;
            }

            .streamContainer {
                flex-direction: column;
            }

            .streamContainer .stream {
                width: 100%;
            }

            .streamContainer .tab {
                width: 100%;
                margin-left: 0;
                margin-top: 20px;
            }

            .streamContainer .tab .list-header {
                justify-content: space-around;
            }

            .streamContainer .tab .list {
                height: 300px;
                max-height: 300px;
            }

            .informationContainer {
                flex-direction: column;
            }

            .informationContainer .left,
            .informationContainer .right {
                width: 100%;
            }

            .streamContainer .tab {
                margin-left: 0 !important;
            }

            .tab-area .topAds {
                width: 100% !important;
                margin-left: auto !important;
                margin-right: auto !important;
            }
        }