*{
    padding: 0%;
    margin: 0%;
}

.body {
    background-color: #000; 
    color: #fff; 
    font-family: 'Montserrat', sans-serif; 
    margin: 0;
    padding: 0;
}

.hero-section {
   
    height: calc(100vh - 50px);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: rgba(0, 0, 0, 0.5); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box; 
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: x-small;
    font-weight: 500;
    opacity: 0.8;
}

.btn-login, .btn-signup {
  
    padding: 8px 15px;
    font-weight: bold;
    border-radius: 4px;
}

.btn-login {
    background: none;
    border: none;
    color: #fff;
    margin-right: 10px;
}

.btn-signup {
    background-color: #fff;
    color: #000;
    border: 1px solid #fff;
}
.hero-content {
    position: relative;
    z-index: 2; 
    max-width: 900px;
}

.hero-content h1 {
    font-size: 4rem; 
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    opacity: 0.8;
    margin-bottom: 40px;
}
.hero-section {
    overflow: hidden; 
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('futuristic_city_bg.jpg'); 
    background-size: cover;
    background-position: center;
    opacity: 0.3; 
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
    z-index: 1;
}
.hero-actions button {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    margin: 0 10px;
}

.btn-signup-lg {
    background-color: #fff;
    color: #000;
    border: 2px solid #fff;
}

.btn-leaderboard {
    background: none; 
    color: #fff;
    border: 2px solid #fff;
}

.villan-body{
    background-color: #fff;  
}

.villan-big-text{
    color: black;
    font-size: 40px;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif; 
    display: flex;
    justify-content: center;

}

.villan-small-text{
    color: #626467;
    font-size: 20px;
    display: flex;
    justify-content: center;   
    font-family: 'Times New Roman', Times, serif; 
}

.villan-arrangment{
    display: flex;
    justify-content: center;
}

.villan-btn{
    background-color: #fff;
    padding: 15px;
    border-width: 1px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 10px;

}

.image-texture{
    background-color: #fff;
    display: flex;
    justify-content: center;
    width: 700px;
    height: 500px;
}

.arrangment{
     display: flex;
    justify-content: center;
}

.usefull{
    background-color: #fff;
}

.container{
    display: flex;
    justify-content: center;
}

.texture{
    width: 800px;
    color: #626467;
    font-size: 20px; 
    font-family: 'Times New Roman', Times, serif; 
    
}

.section{
    width: 1000px;
    color: #626467;
}

.side-section  {
    text-align: center;
    padding: 100px 20px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.side-section h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #333;
}

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

.update-form {
    padding-top: 50px;
    margin: 0 auto;
    width: 100%;
    max-width: 450px;
}

.update-form p {
    font-size: 16px;
    margin-bottom: 15px;
}

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

.update-form input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.update-form button {
    width: 100%;
    padding: 12px;
    background-color: #333;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.footer-section {
    border-top: 1px solid #ccc;
    padding: 30px 50px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 12px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: #333;
    text-decoration: underline;
    display: block;
    margin-top: 5px;
}

.footer-note {
    max-width: 400px;
    line-height: 1.5;
    color: #666;
}

@media (max-width: 1100px) {
    .nav-links {
        display: none; 
    }
}
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 40px;
    }
    .footer-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-links {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }
}


.side-section{

}