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

body {
    background-color: #101111;
    color: #ffffff;
}

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

/* Header */
header {
    background-color: #1b1c1d;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 20px;
}

ul.nav-menu.active {
  display: flex;
  flex-direction: column;
  gap: 16px;
    position: absolute;
    top: 70px;
    background: #1b1c1d;
    width: 100%;
    left: 0;
    padding: 24px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

    .nav-menu a:hover {
        color: #e4063a;
    }

.auth-buttons {
    display: flex;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-login {
    background-color: transparent;
    border: 1px solid #3498db;
    color: #3498db;
    margin-right: 10px;
}

.btn-register {
    background-color: #3498db;
    color: #ffffff;
}

ul, ol {
    padding-left: 20px;
}

/* Hero Section */
.hero {
    padding-top: 100px;
    padding-bottom: 50px;
   /* background: linear-gradient(rgba(27, 28, 29, 1), rgba(27, 28, 29, 0.8)), url("images/main_head.png") center/cover no-repeat; */
    text-align: center;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

/* Features Section */
.features {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.h4-title {
    font-size: 16px;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.features-grid-casino {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background-color: #1a2633;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card p {
    color: #cccccc;
}

/* Sports Section */
.sports {
    padding: 60px 0;
    background-color: #141f2d;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.sport-card {
    background-color: #1a2633;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.sport-card:hover {
    transform: translateY(-10px);
}

.sport-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.sport-card h3 {
    font-size: 18px;
}

/* Promotions Section */
.promotions {
    padding: 60px 0;
}

.promotions-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.promotion-card {
    background-color: #1a2633;
    border-radius: 10px;
    overflow: hidden;
}

.promotion-img {
    height: 200px;
    background: url("/api/placeholder/400/200") center/cover no-repeat;
}

.promotion-content {
    padding: 20px;
}

.promotion-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.promotion-content p {
    color: #cccccc;
    margin-bottom: 20px;
}

/* Results Table */
.results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

    .results-table th, .results-table td {
        padding: 15px;
        text-align: left;
        border-bottom: 1px solid #e4063a;
    }

    .results-table th {
        background-color: #1b1c1d;
        color: white;
    }

    .results-table tr:hover {
        background-color: #1b1c1d;
    }

.results-table_wrap {
  overflow-x: scroll;
}

/* Promo Block & Text Block */
.promo-block, .text-block {
    padding: 60px 0;
}

.promo-block {
    background-color: #141f2d;
}

.promo-block h2, .text-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.promo-block p, .text-block p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #1b1c1d;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3498db;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-links a:hover {
        color: #e4063a;
    }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e4063a;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .features-grid, .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sports-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid-casino {
        grid-template-columns: repeat(1, 1fr);
    }


    .hero {
        height: 900px;
    }

    @media (max-width: 768px) {
        .mobile-menu-btn {
            display: block;
        }

        .nav-menu, .auth-buttons {
            display: none;
        }

        .promotions-slider {
            grid-template-columns: 1fr;
        }

        .footer-content {
            grid-template-columns: 1fr;
        }

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

        .features-grid-casino {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    @media (max-width: 480px) {
        .features-grid, .sports-grid {
            grid-template-columns: 1fr;
        }

        .hero {
            height: 100%;
        }

            .hero h1 {
                font-size: 28px;
            }

        .section-title {
            font-size: 28px;
        }
    }


    /* Slots Section Styles */
    .slots-section {
        padding: 60px 0;
        background-color: #0f1923;
        text-align: center;
    }

        .slots-section h2 {
            font-size: 42px;
            margin-bottom: 40px;
            color: #fff;
            text-align: center;
        }

    .slots-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }

    .slot-card {
        background-color: #141f2d;
        border-radius: 15px;
        overflow: hidden;
        transition: transform 0.3s;
        position: relative;
    }

        .slot-card:hover {
            transform: translateY(-10px);
        }

    .slot-img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .slot-title {
        color: #fff;
        font-size: 18px;
        padding: 15px 10px;
        margin: 0;
        text-align: center;
    }

    .slot-play-btn {
        background-color: #7758e9;
        color: #fff;
        border: none;
        border-radius: 30px;
        padding: 12px 0;
        width: 80%;
        margin: 0 auto 20px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        display: block;
        transition: background-color 0.3s;
    }

        .slot-play-btn:hover {
            background-color: #6143d1;
        }

    .show-more-btn {
        background-color: #172a49;
        color: #fff;
        border: none;
        border-radius: 30px;
        padding: 15px 30px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        margin: 20px auto;
        display: inline-flex;
        align-items: center;
        transition: background-color 0.3s;
    }

        .show-more-btn:hover {
            background-color: #1c3359;
        }

        .show-more-btn:after {
            content: "▼";
            margin-left: 10px;
            font-size: 12px;
        }

    .latest-bets-section {
        padding: 60px 0;
        background-color: #0f1923;
        text-align: center;
    }

        .latest-bets-section h2 {
            font-size: 42px;
            margin-bottom: 40px;
            color: #fff;
            text-align: center;
        }

    .bets-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 15px;
    }

    .bet-card {
        background-color: #141f2d;
        border-radius: 15px;
        overflow: hidden;
        border: 2px solid #2a3b4d;
        transition: all 0.3s;
        position: relative;
    }

        .bet-card:hover {
            border-color: #3498db;
            transform: translateY(-5px);
        }

    .bet-img {
        width: 100%;
        height: 120px;
        object-fit: cover;
    }

    .bet-user {
        display: flex;
        align-items: center;
        padding: 10px;
        color: #8a9bae;
        font-size: 14px;
    }

    .bet-user-icon {
        margin-right: 5px;
        color: #8a9bae;
    }

    .bet-amount {
        background-color: #172a49;
        padding: 10px;
        color: #3fd24d;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .bet-amount.win {
            color: #3fd24d;
        }

    .bet-plus {
        margin-right: 5px;
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
        .slots-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .bets-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 768px) {
        .slots-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .bets-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .slot-img {
            height: 150px;
        }
    }

    @media (max-width: 480px) {
        .slots-grid {
            grid-template-columns: 1fr;
        }

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

        .slot-img {
            height: 180px;
        }
    }
}