* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: #fff;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: linear-gradient(45deg, #d32f2f, #c2185b);
}

.logo-title {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    margin-right: 10px;
}

.title-text h1 {
    font-size: 24px;
    color: white;
    margin: 0;
}
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.auth-button {
    text-decoration: none;
    padding: 8px 15px;
    background-color: white;
    color: #d32f2f;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 20px;
    border-radius: 20px;
}
.auth-button:hover {
    background-color: black
}

header h1 {
    font-size: 30px;
}
header a{
    font-size: 30px;
    font-weight: bold;
}
nav {
    display: flex;
    justify-content: center;
    background: #333;
    padding: 10px 0;
}
nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    transition: color 0.3s;
}
nav a:hover {
    color: #fbc02d;
}
.hero {
    text-align: center;
    padding: 50px 20px;
    background: url('casino-background.jpg') no-repeat center center/cover;
}
.hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.hero button {
    padding: 10px 20px;
    font-size: 1rem;
    background: #fbc02d;
    color: #333;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}
.hero button:hover {
    background: #d32f2f;
    color: #fff;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}
.feature {
    background: linear-gradient(45deg, #d32f2f, #c2185b);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    min-height: 600px;
}
.hover-container {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

/* Styling for the image */
.hover-container img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Styling for the hover text */
.hover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
}

.hover-container:hover img {
    transform: scale(0.9);
}
.hover-container:hover .hover-text {
    opacity: 1;
}

.feature h3 {
    margin-top: 10px;
    font-size: 26px !important;
    line-height: 1.6;
}
.features p {
    margin-bottom: 10px;
}
.lazy-image {
    background: #f0f0f0;
    width: 60px;
    height: 60px;
    display: block;
}

.game-slider {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1d);
    color: #fbc02d;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}
.game-slider h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fbc02d;
    background: linear-gradient(45deg, #ff9800, #f57c00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.categories button {
    padding: 12px 25px;
    font-size: 14px;
    color: white;
    font-weight: bold;
    background-color: #d32f2f;
    border: 2px solid #c2185b;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.categories button:hover {
    background-color: #a1144d;
    transform: scale(1.1);
}
.slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.slide {
    background: #1a1a1d;
    border: 2px solid #c2185b;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.slide:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}
.slide img {
    width: 100%;
    height: 140px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}
.slide a a{
    width: 100%;
    height: 140px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}
.slide p {
    font-size: 14px;
    color: #fbc02d;
    margin-top: 10px;
    line-height: 1.4;
}
.slide a:hover {
    color: #121212;
}
.game-item {
    display: none;
}
.game-item.active {
    display: flex;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    text-align: center;
    line-height: 1.6;
}
.details {
    font-size: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    line-height: 1.6;
    background: #333;
    border-radius: 10px;
}
.details section {
    margin-bottom: 40px;
}
.details h2 {
    font-size: 30px;
    padding-bottom: 5px;
    text-align: center;
    background: linear-gradient(50deg, #d32f2f, #c2185b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.details p {
    font-size: 18px;
    padding: 4px;
    text-align: justify;
    text-indent: 2em;
    margin-top: 1em;
}
.details p br::after {
    content: "";
    display: inline-block;
    width: 2em;
}
.details strong {
    color: #fbc02d;
    font-weight: bold;
}
.details a {
    text-decoration: none;
    color: #c2185b;
    transition: color 0.3s ease;
}
.details a:hover {
    color: white;
}
.details ul {
    text-align: left;
}

#Casino\ Gaming\ Experience ul {
    padding-left: 4em;
    margin: 0;
    font-size: 18px;
}
#Casino\ Gaming\ Experience li {
    margin-bottom: 10px;
}

.promo-slideshow {
    position: relative;
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: #333;
}
.slide {
    display: none;
    text-align: center;
    background: #121212;
    padding: 20px;
}
.slide img {
    width: 100%;
    border-radius: 10px;
}
.slide h3 {
    margin: 15px 0 5px;
    font-size: 22px;
    color: #fbc02d;
}
.slide p {
    font-size: 16px;
    color: #fff;
}
.slide.active {
    display: block;
}
.slide-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.slide-nav button {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}
.slide-nav button:hover {
    background: #fbc02d;
    color: #333;
}
.slide-nav .prev {
    left: 10px;
}
.slide-nav .next {
    right: 10px;
}

.cta-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
    margin-bottom: 20px;
}
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #d32f2f;
    border: 2px solid #c2185b;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.cta-button:hover {
    background-color: #860e3e;
    transform: scale(1.1);
    color: white;
}

.faq {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    background: linear-gradient(45deg, #c2185b ,#d32f2f);
    border-radius: 10px;
    margin-bottom: 30px;
}
.faq h2 {
    margin-bottom: 20px;
}
.faq-item {
    border-bottom: 2px solid #1A1A1D;
    margin-bottom: 15px; color:
    #ffffffee;
}
.faq-item h3 {
    margin: 0;
    cursor: pointer;
    color: #ffffffee;
    padding-right: 20px;
    position: relative;
}
.faq-item h3:hover {
    color: #fbc02d;
}
.faq-item h3::after {
    content: '▼';
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}
.faq-item h3.expanded::after {
    transform: rotate(-180deg);
}
.faq-item p {
    margin: 5px 0 0;
    display: block;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s    ease;
    font-size: 16px;
    line-height: 1.8;
}
.faq-item p.expanded {
    max-height: 500px;
    transition: max-height 2s ease;
    padding-bottom: 5px;
}

.contact-section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #121212;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #fff;
}
.contact-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
    background: linear-gradient(45deg, #d32f2f, #c2185b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.contact-section p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-size: 16px;
    margin-bottom: 5px;
    color: #fbc02d;
}
.form-group input,
.form-group textarea {
    font-size: 16px;
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    background: #333;
    color: #fff;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #fbc02d;
    outline: none;
}
.submit-button {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    background: #c2185b;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.submit-button:hover {
    background: #d32f2f;
    color: #fff;
}

ul, ol {
    margin: 0 0 20px 20px;
    padding: 0;
    list-style-position: inside;
}

li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
}

.footer {
    background-color: #121212;
    color: #fff;
    padding: 20px;
    font-family: Arial, sans-serif;
    border-top: 3px solid #fbc02d;
}
.footer-row.row-1 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}
.footer-row.row-1 .column {
    flex: 1;
    text-align: center;
}
.column {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #fff;
    font-weight: bold;
}
.support-icon {
    width: 50px;
    height: auto;
    margin-bottom: 10px; 
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.large-icon {
    width: 200px;
    height: auto;
}
.support-details {
    margin-top: 10px;
}
.support-details p {
    margin: 5px 0;
    color: #fff;
    font-size: 0.9rem;
}
.contact-link {
    display: inline-block;
    margin-top: 10px;
    color: #fbc02d;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}
.contact-link:hover {
    color: #fff;
}
.footer-row.row-2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    border-top: 1px solid #444;
    padding-top: 20px;
}
.footer-row.row-2 .column {
    flex: 1;
    text-align: center;
    min-height: 120px;
}
.Infos,
.payment-methods,
.websites {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 10px;
}
.Infos img,
.payment-methods img,
.websites img {
    width: 35px;
    height: auto;
    transition: transform 0.3s ease;
}
.payment-methods img {
    width: 70px;
    height: 40px;
}
.Infos img:hover,
.payment-methods img:hover,
.websites img:hover {
    transform: scale(1.1);
}
.footer-row.row-3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #444;
    padding-top: 20px;
}
.logo-title {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: bold;
}
.root-link {
    text-decoration: none;
    color: inherit;
}
.logo-title .logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.additional-links ul {
    list-style: none;
    padding: 0;
    text-align: right;
}
.additional-links ul li {
    margin-bottom: 5px;
}
.additional-links ul li a {
    color: #fbc02d;
    text-decoration: none;
    transition: color 0.3s;
}
.additional-links ul li a:hover {
    color: #fff;
}
.additional-links ul li:first-child a {
    margin-right: 20px;
}
main {
    padding: 20px;
    background-color: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;
}
.blogs-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.blogs-list h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #d32f2f, #c2185b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    border-bottom: 2px solid #c2185b;
    display: inline-block;
    padding-bottom: 5px;
    transition: border-color 0.3s ease;
}
.blogs-list h2:hover {
    border-bottom-color: #d32f2f;
}

.blog-entries {
    list-style: none;
    padding: 0;
}
.blog-entries li {
    margin: 20px 0;
    padding: 15px;
    background-color: #333;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-entries li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.blog-entries a {
    text-decoration: none;
    display: block;
    text-align: left;
    background: linear-gradient(45deg, #d32f2f, #c2185b);
    background-clip: text; 
    -webkit-background-clip: text; 
    color: transparent;
    transition: color 0.3s ease, transform 0.2s ease;
}
.blog-entries a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}
.blog-entries a h3 {
    font-size: 1.5rem;
    margin: 0;
    background: linear-gradient(45deg, #d32f2f, #c2185b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    transition: color 0.3s ease, transform 0.2s ease;
}
.blog-entries a h3:hover {
    color: #ffffff;
    transform: translateY(-2px);
}
.blog-entries a p {
    font-size: 1rem;
    margin: 10px 0 0;
    color: #ccc;
}
.featured-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.game-tiles {
    text-align: center;
    margin: 20px;
    padding: 20px;
}
.game-tiles h1 {
    background: linear-gradient(45deg, #d32f2f, #c2185b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.game-tiles p {
    margin-top: 10px;
    font-size: 1.2rem;
    text-align: justify;
    margin-bottom: 15px;
}

.game-tiles h2 {
    background: linear-gradient(45deg, #d32f2f, #c2185b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}
.tiles-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    justify-items: center;
}
.tile {
    text-align: center;
    background-color: #222;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: white;
    transition: transform 0.3s;
}
.tile img {
    width: 150px;
    height: 120px;
    border-radius: 5px;
}
.tile p {
    margin-top: 10px;
    font-size: 0.9rem;
    text-align: center;
    font-weight: bold;
}
.tile:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.content {
    padding: 20px;
    margin: 20px auto;
    max-width: 1200px;
    background: #333;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Perfect centering */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 10px; /* Padding for smaller screens */
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    z-index: 999; /* Stays below the popup content */
}
.popup-content {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%; /* Responsive width */
    max-width: 900px; /* Maximum width */
    max-height: 80%; /* Limit height */
    overflow: auto; /* Scroll content if it overflows */
    z-index: 1001; /* Stays above the dimmed background */
}   
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    background: rgb(252, 97, 97);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: #f00;
    color: #fff;
}

.pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination button {
    background-color: #c2185b;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
}

.pagination button:disabled {
    background-color: #860e3e;
    cursor: not-allowed;
}

.pagination .page-number {
    font-size: 18px;
    margin: 0 10px;
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
        padding: 0 10px;
    }
    header {
        padding: 10px;
        text-align: center;
        align-items: center;
    }
    header .logo {
        width: 40px;
    }
    header h1 {
        font-size: 20px;
    }
    nav a{
        font-size: 13px;
        align-items: center;
    }
    .hero {
        padding: 30px 10px;
        background-size: cover;
    }
    .hero h2 {
        font-size: 1.2rem;
    }
    .hero button {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        padding-bottom: 20px;
        overflow: hidden;
    }
    .feature {
        margin: 0 auto;
        padding: 10px;
        border-radius: 8px;
        box-sizing: border-box;
        min-height: 200px;
    }
    .feature img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    .feature h3 {
        font-size: 1rem;
    }
    .feature p {
        font-size: 0.9rem;
    }

    .featured-text {
        text-align: justify;
        margin-left: 20px;
        margin-right: 20px;
        object-fit: contain;
    }
    .featured-image{
        height: 250px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .game-slider {
        padding: 10px;
    }
    .categories {
        display: flex; flex-wrap: wrap; justify-content: left; gap: 10px; font-size: 10px;
    }
    .slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 10px;
        padding: 10px;
    }
    .slider::-webkit-scrollbar {
        display: none;
    }
    .slide:hover{
        transform: none;
    }
    .slide {
        flex: 0 0 80%;
        scroll-snap-align: start;
    }
    .game-slider h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .details {
        padding: 10px;
        font-size: 14px;
    }
    .details h2 {
        font-size: 20px;
        text-align: left;
    }
    .details p {
        font-size: 0.9rem;
        text-align: justify;
    }

    .faq {
        padding: 15px;
    }
    .faq h2 {
        font-size: 18px;
    }
    .faq-item h3 {
        font-size: 14px;
    }
    .faq-item p {
        font-size: 12px;
    }

    .footer {
        font-size: 0.8rem;
        padding: 15px;
    }
    .footer-row {
        flex-direction: column;
        gap: 15px;
    }
    .footer-row.row-1 .column,
    .footer-row.row-2 .column,
    .footer-row.row-3 .additional-links{
        flex: none;
        width: 100%;
        text-align: center;
    }
    .footer .contact-link {
        font-size: 0.8rem;
    }
    .game-tiles {
        margin: 10px;
        padding: 10px;
    }
    .game-tiles h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .game-tiles p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    .game-tiles h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    .tiles-container {
        grid-template-columns: repeat(2, 1fr); /* Adjust grid to 2 columns */
        gap: 15px;
    }
    .tile {
        background-color: #333; /* Darker background for better contrast */
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        max-width: 160px; /* Restrict width for better mobile spacing */
    }
    .tile img {
        width: 100%;
        height: auto;
        border-radius: 8px; /* More rounded corners for a modern look */
        border: 2px solid #444; /* Add a border for emphasis */
    }
    .tile p {
        margin-top: 10px;
        font-size: 0.85rem;
        font-weight: bold;
        color: #f3f4f6;
        text-align: center;
    }
    .tile:hover {
        transform: scale(1.08);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3); /* Enhance hover effect */
    }

    .auth-buttons {
        flex-direction: column;
        gap: 5px;
    }

    .auth-button {
        font-size: 15px;
        padding: 12px 20px;
    }
    .popup-content {
        max-width: 95%;
        max-height: 80%;
        padding: 15px;
    }

    iframe {
        width: 300px;
        height: 550px;
    }
    .close-btn {
        top: 5px;
        right: 5px;
        font-size: 16px;
        width: 25px;
        height: 25px;
        line-height: 25px;
    }
    
}
