body{
    padding: 0;
    margin: 0;
    background-color: #020202;
    font-family: 'Segoe UI', sans-serif;
}
nav{
    background-color: #0a0a0a;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}
.logo{
    font-size: 22px;
    font-weight: bold;
    color: #00ffcc;
}
.links a{
    margin: 0 15px;
    text-decoration: none;
    color: #ccc;
    font-size: 16px;
    transition: 0.3s;
}
.links a:hover{
    color: #00ffcc;
}
.hero{
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero h1{
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #00ffcc, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p{
    font-size: 18px;
    color: #aaa;
    margin-bottom: 30px;
}

.hero-buttons button{
    margin: 10px;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary{
    background: #00ffcc;
    color: black;
}

.btn-primary:hover{
    background: #00ddb3;
}

.btn-secondary{
    background: transparent;
    border: 1px solid #00ffcc;
    color: #00ffcc;
}

.btn-secondary:hover{
    background: #00ffcc;
    color: black;
}
