:root {
    --color-bg-dark: #020418;
    --color-brand-blue: #080B41;
    --color-brand-accent: #1A227E;
    --color-text-light: #F0F4FF;
    --color-text-muted: #A0B0D0;
    --color-button-bg: rgba(8, 11, 65, 0.65);
    --color-button-border: rgba(160, 176, 208, 0.25);
    --color-button-hover-bg: rgba(26, 34, 126, 0.85);
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* Fundo elegante em gradiente com as cores DeCacau */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 10%, #080B41 0%, #020418 70%);
    z-index: 1;
    pointer-events: none;
}

.links-container {
    width: 100%;
    max-width: 500px;
    padding: 40px 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

.logo-wrapper {
    width: 140px;
    max-width: 100%;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.4));
}

.profile-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.profile-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.4;
    font-weight: 500;
}

.links-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Estilo dos Botões */
.link-btn {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    background: var(--color-button-bg);
    border: 1px solid var(--color-button-border);
    border-radius: 50px; /* Estilo pílula como no print original */
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.5s ease-out backwards;
}

.link-btn:nth-child(1) { animation-delay: 0.1s; }
.link-btn:nth-child(2) { animation-delay: 0.15s; }
.link-btn:nth-child(3) { animation-delay: 0.2s; }
.link-btn:nth-child(4) { animation-delay: 0.25s; }
.link-btn:nth-child(5) { animation-delay: 0.3s; }
.link-btn:nth-child(6) { animation-delay: 0.35s; }
.link-btn:nth-child(7) { animation-delay: 0.4s; }
.link-btn:nth-child(8) { animation-delay: 0.45s; }
.link-btn:nth-child(9) { animation-delay: 0.5s; }
.link-btn:nth-child(10) { animation-delay: 0.55s; }
.link-btn:nth-child(11) { animation-delay: 0.6s; }

.link-btn:hover {
    background: var(--color-button-hover-bg);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8, 11, 65, 0.5);
}

.btn-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    font-size: 1.1rem;
    color: #4A90E2;
    margin-right: 12px;
}

.btn-text {
    flex-grow: 1;
    text-align: center;
    letter-spacing: 0.3px;
}

.btn-more {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    font-size: 1rem;
    color: var(--color-text-muted);
    opacity: 0.6;
    margin-left: 10px;
}

.link-btn:hover .btn-more {
    opacity: 1;
    color: #FFFFFF;
}

.links-footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    opacity: 0.6;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

/* Animações */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsividade */
@media (max-width: 480px) {
    .links-container {
        padding: 30px 16px;
    }
    .profile-title {
        font-size: 1.4rem;
    }
    .profile-subtitle {
        font-size: 0.88rem;
    }
    .link-btn {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
}
