/* ZeeDicas - Landing Page Custom Styling System */

:root {
    --bg-dark: #0a0a0c;
    --bg-card: rgba(18, 18, 23, 0.65);
    --gold-primary: #ffd700;
    --gold-secondary: #ff9900;
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ff9900 100%);
    --youtube-red: #ff0000;
    --youtube-gradient: linear-gradient(135deg, #ff4141 0%, #ff0000 100%);
    --amazon-orange: #ff9900;
    --amazon-gradient: linear-gradient(135deg, #ffb347 0%, #ff9900 100%);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-dark);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding: 2rem 1rem;
}

/* Auras Decorativas de Fundo */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.bg-glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff9900 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.bg-glow-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #ff0000 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
}

/* Container Principal */
.landing-container {
    width: 100%;
    max-width: 540px;
    position: relative;
    z-index: 10;
}

/* Card Principal (Glassmorphism) */
.profile-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 2.5rem 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Header do Perfil */
.profile-header {
    margin-bottom: 2.5rem;
}

/* Emblema Avatar com SVG */
.avatar-glow {
    display: inline-block;
    position: relative;
    margin-bottom: 1.5rem;
}

.avatar-glow::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gold-gradient);
    border-radius: 50%;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.profile-card:hover .avatar-glow::after {
    opacity: 0.7;
    filter: blur(15px);
}

.avatar-emblem {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(10, 10, 12, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.avatar-emblem svg {
    width: 100%;
    height: 100%;
}

.avatar-emblem svg circle {
    transition: var(--transition-smooth);
}

.profile-card:hover .avatar-emblem svg circle {
    stroke-dashoffset: 80;
}

/* Título e Tagline */
.profile-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.profile-tagline {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    max-width: 320px;
    margin: 0 auto 1.25rem auto;
    line-height: 1.5;
}

/* Badges / Social Pills */
.social-pills {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition-smooth);
}

.pill i {
    font-size: 0.85rem;
}

.pill i.fa-video {
    color: #ff3333;
}

.pill i.fa-amazon {
    color: #ff9900;
}

.profile-card:hover .pill {
    background: rgba(255, 255, 255, 0.08);
}

/* Seção de Links Call to Action */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

/* Card de Link Geral */
.link-card {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.25rem;
    text-align: left;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho interno nos cards */
.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.04),
        transparent
    );
    transition: 0.5s;
}

.link-card:hover::before {
    left: 100%;
}

.link-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.25rem;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.link-details {
    flex-grow: 1;
    min-width: 0;
}

.link-details h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    transition: var(--transition-smooth);
    letter-spacing: -0.01em;
}

.link-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.link-arrow {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.15);
    margin-left: 0.75rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

/* Customização Específica do Card YouTube */
.link-youtube:hover {
    border-color: rgba(255, 0, 0, 0.4);
    background: rgba(255, 0, 0, 0.03);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.1);
    transform: translateY(-4px);
}

.link-youtube:hover .link-icon {
    background: var(--youtube-gradient);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.link-youtube:hover .link-details h2 {
    color: #ff4d4d;
}

.link-youtube:hover .link-arrow {
    color: #ff4d4d;
    transform: translateX(3px);
}

/* Customização Específica do Card Amazon */
.link-amazon:hover {
    border-color: rgba(255, 153, 0, 0.4);
    background: rgba(255, 153, 0, 0.03);
    box-shadow: 0 10px 25px rgba(255, 153, 0, 0.1);
    transform: translateY(-4px);
}

.link-amazon:hover .link-icon {
    background: var(--amazon-gradient);
    color: #111;
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.4);
}

.link-amazon:hover .link-details h2 {
    color: #ffa62b;
}

.link-amazon:hover .link-arrow {
    color: #ffa62b;
    transform: translateX(3px);
}

/* Footer do Perfil */
.profile-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
}

.creator-credits {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.creator-credits a {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    border-bottom: 1px dashed rgba(255, 215, 0, 0.4);
}

.creator-credits a:hover {
    color: #fff;
    border-bottom-color: #fff;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
}

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

/* Responsividade de Tela */
@media (max-width: 480px) {
    body {
        padding: 1rem 0.5rem;
    }
    
    .profile-card {
        padding: 2rem 1.25rem;
        border-radius: 24px;
    }
    
    .profile-title {
        font-size: 2.1rem;
    }
    
    .link-card {
        padding: 1rem;
    }
    
    .link-icon {
        width: 42px;
        height: 42px;
        font-size: 1.25rem;
        margin-right: 0.85rem;
        border-radius: 10px;
    }
    
    .link-details h2 {
        font-size: 1.05rem;
    }
    
    .link-details p {
        font-size: 0.8rem;
    }
}