/* General Page Styling */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(ellipse at 50% -10%, #1a1230 0%, #0A0714 60%);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.stage {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Section */
.hero-card {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.hero-bg {
    width: 75%;         
    height: auto;      
    display: block;
    margin: 0 auto;
    border: none;      
}

.hero-content {
    position: absolute; 
    bottom: 0;          
    width: 75%;         
    margin-left: 12.5%; 
    padding: 20px;
    box-sizing: border-box;
    /* Gradient fade added back here */
    background: linear-gradient(to top, #0f0f0f 20%, transparent 100%);
}

.wordmark { 
    margin: 0 0 5px; 
    font-size: 2.5rem; 
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    background: linear-gradient(100deg, #00C2E8 0%, #F5F3F8 32%, #F02D7D 68%, #F2E100 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.tagline, .bio { 
    font-size: 1.1rem; 
    opacity: 0.9; 
    margin: 5px 0; 
}

/* Links Container */
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px; 
    margin-top: 20px;
}

/* Link Card Styling */
.link-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px solid var(--hover-color);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.link-card:hover {
    background: var(--hover-color);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.link-logo {
    width: 28px; 
    height: 28px;
    margin-right: 15px;
    object-fit: contain;
}

/* Footer */
.footer {
    margin-top: 40px;
    font-size: 0.9rem; 
    opacity: 0.5;
}