:root {
    --bg-dark: #0a0400;
    --bg-medium: #1f0b00;
    --primary-color: #ff4500;
    --secondary-color: #ff8c00;
    --accent-color: #ffd700;
    --text-light: #ffffff;
    --text-muted: #ffe6d5;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Montserrat', sans-serif; /* Nova fonte mais elegante e moderna */
    background-color: #050302; /* Fundo extremamente escuro e chique */
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Fundo Animado com a imagem de espetinho */
body::after {
    content: '';
    position: fixed;
    top: -5%;
    left: -5%;
    width: 110vw;
    height: 110vh;
    background-color: #0b0705;
    background-image: 
        linear-gradient(to bottom, rgba(10, 4, 0, 0.7), rgba(15, 5, 0, 0.9)),
        url('bg_espetinho.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -2;
    animation: breathingBg 25s infinite alternate ease-in-out;
}

@keyframes breathingBg {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1); /* Dá um zoom suave na imagem de fundo */
    }
}

/* Background gradient animation overlay */
body::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(255, 69, 0, 0.1), rgba(0,0,0,0), rgba(255, 215, 0, 0.05));
    z-index: 0;
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 3rem 1.5rem;
    z-index: 10;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header & Logo */
header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.logo-container {
    width: 130px;
    height: 130px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    animation: float 4s ease-in-out infinite, pulse-glow 2s infinite alternate;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
    position: relative;
}

.profile-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
    display: block;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem; /* Fonte um pouco maior e mais limpa */
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    background: linear-gradient(to bottom right, #ffffff, #ffd700);
    -webkit-background-clip: text;
    background-clip: text; /* Corrigindo o linter */
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 4px 20px rgba(255, 69, 0, 0.4);
}

.brand-subtitle {
    font-size: 1rem;
    color: #e0e0e0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Links Container */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Buttons - Refinando o estilo Glassmorphism */
.link-btn {
    text-decoration: none;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08); /* Borda mais fina e chique */
    border-radius: 12px; /* Arredondamento mais moderno */
    padding: 1.2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px); /* Blur mais forte */
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.link-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.link-icon {
    font-size: 1.4rem;
    margin-right: 12px;
    color: var(--accent-color);
    transition: transform 0.5s ease;
}

.link-btn span {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Hover Effects */
.link-btn:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 69, 0, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(255, 69, 0, 0.4), inset 0 0 15px rgba(255, 215, 0, 0.1);
}

.link-btn:hover::before {
    left: 200%;
}

.link-btn:hover .link-icon {
    transform: rotate(360deg) scale(1.2);
    color: var(--text-light);
}

/* Highlight Button */
.highlight-btn {
    background: linear-gradient(135deg, rgba(230, 60, 0, 0.85), rgba(200, 100, 0, 0.85));
    border: 1px solid rgba(255, 100, 0, 0.4);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.2);
}

.highlight-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 12px 30px rgba(255, 69, 0, 0.4);
}

.highlight-btn .link-icon {
    color: var(--text-light);
}

/* Footer */
footer {
    margin-top: 3rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 15px rgba(255, 69, 0, 0.4), 0 0 30px rgba(255, 69, 0, 0.2); }
    100% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.7), 0 0 50px rgba(255, 69, 0, 0.5); }
}

/* Particles Background Decoration */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: -50px;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0;
    animation: rise 8s infinite ease-in;
}

.particle:nth-child(1) { left: 10%; animation-duration: 6s; animation-delay: 0s; width: 6px; height: 6px; }
.particle:nth-child(2) { left: 30%; animation-duration: 9s; animation-delay: 2s; width: 10px; height: 10px; background-color: var(--primary-color); }
.particle:nth-child(3) { left: 50%; animation-duration: 7s; animation-delay: 4s; }
.particle:nth-child(4) { left: 70%; animation-duration: 11s; animation-delay: 1s; width: 5px; height: 5px; }
.particle:nth-child(5) { left: 90%; animation-duration: 8s; animation-delay: 3s; background-color: var(--primary-color); }
.particle:nth-child(6) { left: 20%; animation-duration: 10s; animation-delay: 5s; }
.particle:nth-child(7) { left: 60%; animation-duration: 7s; animation-delay: 6s; width: 7px; height: 7px; }
.particle:nth-child(8) { left: 80%; animation-duration: 9s; animation-delay: 7s; background-color: var(--secondary-color); }

@keyframes rise {
    0% {
        bottom: -50px;
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translateX(20px);
    }
    90% {
        opacity: 0.5;
    }
    100% {
        bottom: 100vh;
        transform: translateX(-20px);
        opacity: 0;
    }
}

/* Responsive Customizations */
@media (max-width: 480px) {
    .container {
        padding: 2rem 1rem;
    }
    
    .brand-title {
        font-size: 1.8rem;
    }
    
    .link-btn {
        padding: 1rem 1.2rem;
    }
    
    .link-btn span {
        font-size: 1rem;
    }
}

/* --- Entrance Animations (Efeitos de Entrada) --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.link-btn {
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Staggered Delay - Faz os botões aparecerem um por um */
.link-btn:nth-child(1) { animation-delay: 0.2s; }
.link-btn:nth-child(2) { animation-delay: 0.4s; }
.link-btn:nth-child(3) { animation-delay: 0.6s; }
.link-btn:nth-child(4) { animation-delay: 0.8s; }
.link-btn:nth-child(5) { animation-delay: 1.0s; }
