* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', sans-serif;
    background: #13131a;
    color: white;
    line-height: 1.6;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: transparent;
}
.logo {
    font-size: 28px;
    font-weight: bold;
    color: #b53cff;
}
.logo span {
    color: #5e4cfd;
}
nav a {
    border-bottom: 2px solid #6a5af9;
    margin: 0 15px;
    text-decoration: none;
    color: #2655f2;
    font-weight: 500;
}
nav a:hover {
    color: #fd0fb1;
}
nav a {
    transition: color 0.3s ease;
}
.buttons button {
    margin-left: 15px;
    padding: 8px 18px;
    border: 1px solid #ccc;
    background: transparent;
    color: white;
    cursor: pointer;
    border-radius: 8px;
}
.btn-text {
    background: none;
    border: none;
}
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 50px;
}
.hero-text h1 {
    font-size: 40px;
    font-weight: 800;
}
.hero-text p {
    max-width: 500px;
    color: #aaa;
    margin-bottom: 30px;
}
.hero-buttons button {
    padding: 10px 25px;
    font-size: 16px;
    margin-right: 15px;
    border-radius: 10px;
    cursor: pointer;
}
.btn-gradient:hover {
    background: linear-gradient(90deg, #6a5af9, #b53cff);
    color: white;
    border: none;
    transition: color 0.3s ease;
}
.btn-outline:hover {
    border: 1px solid #888;
    background: transparent;
        background: linear-gradient(90deg, #6a5af9, #b53cff);
     transition: color 0.3s ease;
    color: #ffffff;
}
.btn-text:hover {
    border: 1px solid #888;
    background: transparent;
    background: linear-gradient(90deg, #6a5af9, #b53cff);
    transition: color 0.3s ease;
    color: #ffffff;
}
.hero-card {
    background: #1e1e2f;
    border-radius: 20px;
    padding: 20px;
    width: 270px;
    box-shadow: 0 0 15px #00000080;
}
.hero-card img {
    width: 100%;
    height: 100%;
    margin: 0%;
}
.card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
.card-info img.avatar {
    width: 30px;
    border-radius: 50%;
    margin-right: 8px;
}
.card-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    color: #ccc;
}