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

body {
    background-color: #d4d0d0;
    color: #333;
}

header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: #1a2a3a;
    color: white;
    padding: 0.1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.logo img {
    height: 100px;
    width: auto;
    max-height: none;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/gamesec_bg.webp');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.animated-heading {
    opacity: 0;
    transform: translateY(-50px);
    animation: slideFadeIn 1s ease-out forwards;
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    /* White text if background is dark */
    margin-top: 20px;
}

@keyframes slideFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.download-section {
    background-color: #2c3e50;
    color: white;
    padding: 2rem;
    text-align: center;
}

.download-form {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.phone-input {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 5px;
    padding: 0.5rem;
}

.phone-input select {
    border: none;
    outline: none;
    padding: 0.5rem;
}

.phone-input input {
    border: none;
    outline: none;
    padding: 0.5rem;
    width: 200px;
}

.send-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    margin-left: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.about-section,
.games-section,
.faq-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #2c3e50;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.know-more-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    display: block;
    margin: 1rem auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.game-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.stats {
    background-color: #1a2a3a;
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    margin: 2rem 0;
}

.stats h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.faq-item {
    background-color: white;
    border-radius: 5px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

footer {
    background-color: #1a2a3a;
    color: white;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: white;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.payment-methods span {
    background-color: #2c3e50;
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
    font-size: 0.8rem;
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #2c3e50;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }

    nav ul {
        margin-top: 1rem;
    }

    nav ul li {
        margin-left: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .download-form {
        flex-direction: column;
        align-items: center;
    }

    .phone-input {
        margin-bottom: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .send-btn {
        width: 100%;
        max-width: 300px;
        margin-left: 0;
    }
}

.promo-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/Promotion.webp');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.promo-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.download-section {
    background-color: #2c3e50;
    color: white;
    padding: 3rem;
    text-align: center;
    margin: 2rem 0;
}

.download-section h2 {
    margin-bottom: 1rem;
}

.download-form {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.phone-input {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 5px;
    padding: 0.5rem;
}

.phone-input select {
    border: none;
    outline: none;
    padding: 0.5rem;
    background: transparent;
}

.phone-input input {
    border: none;
    outline: none;
    padding: 0.5rem;
    width: 200px;
}

.send-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    margin-left: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.send-btn:hover {
    background-color: #c0392b;
}

.promo-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #e74c3c;
    margin: 1rem auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2em;
    margin-bottom: 3rem;
}

.game-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
}

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

.game-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.play-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

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

.featured-promo {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
}

.promo-image {
    flex: 1;
    min-width: 300px;
}

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

.promo-content {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-content h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.promo-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Social Icons Styling */
.social-icons {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.social-icons a {
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #f1c40f;
    transform: translateY(-3px);
}

.follow-us {
    margin-top: 15px;
    font-size: 14px;
    color: #ccc;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.payment-methods span {
    background-color: #2c3e50;
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
    font-size: 0.8rem;
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #2c3e50;
    color: #aaa;
}

.games-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/casino-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.games-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.games-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #e74c3c;
    margin: 1rem auto;
}

.game-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.game-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-content {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-content h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.game-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.play-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
}

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

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background-color: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #555;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.payment-methods span {
    background-color: #2c3e50;
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
    font-size: 0.8rem;
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #2c3e50;
    color: #aaa;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }

    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 0.5rem;
    }

    .games-hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .game-card {
        flex-direction: column;
    }

    .game-image {
        min-height: 250px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }
}

.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/about-banner.png');
    background-size: cover;
    background-position: center;
    height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin-bottom: 2rem;
}

.faq-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.faq-btn:hover {
    background-color: #c0392b;
}

.contact-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    min-height: 617px;
}

.contact-card h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-card h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #e74c3c;
    position: absolute;
    bottom: 0;
    left: 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 1.2rem;
    color: #e74c3c;
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.info-content h3 {
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.info-content p,
.info-content a {
    color: #666;
    line-height: 1.6;
}

.info-content a {
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: #e74c3c;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #e74c3c;
}

textarea.form-control {
    min-height: 50px;
    resize: vertical;
}

.submit-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.submit-btn:hover {
    background-color: #c0392b;
}

.send-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    margin-left: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.send-btn:hover {
    background-color: #055b09;
}

.section-container {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #e74c3c;
    margin: 1rem auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.know-more-btn:hover {
    background-color: #c0392b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
}

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

.feature-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.stats {
    background-color: #1a2a3a;
    color: white;
    text-align: center;
    padding: 4rem 1rem;
    margin: 2rem 0;
}

.stats h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stats p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    /* gap: 20px; */
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
}

.animated-heading {
    color: white;
    -webkit-text-stroke: 2px #cacaca;
}

.hero-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 5%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/gamesec_bg.webp');
    color: white;
    min-height: 80vh;
    margin-top: 80px;
}

.hero-left {
    flex: 1;
    padding-right: 30px;
    animation: slideInLeft 1s ease forwards;
    opacity: 0;
}

.hero-left h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.hero-left p {
    font-size: 1.2rem;
    color: #ccc;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease forwards;
    opacity: 0;
}

.image-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.bg-image {
    width: 220px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    position: absolute;
    top: 20px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.img1 {
    left: -75px;
    transform: rotate(-3deg);
    filter: brightness(50%);
}

.img2 {
    right: -75px;
    transform: rotate(3deg);
    filter: brightness(50%);
}

.center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 400px;
    transform: translate(-50%, -35%);
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 0 20px rgb(255, 217, 2);
}

/* Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Stats Section Styles */
.stats-section {
    max-width: 1200px;
    margin: 10px auto;
    padding: 10px;
    font-family: 'Arial', sans-serif;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card1,
.testimonial-card2,
.testimonial-card3,
.ratings-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    min-height: 395px;
}

.testimonial-card1 h3,
.testimonial-card2 h3,
.testimonial-card3 h3,
.ratings-card h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1c40f;
}

.rating-overview {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.average-rating {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-right: 15px;
}

.total-reviews {
    color: #666;
    font-size: 14px;
}

.rating-bars {
    margin-top: 20px;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.stars {
    width: 80px;
    color: #f1c40f;
    font-size: 14px;
}

.bar-container {
    flex-grow: 1;
    height: 10px;
    background: #eee;
    border-radius: 5px;
    margin: 0 10px;
    overflow: hidden;
}

.bar {
    height: 100%;
    background: #f1c40f;
    border-radius: 5px;
}

.percentage {
    width: 80px;
    text-align: right;
    font-size: 12px;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-container {
        flex-direction: column;
    }

    .testimonial-card1,
    .testimonial-card2,
    .testimonial-card3,
    .ratings-card {
        min-width: 100%;
    }
}

.testimonial-card1,
.testimonial-card2,
.testimonial-card3 {
    position: relative;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: -10px auto 15px;
    border: 4px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

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

.testimonial-content {
    margin-top: 30px;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.username {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.rating {
    color: #f1c40f;
    font-size: 18px;
}

.testimonial-text {
    color: #555;
    line-height: 1.6;
    text-align: center;
}

/* Hero Section Styles */

.hero-left {
    flex: 1;
    padding-right: 40px;
}

.hero-left h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-left p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.play-now-btn {
    display: inline-block;
    background-color: #FFD700;
    /* Yellow color */
    color: #000 !important;
    /* Black text */
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
}

.play-now-btn:hover {
    background-color: #FFC000;
    /* Darker yellow on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        padding: 40px 5%;
    }

    .hero-left {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .play-now-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

.header-download-btn {
    /* Visual styling */
    /* display: inline-flex;
    align-items: center; */
    background-color: #2ecc71;
    /* color: white !important; */

    /* Effects */
    /* box-shadow: 0 2px 8px rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
 */

}

/* Updated grid for exactly 5 cards in a row */
.games-grid-five {
    display: grid;
    grid-template-columns: repeat(5, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    overflow-x: auto;
    /* For smaller screens */
    padding-bottom: 0px;
    /* Space for scrollbar */
}

/* Keep all your existing .game-card styles */
.game-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
    min-width: 200px;
    /* Minimum width for each card */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .games-grid-five {
        grid-template-columns: repeat(5, minmax(180px, 1fr));
    }
}

@media (max-width: 992px) {
    .games-grid-five {
        grid-template-columns: repeat(3, minmax(200px, 1fr));
    }
}

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

@media (max-width: 480px) {
    .games-grid-five {
        grid-template-columns: repeat(1, minmax(250px, 1fr));
    }
}

/* Add this to your existing media queries */
@media (max-width: 768px) {
    body {
        font-size: 14px;
        /* Slightly smaller base font */
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-container,
    .about-section,
    .games-section,
    .faq-section {
        padding: 2rem 1rem;
    }

    .play-now-btn,
    .send-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Prevent horizontal scrolling */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Update your header styles */
header {
    padding: 0.5rem 1rem;
    /* Reduced padding for mobile */
    flex-wrap: wrap;
    /* Allow items to wrap on small screens */
}

.logo img {
    height: 70px;
    /* Reduced logo size for mobile */
    width: auto;
}

nav ul {
    flex-wrap: wrap;
    /* Allow nav items to wrap */
    justify-content: center;
}

nav ul li {
    margin: 0.5rem;
    /* Reduced margin for mobile */
}

/* Mobile menu toggle for small screens */
.menu-toggle {
    display: none;
    /* Hidden by default */
    cursor: pointer;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        /* Show toggle button */
    }

    nav ul {
        display: none;
        /* Hide nav by default on mobile */
        width: 100%;
        flex-direction: column;
        text-align: center;
    }

    nav ul.show {
        display: flex;
        /* Show when menu is toggled */
    }

    .header-download-btn {
        width: 100%;
        margin: 0.5rem 0;
        text-align: center;
    }
}

.hamburger-menu {
    font-size: 2rem;
    color: white;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    display: none;
    /* Hidden by default */
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 10px;
    background: black;
    padding: 10px;
    border-radius: 5px;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    padding: 10px 0;
}

.mobile-menu ul li a {
    color: white;
    text-decoration: none;
}

/* Show hamburger menu on small screens */
@media screen and (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .nav-links {
        display: none;
    }
}

.testimonial-card1,
.testimonial-card2,
.testimonial-card3 {
    display: none;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-card1.active,
.testimonial-card2.active,
.testimonial-card3.active {
    display: block;
}


.down-arrow {
    display: inline-block;
    animation: bounceArrow 1s infinite ease-in-out;
    margin-left: 5px;
    color: #ffffff;
}



/* Bouncing animation */
@keyframes bounceArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }
}

@keyframes glitter {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}


.glitter-background {
    background: linear-gradient(42deg, rgb(174 6 81 / 86%) 25%, rgb(36 66 140 / 81%) 50%, rgb(248 181 4) 75%);
    animation: glitter 2s ease-in-out infinite;
    background-size: 400% 400%;

}

.contact-card a {
    color: #007bff;
    /* Bootstrap blue */
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

#message {
    height: 100px;
}