body {
    margin: 0;
    padding: 0;
    font-family: conto !important;
    background: #ffffff;
    color: #fff;
}

@font-face {
    font-family: conto;
    src: url(../font/roboto/Roboto-Medium.ttf);
 }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-image: linear-gradient(#ee2331, #920912);
    color: white;
    height:80px;
}

.social-icons {
    gap: 10px;
    list-style: none;
    padding: 0;
    justify-content: center;
}
.social-icons li {
    display: inline-block;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
   
    color: white;
    font-size: 20px;
    text-decoration: none;
}
.social-icons a:hover {
    background: #555;
}

/* Logo */
.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: rgb(66, 63, 63);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f39c12;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
}

.hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-image: url('../img/bg.png');
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 50%;
    margin-left: 100px;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-content button {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    background: #ffcc00;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.hero-content button:hover {
    background: #e6b800;
}

.hero-image {
    flex: 1;
    max-width: 50%;
    text-align: center;
}

.hero-image img {
    max-width: 90%;
    border-radius: 10px;
}

footer {
    background: linear-gradient(#ee2331, #920912);
    color: #fff;
    padding: 2rem 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-section {
    flex: 1;
    margin: 0 1rem;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section ul,
.footer-section a {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    text-decoration: none;
    color: #ccc;
}

.footer-section ul li a:hover {
    color: #ffcc00;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}



.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #f8f8f8;
    width: 100%;
}

.container-middle {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    height: 270px;
    margin-top: 10px;

}

.item-middle {
    width: 40%;
    color: white;
    font-size: 16px;

}

.container {

    display: flex;
    justify-content: space-between;
    height: 500px;
    align-items: center;
    flex-wrap: wrap;
    height: auto;
}

.section-image {

    width: 100%;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}


.image-section {
    width: 100%;
    display: flex;

}


.circle-background-inner {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background-color: #ff5722;
    border-radius: 50%;
}

/* Gaming Circle Layout */
.gaming-circle-layout {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.one {
    top: 5%;
}

.two {
    top: 28%;
}

.three {
    top: 52%;
}

.four {
    top: 80%;
}

/* Circle Background */
.circle-background {
    position: relative;
    width: 600px;
    max-width: 1200px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, #b30000, #000);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hr {
    width: 80%;
    max-width: 250px;
    border: 1px solid white;
}

/* Points (Left and Right) */
.point {
    position: absolute;
    width: 25%;
    text-align: center;
}

.point h3 {
    font-size: 80%;
    color: white;

}

.point p {
    font-size: 50%;
    color: white;

}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 auto;
}

.dot.green {
    background-color: #4caf50;
}

.dot.red {
    background-color: #ff5722;
}

/* Point Positions (Left Side) */
.point.left {
    position: absolute;
    left: -40px;
    text-align: right;
}


/* Point Positions (Right Side) */
.point.right {
    right: -40px;
    position: absolute;
    text-align: left;
}


/* Central Mobile Image */
.central-image {
    position: absolute;
    width: 25%;
    max-width: 300px;
    height: auto;
    text-align: center;
}

.central-image img {
    width: 100%;
    border-radius: 20px;
}

.container2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url('../img/Footer-BG.png');
    background-repeat: no-repeat;
}

/* Logo */
.logo img {
    max-width: 200px;
    height: auto;
}

/* App Link Form */
/* .app-link-form {
    text-align: right;
} */

.app-link-form p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #fff;
}

form {
    display: flex;
    gap: 5px;
    margin-right: 20px;
}

form input {
    width: 250px;
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    outline: none;
}

form button {
    padding: 10px 15px;
    font-size: 1rem;
    background: #ffcc00;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    color: #000;
}

form button:hover {
    background: #ffd633;
}

.game-display img {
    width: 70%;
    height: auto;
    margin-top: -200px;

}

.download {
    position: fixed;
    bottom: 20px; /* Distance from the bottom of the viewport */
    right: 20px; /* Distance from the right of the viewport */
   left:20px;
    cursor: pointer;
   
   
  }

  
@media (max-width: 768px) {


    .game-display img {
        width: 100%;
    
    }

    .central-image {
        width: 35%;
    }


    .hero-section {
        flex-direction: column;
    }

    footer {
        background-image: linear-gradient(#ee2331, #920912);
        color: #fff;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        
    }

    .hero-content,
    .hero-image {
        max-width: 100%;
        margin-top: 100px;
    }

    .hero-image img {
        display: none;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .features {
        flex-direction: column;
    }

    .feature {
        max-width: 100%;
    }

    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #ff4e50;
        text-align: center;
        padding: 1rem 0;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 1rem;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 1rem 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }


    .container2 {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .app-link-form p {
        font-size: 1rem;
    }

    form input {
        width: 100%;
    }



    

}

/*-------Mobile--View--------*/

@media (max-width: 768px) {

  


    
}