:root {
    --bg-black: #050505; /* Preto quase absoluto */
    --card-bg: rgba(20, 20, 20, 0.8);
    --burgundy-hover: rgba(139, 0, 0, 0.5);
    --text-main: #ffffff;
    --text-secondary: #666666;
    --glass-border: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-black);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente sutil para não ficar chapado, mas manter o aspecto escuro */
    background: radial-gradient(circle at top, #0f0f0f 0%, #050505 100%);
    z-index: -1;
}

.container {
    max-width: 380px;
    width: 100%;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

.profile-pic {
    width: 115px;
    height: 115px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.4); /* Zoom no rosto */
    object-position: center 25%;
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-card {
    text-decoration: none;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px); /* Efeito glassmorphism moderno */
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--burgundy-hover);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.link-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.link-card:hover::before {
    opacity: 1;
}

.link-content {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.link-content i {
    font-size: 1.1rem;
    color: #fff;
}

.text-wrapper {
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.coupon {
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-top: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

.link-card:hover .coupon {
    color: rgba(255,255,255,0.8);
}

.arrow {
    font-size: 0.7rem;
    opacity: 0.2;
    position: relative;
    z-index: 1;
}

footer {
    margin-top: 50px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 35px;
}

.social-links a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-links i {
    font-size: 1.5rem;
}

.social-links a:hover {
    color: #fff;
    transform: scale(1.1);
}
