body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #0d0d0d;
    color: white;
    overflow-x: hidden;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(16, 16, 16, 0.8);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}

.login-button {
    padding: 14px 28px;
    background: linear-gradient(135deg, #5568e5, #896be9);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-button:hover {
    background: linear-gradient(135deg, #4855d0, #7057c9);
}
.privacy-content {
    padding: 50px;
    background-color: #151515;
    border-radius: 10px;
    margin: 40px;
    box-shadow: 0 0 25px rgba(85, 104, 229, 0.4);
}

.privacy-content h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.privacy-content h3 {
    color: #3a3d98;
    margin-top: 30px;
}

.privacy-content p, .privacy-content ul {
    color: #c9c9d1;
    margin: 10px 0;
    line-height: 1.6;
}

.privacy-content ul li {
    list-style-type: disc;
    margin-left: 20px;
}
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    background: rgba(18, 18, 18, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-nav .active {
    color: #ffffff;
    font-weight: bold;
}

.footer-info {
    margin-bottom: 10px;
    color: #b0b0b0;
    font-size: 14px;
}

.footer-icons {
    display: flex;
    gap: 15px;
}

.footer-icons a {
    color: #b0b0b0;
    font-size: 18px;
    transition: color 0.3s;
}

.footer-icons a:hover {
    color: #ffffff;
}
