/* 
  =======================================================================
  PROFESSIONAL HTML TEMPLATE
  =======================================================================
  Licença: Uso Comercial (Agência/Freelancer)
  Author: Envato User
  Site: #
  
  Licensed under Envato Elements Terms. 
  You are free to use this template for your commercial or personal projects.
  =======================================================================
*/

:root {
    --bg-dark: #000000;
    --primary: #d4af37;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-hover: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

/* Background Abstract Shapes */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% -20%, #1a1a1a 0%, #000000 70%);
}

.bg-overlay::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.bg-overlay::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 60px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease;
}

.profile-img-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 4px;
}

.status-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 15px;
    height: 15px;
    background-color: #2ecc71;
    border: 2px solid var(--bg-dark);
    border-radius: 50%;
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #fff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.bio {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto;
}

.links-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.link-card:hover::before {
    transform: translateX(100%);
}

.link-card:hover {
    transform: translateY(-3px);
    background: var(--glass-hover);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.link-card.featured {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.link-card.featured:hover {
    background: rgba(212, 175, 55, 0.2);
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    color: var(--primary);
}

.link-content {
    flex: 1;
}

.link-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.link-content span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.arrow {
    color: var(--text-gray);
    font-size: 0.8rem;
    transition: 0.3s;
}

.link-card:hover .arrow {
    color: var(--primary);
    transform: translateX(3px);
}

.social-icons {
    margin-top: 40px;
    display: flex;
    gap: 25px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.social-icons a {
    color: var(--text-gray);
    font-size: 1.4rem;
    transition: 0.3s;
    position: relative;
}

.social-icons a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

footer {
    margin-top: 50px;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.8rem;
    animation: fadeIn 1s ease 0.6s backwards;
}

@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; }
}
