/* Prannoy P Project Hub - Premium Minimalist Dark Theme */

/* --- Custom Variables --- */
:root {
    --bg-primary: #0a0a0a;
    --bg-card: #18181b;
    --bg-card-hover: #202024;
    --border-color: #27272a;
    --border-hover: #3f3f46;
    
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #52525b;
    
    --accent-blue: #0095f6; /* Verified Blue */
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-cyan: #06b6d4;
    
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-x: hidden;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 580px;
    padding: 60px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* --- Profile Section --- */
.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
}

.avatar-container {
    position: relative;
    width: 96px;
    height: 96px;
    margin-bottom: 16px;
}

.avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.profile-name-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
}

.profile-name-container::before {
    content: '';
    width: 24px; /* Balances the verified-badge for perfect visual centering */
    height: 24px;
    display: block;
    visibility: hidden;
    flex-shrink: 0;
}

.profile-name {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.verified-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    width: 24px;
    height: 24px;
}

.verified-badge svg {
    width: 24px;
    height: 24px;
}

/* Social Horizontal Row */
.social-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.social-row-icon {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-row-icon:hover {
    color: var(--text-primary);
    transform: scale(1.1);
}

.social-row-icon svg {
    width: 20px;
    height: 20px;
}

/* --- Links Stack --- */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

/* --- Link Card --- */
.link-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; /* Centers title */
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    min-height: 58px;
}

.link-card:not(.disabled):hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: scale(1.01);
}

/* Disabled/Upcoming Card */
.link-card.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

/* No logo icons are needed for cards */

.link-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-align: center;
    text-transform: uppercase;
}

/* --- Footer --- */
.footer {
    width: 100%;
    text-align: center;
    padding-top: 10px;
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* Premium Antigravity Canvas Background */
#antigravity-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background-color: var(--bg-primary);
}
