* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(0deg, rgb(7, 26, 140), rgb(76, 170, 193));
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.logo {
    margin-top: 30px;
}

.logo img {
    width: 80px;
    border-radius: 50%;
}

h1 {
    margin: 10px 0 5px;
}

p {
    margin: 0 0 30px;
    font-size: 0.95rem;
    color: #FFF;
}

.links {
    width: 100%;
    max-width: 400px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 15px 20px;
    margin: 10px 0;
    text-decoration: none;
    color: white;
    transition: background 0.3s;
}

.link-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.link-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.link-left i {
    font-size: 1.3em;
}

.socials {
    margin-top: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px 0 10px;
}

.socials a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.socials a:hover {
    color: #ddd;
}