/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font Settings */
body {
    font-family: 'Arial', sans-serif;
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background-color: white;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 80px;
    max-width: 100%;
}

nav ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 25px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
}

/* Search and Client Area */
.search-client-area {
    display: flex;
    align-items: center;
}

.search input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 250px;
}

.client-area-btn {
    padding: 10px 20px;
    background-color: #005bb5;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-left: 20px;
    font-weight: bold;
}

.client-area-btn:hover {
    background-color: #00498d;
}

/* Hamburger Menu (hidden by default) */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo img {
        height: 60px;
    }

    nav ul {
        flex-direction: column;
        margin-top: 15px;
        width: 100%;
        display: none;  /* Hide menu by default */
        text-align: left;
    }

    nav ul li {
        margin: 10px 0;
        width: 100%;
    }

    .search-client-area {
        margin-top: 20px;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .search input {
        margin-bottom: 10px;
        width: 100%;
    }

    .client-area-btn {
        margin-top: 10px;
        width: 100%;
    }

    /* Show the hamburger menu on mobile */
    .hamburger {
        display: block;
    }

    /* Show the menu when hamburger is clicked */
    nav.active ul {
        display: block;
    }

    nav ul li a {
        padding: 10px;
    }

    /* Styling the hamburger menu icon */
    .hamburger i {
        color: #333;
    }
}


/* Hero Section */
.hero-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #333;
}

/* Slider and Image Styling */
.hero-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text and Button Styling */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Navigation Arrows */
.nav-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.prev, .next {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

/* For responsiveness */
@media (max-width: 768px) {
    .hero-container {
        height: 300px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}



/* Our Games Section */
.our-games-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f5f5f5;
}

/* Hero Image */
.hero-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.2rem;
    color: #f5f5f5;
}

/* Game Cards Container */
.game-cards-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.game-card {
    position: relative;
    width: 30%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
}

.game-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-overlay p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.see-more {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.see-more:hover {
    background-color: #0056b3;
}

/* Explore More Button */
.explore-more-container {
    margin-top: 30px;
}

.explore-more-btn {
    font-size: 1.2rem;
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
}

.explore-more-btn:hover {
    background-color: #0056b3;
}

/* Responsiveness */
@media (max-width: 768px) {
    .game-cards-container {
        flex-direction: column;
    }

    .game-card {
        width: 100%;
    }

    .hero-image {
        height: 250px;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}


/* Slots Section */
.slots-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f5f5f5;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* Slots Cards Container */
.slots-cards-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.slots-card {
    position: relative;
    width: 30%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.slots-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
}

.slots-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.see-more {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.see-more:hover {
    background-color: #0056b3;
}

/* Explore More Button */
.explore-more-container {
    margin-top: 30px;
}

.explore-more-btn {
    font-size: 1.2rem;
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
}

.explore-more-btn:hover {
    background-color: #0056b3;
}

/* Responsiveness */
@media (max-width: 768px) {
    .slots-cards-container {
        flex-direction: column;
    }

    .slots-card {
        width: 100%;
    }
}


/* Blog Section */
.blog-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f5f5f5;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}
/* Blog Section */
.blog-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f5f5f5;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* Blog Section */
.blog-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f5f5f5;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* Blog Section */
.blog-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f5f5f5;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* Blog Cards Container */
.blog-cards-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.blog-card {
    position: relative;
    width: 30%;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures that the button is at the bottom */
}

.blog-card img {
    width: 100%;
    height: 60%;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures the button stays at the bottom */
    height: 100%;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.read-article {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    align-self: flex-start;
    margin-top: auto; /* Keeps the button at the bottom of the content area */
    transition: background-color 0.3s ease;
}

.read-article:hover {
    background-color: #0056b3;
}

/* Explore More Button */
.explore-more-container {
    margin-top: 30px;
}

.explore-more-btn {
    font-size: 1.2rem;
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
}

.explore-more-btn:hover {
    background-color: #0056b3;
}

/* Responsiveness */
@media (max-width: 768px) {
    .blog-cards-container {
        flex-direction: column;
    }

    .blog-card {
        width: 100%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}


/* Footer Styling */
.footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
    text-align: center;
    font-size: 1rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links,
.footer-social,
.footer-newsletter {
    flex: 1;
    min-width: 200px;
}

.footer-links ul,
.footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-social li {
    margin: 10px 0;
}

.footer-links a,
.footer-social a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #007bff;
}

.footer-social i {
    margin-right: 8px;
}

.footer-newsletter input {
    padding: 10px;
    width: 70%;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.footer-newsletter button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.footer-newsletter button:hover {
    background-color: #0056b3;
}

.footer-bottom {
    background-color: #222;
    padding: 10px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsiveness */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: left;
    }

    .footer-newsletter input {
        width: 100%;
        margin-bottom: 10px;
    }

    .footer-bottom {
        text-align: center;
    }
}
