.banner-text,
.faq-section,
.grid-item,
.menu ul li a {
    text-align: center
}

.btn,
.close-btn,
.faq-item,
.toc-button {
    cursor: pointer
}

.menu ul li a,
.toc-sidebar ul li a {
    text-decoration: none;
    display: block
}

body {
    margin: 0;
    font-family: Arial, sans-serif
}

.header-box {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1)
}

.top-bar {
    background: linear-gradient(to right, #004, #04c);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px
}

.logo {
    height: 40px
}

.top-buttons {
    display: flex;
    margin-left: auto
}

.btn {
    padding: 5px 10px;
    margin-left: 10px;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 14px
}

.demo {
    background-color: red
}

.login {
    background-color: #444
}

.menu ul,
.navbar {
    background-color: #000
}

.navbar {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 5px 20px
}

.news,
.news-slider {
    display: flex;
    align-items: center
}

.news {
    width: 100%
}

.news-icon {
    margin-right: 10px
}

.news-slider {
    overflow: hidden;
    white-space: nowrap;
    flex-grow: 1
}

.news-item {
    display: inline-block;
    padding: 0 20px;
    animation: 10s linear infinite slide
}

@keyframes slide {
    0% {
        transform: translateX(100%)
    }

    100% {
        transform: translateX(-100%)
    }
}

.menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    overflow-x: hidden;
    white-space: nowrap;
    margin: 0
}

.menu ul li {
    margin: 0 5px
}

.menu ul li a {
    color: #fff;
    padding: 10px 10px;
    font-weight: 700
}

.menu ul li a:hover {
    background-color: #ff4136;
    border-radius: 3px
}

.banner-text {
    top: 50%;
    transform: translate(-50%, -50%)
}

.live-categories {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    padding: 10px;
    border-radius: 5px
}

.live-categories h2 {
    margin: 0;
    font-size: 20px;
    display: flex;
    align-items: center
}

.live-icon {
    background-image: url(path/to/live-icon.png);
    background-size: cover;
    width: 20px;
    height: 20px;
    margin-right: 5px
}

.live-categories ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0
}

.live-categories li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0
}

.count {
    background: #ff4136;
    padding: 0 5px;
    border-radius: 3px
}

.banner-text,
.sports-book-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    background: rgba(0, 0, 0, .7);
    padding: 10px;
    border-radius: 5px
}

.banner-section,
.grid-section {
    background-color: #fff;
    padding: 20px 0
}

.content-section {
    background-color: #fff;
    padding: 20px 400px
}

.banner-text h2,
.sports-book-text h2 {
    margin: 0;
    font-size: 24px
}

.banner-text p,
.sports-book-text p {
    margin: 5px 0 0;
    font-size: 16px
}

.banner-section {
    width: 100%;
    position: relative;
    overflow: hidden
}

.banner-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto
}

.banner-image,
.grid-item img,
.split-banner-image {
    width: 100%;
    height: auto
}

.banner-text h1 {
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 700;
    margin: 0
}

.split-banner-section {
    display: flex
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto
}

.grid-item {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1)
}

.grid-item h3 {
    margin: 10px 0;
    font-size: 16px;
    color: #333
}

.split-banner-section {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
    background-color: #fff
}

.split-banner-container {
    display: flex;
    width: 90%;
    max-width: 1200px
}

.split-banner-left,
.split-banner-right {
    position: relative;
    flex: 1;
    margin: 10px;
    overflow: hidden
}

.faq-section {
    padding: 20px;
    background-color: #fff
}

.faq-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700
}

.faq-container,
.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto
}

.faq-item {
    background-color: #004aad;
    color: #fff;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px
}

.footer-section,
.toc-sidebar ul li a:hover {
    background-color: #f0f0f0
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700
}

.toggle-icon {
    font-size: 24px;
    display: none
}

.faq-answer {
    display: none;
    margin-top: 10px;
    text-align: left;
    font-size: 16px
}

.footer-section {
    padding: 20px 0;
    text-align: center
}

.footer-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    margin-bottom: 20px
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 20px
}

.footer-logos img {
    height: 50px
}

.footer-text {
    text-align: left;
    font-size: 14px;
    color: #333;
    flex: 1;
    margin-left: 20px
}

.footer-info {
    margin-bottom: 20px;
    font-size: 14px;
    color: #333
}

.footer-info a,
.footer-links a {
    color: #333;
    text-decoration: none
}

.footer-info a:hover,
.footer-links a:hover {
    text-decoration: underline
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px
}

.toc-button {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #004aad;
    color: #fff;
    padding: 10px 15px;
    z-index: 1000;
    border-radius: 0 5px 5px 0;
    font-size: 16px;
    font-weight: 700
}

.toc-sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, .5);
    transition: left .3s;
    z-index: 999;
    overflow-y: auto
}

.toc-sidebar.open {
    left: 0
}

.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #004aad;
    color: #fff;
    padding: 10px
}

.toc-header h3 {
    margin: 0;
    font-size: 18px
}

.close-btn {
    font-size: 24px
}

.toc-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.toc-sidebar ul li {
    padding: 10px;
    border-bottom: 1px solid #ccc
}

.toc-sidebar ul li a {
    color: #333
}

.whatsapp-button {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .3s ease, background-color .3s ease
}

.whatsapp-button:hover {
    background-color: #128c7e;
    transform: scale(1.1)
}

.whatsapp-button:active {
    transform: scale(.9)
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1)
    }
}

.whatsapp-button.pulse-animation {
    animation: pulse 2s infinite
}

.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, .4)
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .3)
}

.modal-content h2 {
    margin-top: 0
}

.modal-content p {
    margin: 10px 0
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: 700
}

.close:focus,
.close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer
}

.sitemap-section {
    padding: 20px;
    background-color: #f0f0f0
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1)
}

.sitemap-list {
    list-style-type: none;
    padding: 0
}

.sitemap-list li {
    margin-bottom: 10px
}

.sitemap-list a {
    text-decoration: none;
    color: #004aad
}

.sitemap-list a:hover {
    text-decoration: underline
}

@media (max-width:768px) {
    .content-section {
        background-color: #fff;
        padding: 20px 50px
    }
}

.footer-section {
    padding: 20px 0;
    text-align: center;
    background-color: #f0f0f0
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto
}

.footer-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    margin-bottom: 20px
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 20px
}

.footer-logos img {
    height: 50px
}

.footer-text {
    text-align: left;
    font-size: 14px;
    color: #333;
    flex: 1;
    margin-left: 20px
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    margin-bottom: 15px
}

.footer-links a {
    color: #333;
    text-decoration: none
}

.footer-links a:hover {
    text-decoration: underline
}

.footer-copyright {
    font-size: 14px;
    color: #666;
    margin-top: 15px
}

.content-section {
    background-color: #fff;
    padding: 20px 50px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1)
}

.content-section h2 {
    font-size: 24px;
    margin-bottom: 10px
}

.content-section p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px
}

.faq-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    background-color: #004aad;
    color: #fff;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700
}

.toggle-icon {
    font-size: 24px
}

.faq-answer {
    display: none;
    margin-top: 10px;
    text-align: left;
    font-size: 16px
}

.cta-button {
    display: inline-block;
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #ff4b2b;
    color: #fff;
    text-align: center;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color .3s ease
}

.cta-button:hover {
    background-color: #ff1c00
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #fff
}

@media (max-width:768px) {
    .btn {
        margin-right: 10px
    }

    .menu-toggle {
        display: block
    }

    .navbar {
        display: none
    }

    .navbar.show {
        display: block
    }

    .menu {
        display: block;
        text-align: center
    }

    .menu ul {
        flex-direction: column
    }

    .menu ul li {
        margin: 10px 0
    }

    .header-box {
        text-align: center
    }
}