@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* Harmonic Premium Luxury Theme */
:root {
    --bg-primary: #bda272;
    --bg-gradient: linear-gradient(135deg, #dfcbab 0%, #b39766 50%, #9c8050 100%);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --border-color: rgba(255, 255, 255, 0.5);
    --border-hover: rgba(255, 255, 255, 0.9);
    --button-bg: rgba(255, 255, 255, 0.05);
    --button-bg-hover: rgba(255, 255, 255, 0.15);
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Montserrat', sans-serif;
    --max-width: 480px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-gradient);
    color: var(--text-primary);
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}
.verified-badge {
    color: var(--text-primary);
    font-size: 1.35rem;
}
/* Premium Aesthetic Container Wrapping */
.theme-background-wrapper {
    width: 100%;
    min-height: 100dvh;
    /* background: inherit; */
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.theme-container {
    width: 100%;
    max-width: var(--max-width);
    min-height: 100vh;
    padding: 2.5rem 1.75rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

/* Header & Banner Styles */
.profile-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
    text-align: center;
}

.profile-image-container {
    width: 100%;
    aspect-ratio: 1 / 1.15;
    max-height: 380px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-image-container:hover .profile-img {
    transform: scale(1.04);
}

/* Luxury Fallback Image matching aesthetic exactly */
.profile-img-fallback {
    width: 100%;
    height: 100%;
    background-image: url('11c82e9ee2de978a8076a7b8ca09d257.jpg');
    background-size: cover;
    background-position: center;
}

/* Brand Identity */
.brand-identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.logo-wrapper {
    width: 44px;
    height: 44px;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    opacity: 0.95;
}

.brand-logo {
    width: 100%;
    height: 100%;
}

.profile-name {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--text-primary);
    line-height: 1.2;
    text-transform: uppercase;
}

.profile-bio {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-top: 0.25rem;
}

/* Premium Link Elements */
.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    margin-bottom: 3rem;
}

.link-btn {
    width: 100%;
    padding: 1.15rem 1.5rem;
    background-color: var(--button-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px; /* Ultra-thin rectangular look matching original UI */
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 1.25rem;
    opacity: 0.85;
    transition: var(--transition);
}

.link-icon svg {
    width: 100%;
    height: 100%;
}

.link-text {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: var(--transition);
}

/* Hover effects & animations */
.link-btn:hover {
    background-color: var(--button-bg-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.link-btn:hover .link-icon {
    transform: scale(1.1);
    opacity: 1;
}

.link-btn:hover .link-text {
    letter-spacing: 0.24em;
}

.link-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: 0.6s;
}

.link-btn:hover::after {
    left: 100%;
}

.theme-footer {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-powered {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-sans);
}

.footer-powered a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-serif);
}

.footer-powered a:hover {
    text-decoration: underline;
}

/* Micro Interactions & Mobile Optimization */
@media (max-width: 480px) {
    .theme-container {
        padding: 2rem 1.25rem 3rem;
    }
    
    .profile-name {
        font-size: 1.6rem;
    }
    
    .profile-image-container {
        max-height: 340px;
    }
}