body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #cfb558 10%, #58a84d 90%);
    background-attachment: fixed;
    color: #2c2c2c;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px 0 20px;
}
.logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid #e0e0e0;
    object-fit: cover;
}
.logo-box {
    width: 166px;
    height: 166px;
    margin-bottom: 1em;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 0 14px #ea80fc99;
    background: linear-gradient(45deg, #feda75 10%, #fa7e1e, #d62976, #962fbf 90%);
}
h1 {
    font-size: 2.7em;
    margin-bottom: 0.2em;
    letter-spacing: 1px;
}
p {
    font-size: 1.2em;
    opacity: 0.9;
}
footer {
    font-size: 1em;
    margin-top: 2em;
}
.margin-top {
    margin-top: 2em;
}
.social-row {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    margin-top: .5em;
    flex-wrap: wrap;
}
.social-btn {
    display: flex;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    font-size: 1.2em;
    font-weight: 600;
    box-shadow: 0 2px 6px #0001;
    text-decoration: none;
    min-width: 170px;
    transition: transform 0.1s, box-shadow 0.1s;
}
.social-btn .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 1.6em;
    background: rgba(0,0,0,0.08);
}
.social-btn .text {
    flex: 1;
    padding: 0 22px;
    text-align: center;
}
.social-btn.facebook {
    background: linear-gradient(90deg, #3b5998 60%, #324e83 100%);
    color: #fff;
}
.social-btn.facebook .icon {
    background: #324e83;
}
.social-btn.facebook:hover {
    transform: translateY(-2px) scale(1.035);
    box-shadow: 0 8px 24px #3b599880;
}
.social-btn.instagram {
    background: linear-gradient(90deg, #e63986 60%, #d62976 100%);
    color: #fff;
}
.social-btn.instagram .icon {
    background: #d62976;
}
.social-btn.instagram:hover {
    transform: translateY(-2px) scale(1.035);
    box-shadow: 0 8px 24px #d6297640;
}
@media (max-width: 600px) {
    h1 { font-size: 2em; }
    .margin-top { margin-top: 1em; }
}