* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #fff;
}

/* Header */
.header {
    background-color: #1a1a1a;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
}

.sidebar.mobile-open {
    display: block;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    font-style: italic;
}

.header-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    padding: 10px 28px;
    border-radius: 25px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-primary {
    background-color: #dc143c;
    color: #fff;
}

.search-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 73px;
    width: 260px;
    height: calc(100vh - 73px);
    background-color: #0d0d0d;
    padding: 20px;
    overflow-y: hidden;
    z-index: 1000;
}

/* Set white color for all SVG icons in the sidebar using filter */
.sidebar img[src$=".svg"] {
    filter: brightness(0) invert(1);
}

.promo-card {
    background: linear-gradient(135deg, #dc143c 0%, #a00 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    position: relative;
}

.promo-text {
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 4px;
}

.promo-percent {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
}

.promo-btn {
    background-color: #000;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    border: 2px solid #fff;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

.g-klasse {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: -5px;
}

.sidebar-btn {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 1px 1px;
    border-radius: 15px;
    font-size: 9px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    white-space: nowrap;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-top: 20px;
    padding: 1px 0;
    border-bottom: 1px solid #222;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
}

.sidebar-menu li:hover {
    color: #dc143c;
}

/* Main Content */
.main-content {
    margin-left: 260px;
    margin-top: 73px;
    padding-bottom: 100px;
}

/* Hero Banner */
.hero {
    background: linear-gradient(90deg, #e5e5e5 0%, #fff 50%, #dc143c 100%);
    padding: 60px 40px;
    position: relative;
    margin-bottom: 40px;
    background-size: fill;
}

.hero-athletes {
    position: absolute;
    right: 40px;
    bottom: 0;
    width: 50%;
    height: 100%;
    object-fit: fill; /* Fill block style for the hero image */
}

.hero-content {
    max-width: 500px;
}

.hero-title {
    color: #000;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 12px;
}

.hero-subtitle {
    color: #dc143c;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
}

.btn-cta {
    background-color: #dc143c;
    color: #fff;
    padding: 16px 48px;
    border-radius: 30px;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

/* Sports Cards */
.sports-section {
    background-color: #dc143c;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
}

.sports-wave {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background-color: #dc143c;
    clip-path: polygon(0 100%, 100% 100%, 100% 40%, 95% 30%, 90% 35%, 85% 25%, 80% 30%, 75% 20%, 70% 25%, 65% 15%, 60% 20%, 55% 10%, 50% 15%, 45% 5%, 40% 10%, 35% 0%, 30% 5%, 25% 0%, 20% 10%, 15% 5%, 10% 15%, 5% 10%, 0 20%);
}

.sports-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.sport-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 16px;
    min-width: 180px;
    padding: 20px;
    text-align: center;
    position: relative;
    border: 2px solid rgba(255,255,255,0.3);
}

.sport-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}

.sport-title {
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sport-icon {
    font-size: 28px;
}

/* Events Section */
.events-section {
    background-color: #f5f5f5;
    padding: 40px;
    margin-bottom: 40px;
}

.section-title {
    color: #000;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
}

.event-card {
    background-color: #e0e0e0;
    border-radius: 12px;
    padding: 20px;
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 12px;
    color: #666;
}

.event-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.event-badge {
    background-color: #00bcd4;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: bold;
}

.event-live {
    background-color: #dc143c;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: bold;
}

.event-match {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.team {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.team-flag {
    width: 50px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
}

.team-name {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.vs {
    font-size: 18px;
    font-weight: 900;
    color: #dc143c;
    margin: 0 20px;
}

.odds-section {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.odds-btn {
    background-color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    flex: 1;
    cursor: pointer;
    text-align: center;
}

.odds-label {
    font-size: 11px;
    color: #666;
    margin-bottom: 4px;
}

.odds-value {
    font-size: 16px;
    font-weight: bold;
    color: #dc143c;
}

/* Recommended Section */
.recommended-section {
    background-color: #f8f8f8;
    padding: 30px;
    margin-bottom: 30px;
}

.recommended-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.view-all {
    color: #dc143c;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.game-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 240px; /* Slightly reduced height */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #000;
    color: #ffd700;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 9px;
    font-weight: bold;
    z-index: 2;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.game-buttons {
    display: flex;
    gap: 10px;
}

.game-btn {
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
}

.game-btn-play {
    background-color: #dc143c;
    color: #fff;
}

.game-btn-demo {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.game-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    color: #333;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
}

/* Live Games Section */
.live-games-section {
    background-color: #f8f8f8;
    padding: 30px;
    margin-bottom: 30px;
}

/* Providers Section */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.provider-card {
    background-color: #000000;
    border-radius: 10px;
    overflow: hidden;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.provider-logo-img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

/* Big Wins Section */
.big-wins-section {
    background-color: #f8f8f8;
    padding: 30px;
    margin-bottom: 30px;
}

.games-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 15px;
}

.win-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    min-width: 280px;
    height: 100px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.win-game-img {
    width: 100px;
    height: 100px;
    position: relative;
}

.win-game-img-inner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.win-info {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.win-game-name {
    font-size: 13px;
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
}

.win-user {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    font-size: 11px;
    color: #666;
}

.win-user-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
}

.user-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.win-amount {
    font-size: 14px;
    font-weight: bold;
    color: #dc143c;
}

/* Section Header */
.section-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    color: #0c0c0c;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
}

.view-all-btn {
    color: #dc143c;
    font-weight: bold;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Instant Win and Drops & Wins Sections */
.instant_win-section,
.drops_wins-section,
.books-section {
    display: none;
    background-color: #f8f8f8;
    padding: 30px;
    margin-bottom: 30px;
}

/* Sport Tabs */
.sport-tabs-section {
    background-color: #f5f5f5;
    padding: 40px;
    margin-bottom: 40px;
}

.sport-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.sport-tab-card {
    background-color: #e5e5e5;
    border-radius: 12px;
    padding: 24px;
    flex: 1;
    min-width: 300px;
}

.sport-tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sport-tab-title {
    color: #dc143c;
    font-size: 18px;
    font-weight: 900;
}

.sport-tab-icon {
    color: #dc143c;
    font-size: 24px;
}

.sport-tab-nav {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 12px;
    flex-wrap: wrap;
}

.sport-tab-nav-item {
    color: #999;
    font-size: 14px;
    cursor: pointer;
    padding-bottom: 8px;
}

.sport-tab-nav-item.active {
    color: #000;
    font-weight: bold;
    border-bottom: 3px solid #dc143c;
}

.match-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.match-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 16px;
}

.match-live-badge {
    background-color: #dc143c;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 8px;
}

.match-teams {
    color: #000;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 12px;
}

.match-odds {
    display: flex;
    gap: 8px;
}

.match-odd-btn {
    background-color: #f5f5f5;
    border: none;
    border-radius: 6px;
    padding: 8px;
    flex: 1;
    cursor: pointer;
    text-align: center;
    font-size: 12px;
}

/* Bet Mentor Section */
.bet-mentor-section {
    background: linear-gradient(90deg, #e5e5e5 0%, #fff 50%);
    padding: 60px 40px;
    margin-bottom: 40px;
    position: relative;
}

.bet-mentor-content {
    max-width: 600px;
}

.bet-mentor-label {
    color: #000;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 12px;
}

.bet-mentor-title {
    color: #dc143c;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 32px;
}

.bet-mentor-btn {
    background-color: #000;
    color: #fff;
    padding: 14px 40px;
    border-radius: 25px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.bet-mentor-link {
    color: #666;
    font-size: 16px;
    text-decoration: underline;
    cursor: pointer;
}

.bet-mentor-image {
    position: absolute;
    right: 40px;
    bottom: 0;
    width: 40%;
}

/* Footer */
.footer {
    background-color: #000;
    padding: 60px 40px 40px;
}

.footer-banner {
    background: linear-gradient(90deg, #e5e5e5 0%, #dc143c 100%);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
}

.footer-banner-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
}

.footer-banner-title {
    color: #000;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 8px;
}

.footer-banner-subtitle {
    color: #dc143c;
    font-size: 32px;
    font-weight: 900;
}

.footer-banner-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
}

.footer-banner-btn {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #333;
}

.footer-link {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
}

.footer-payment {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
}

.footer-disclaimer {
    text-align: center;
    color: #999;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #333;
}

.footer-age {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.footer-copyright {
    color: #999;
    font-size: 12px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .sidebar {
        display: none;
        position: fixed;
        left: 0;
        top: 0; /* Position higher */
        width: 80%;
        max-width: 260px;
        height: 100vh; /* Full height */
        z-index: 1002; /* Higher than header */
        box-shadow: 2px 0 10px rgba(0,0,0,0.5);
        padding: 15px; /* Reduced padding */
    }

    .sidebar.mobile-open {
        display: block;
    }

    .promo-card {
        padding: 15px; /* Reduced padding */
        margin-bottom: 12px; /* Reduced margin */
    }

    .promo-text {
        font-size: 9px; /* Reduced font size */
        margin-bottom: 3px; /* Reduced margin */
    }

    .promo-percent {
        font-size: 20px; /* Reduced font size */
        margin-bottom: 10px; /* Reduced margin */
    }

    .promo-btn {
        padding: 6px 15px; /* Reduced padding */
        border-radius: 15px; /* Reduced border radius */
        font-size: 10px; /* Reduced font size */
    }

    .g-klasse {
        padding: 12px; /* Reduced padding */
        margin-bottom: 15px; /* Reduced margin */
        gap: 10px; /* Reduced gap */
    }

    .sidebar-buttons {
        gap: 6px; /* Reduced gap */
        margin-bottom: 15px; /* Reduced margin */
    }

    .sidebar-btn {
        padding: 5px 4px; /* Reduced padding */
        border-radius: 12px; /* Reduced border radius */
        font-size: 7px; /* Reduced font size */
        gap: 2px; /* Reduced gap */
    }

    .sidebar-menu li {
        padding: 1px 0; /* Reduced padding */
        gap: 10px; /* Reduced gap */
        font-size: 12px; /* Reduced font size */
    }

    .main-content {
        margin-left: 0;
        margin-top: 73px;
    }

    .header {
        padding: 12px 16px;
    }

    .menu-icon {
        width: 36px;
        height: 36px;
    }

    .logo-text {
        font-size: 24px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 11px;
    }

    .search-icon {
        width: 36px;
        height: 36px;
    }

    .hero {
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 16px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .btn-cta {
        padding: 14px 32px;
        font-size: 14px;
    }

    .hero-athletes {
        position: relative;
        right: auto;
        width: 100%;
        height: 200px;
        margin-top: 20px;
        object-fit: contain;
    }

    .sports-section {
        padding: 20px 16px;
    }

    .sports-grid {
        gap: 12px;
    }

    .sport-card {
        min-width: 140px;
        padding: 16px;
    }

    .events-section {
        padding: 20px 16px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .recommended-section,
    .live-games-section,
    .sport-tabs-section {
        padding: 20px 16px;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .sport-tabs {
        flex-direction: column;
    }

    .sport-tab-card {
        min-width: 100%;
    }

    .bet-mentor-section {
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
    }

    .bet-mentor-content {
        max-width: 100%;
        text-align: center;
    }

    .bet-mentor-title {
        font-size: 24px;
    }

    .bet-mentor-image {
        position: relative;
        right: auto;
        width: 100%;
        max-width: 300px;
        margin: 20px auto 0;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-banner {
        min-height: auto;
        padding: 30px 20px;
        display: block;
    }

    .footer-banner-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-banner-title {
        font-size: 16px;
    }

    .footer-banner-subtitle {
        font-size: 24px;
    }

    .footer-banner-image {
        position: relative;
        width: 100%;
        height: 150px;
        margin-bottom: 20px;
    }

    .footer-banner-btn {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        display: block;
        margin: 0 auto;
    }

    /* Mobile table styles - overflow-x scroll without container */
    .content-container table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        width: 100%;
    }

    .content-section {
        padding: 20px 16px;
    }

    .content-container {
        padding: 0;
    }

    .content-container h1 {
        font-size: 24px;
    }

    .content-container h2 {
        font-size: 20px;
    }

    .content-container h3 {
        font-size: 18px;
    }

    .content-container p,
    .content-container ul,
    .content-container ol {
        font-size: 14px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1200px) {
    .sidebar {
        width: 240px;
    }

    .main-content {
        margin-left: 240px;
        margin-top: 73px;
    }

    .sport-tabs {
        flex-wrap: wrap;
    }

    .sport-tab-card {
        min-width: calc(50% - 10px);
        flex: 1;
    }

    .hero {
        padding: 40px 30px;
    }

    .hero-subtitle {
        font-size: 36px;
    }

    .sports-section {
        padding: 30px;
    }

    .events-section,
    .recommended-section,
    .live-games-section,
    .sport-tabs-section {
        padding: 30px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

/* Content Section */
.content-section {
    background-color: #f8f8f8;
    padding: 30px;
    margin-bottom: 30px;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-container h1,
.content-container h2,
.content-container h3,
.content-container h4,
.content-container h5,
.content-container h6 {
    color: #0c0c0c;
    margin-bottom: 20px;
    margin-top: 30px;
}

.content-container h1 {
    font-size: 32px;
    font-weight: 900;
}

.content-container h2 {
    font-size: 28px;
    font-weight: 700;
}

.content-container h3 {
    font-size: 24px;
    font-weight: 700;
}

.content-container p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.content-container ul,
.content-container ol {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-container li {
    margin-bottom: 10px;
}

.content-container a {
    color: #dc143c;
    text-decoration: none;
}

.content-container a:hover {
    text-decoration: underline;
}

.content-container table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #000000;
}

.content-container table th,
.content-container table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.content-container table th {
    background-color: #dc143c;
    color: #fff;
    font-weight: bold;
}

.content-container table tr:nth-child(even) {
    background-color: #000000;
}
