
    /* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.4;
    color: #444;
    background-color: #f8f9fa;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

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

.section {
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.section + .section {
    margin-top: 0;
}

.section-header {
    margin-bottom: 20px; /* Reduced from 40px */
    text-align: center;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: #777;
    max-width: 800px;
    margin: 0 auto;
}

/* Header - Fixed to top */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

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

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

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #1e3799;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    border: none;
    display: inline-block;
}

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

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

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

.btn-outline:hover {
    background-color: #1e3799;
    color: #fff;
}

/* Hero Banner */
.hero-banner {
    background: url('../images/1creative-web.png.webp') no-repeat center center;
    background-size: cover;
    padding: 150px 0 100px;
    position: relative;
    color: #fff;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 50px;
}

.hero-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
}

.hero-cta {
    display: inline-block;
    background-color: #ff4500;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.hero-cta:hover {
    background-color: #e03e00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Games Carousel */
.games {
    padding: 30px 0; /* Reduced from 60px 0 */
}

.games-filter {
    margin-bottom: 15px; /* Reduced from 30px */
}

.filter-button {
    background-color: #1e3799;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    padding: 10px 25px;
    cursor: pointer;
    border-radius: 5px;
    display: inline-block;
}

.games-carousel {
    position: relative;
    margin: 0 -10px;
    overflow: hidden;
}

.games-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.game-card {
    flex: 0 0 12.5%;
    padding: 0 10px;
    position: relative;
    transition: all 0.3s;
}

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

.game-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.game-image {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-image-container:hover .game-overlay {
    opacity: 1;
}

.game-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.game-provider {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 10px;
}

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

.game-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    border: none;
    display: inline-block;
}

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

.game-btn-demo {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.game-btn-play:hover {
    background-color: #e03e00;
}

.game-btn-demo:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #1e3799;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Text Content Section */

.text-block {
    margin-bottom: 20px; /* Reduced from 40px */
}

.text-block h2 {
    margin-bottom: 10px; /* Reduced from 20px */
}

.text-block p {
    margin-bottom: 10px; /* Reduced from 15px */
}

/* Two Column Content */
.two-column {
    gap: 20px; /* Reduced from 40px */
    margin-top: 20px; /* Reduced from 40px */
}

.column {
    flex: 1;
}

/* Featured Bonus */
.nofeutre-bonus {
    background: url('../images/2creative-web.png.webp') no-repeat center center;
    background-size: cover;
    position: relative;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    margin: 50px 0;
}

.nofeutre-bonus:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.bonus-card {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 10px;
    background-color: rgba(30, 55, 153, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

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

.bonus-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.bonus-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ff4500;
}

.bonus-details {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.bonus-btn {
    background-color: #ff4500;
    color: #fff;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    display: inline-block;
}

.bonus-btn:hover {
    background-color: #e03e00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-column-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    bottom: -10px;
    left: 0;
    background-color: #1e3799;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #fff;
}

.footer-about {
    margin-bottom: 20px;
    color: #bbb;
    line-height: 1.7;
}

.footer-links li {
    margin-bottom: 12px;
    list-style: none;
}

.footer-links a {
    color: #bbb;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #bbb;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1200px) {
    .game-card {
        flex: 0 0 16.666%;
    }
}

@media (max-width: 992px) {
    .game-card {
        flex: 0 0 25%;
    }

    .two-column {
        flex-direction: column;
    }

    .section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .header-inner {
        height: 70px;
    }

    .hero-banner {
        padding: 120px 0 80px;
        margin-top: 70px;
    }

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

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

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

    .game-card {
        flex: 0 0 33.333%;
    }

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

    .bonus-amount {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .logo-text {
        display: none;
    }

    .logo img {
        height: 30px;
    }

    .game-card {
        flex: 0 0 50%;
    }

    .bonus-card {
        padding: 30px 20px;
    }

    .bonus-title {
        font-size: 24px;
    }

    .bonus-amount {
        font-size: 30px;
    }
}


 button {
     border: 0;
     background: transparent;
     cursor: pointer;
 }


 footer {
     background: #242424;
     padding: 25px 0;
     margin-top: 50px;
     span {
         color: #fff;
     }
 }