:root {
    --primary-gold: #D4AF37;
    --dark-gold: #996515;
    --light-gold: #F9E4B7;
    --pure-black: #050505;
    --soft-black: #121212;
    --off-white: #F5F5F7;
    --glass-bg: rgba(18, 18, 18, 0.7);
    --glass-border: rgba(212, 175, 55, 0.3);
}

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

body {
    background-color: var(--pure-black);
    color: var(--off-white);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Background Image & Effects */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) grayscale(30%);
}

.glass-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 0;
}

#app {
    width: 100%;
    max-width: 480px;
    padding: 2.5rem 1.5rem;
    z-index: 10;
    text-align: center;
}

/* Header Styling */
header {
    margin-bottom: 3rem;
}

.profile-section {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.logo-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(45deg, var(--dark-gold), var(--primary-gold), var(--light-gold));
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

#main-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
}

.verified-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.luxury-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #B8860B, #FFD700, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.luxury-subtitle {
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.luxury-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* Links Wrapper */
.links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.luxury-link {
    text-decoration: none;
    color: var(--off-white);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.link-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.link-icon {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.link-icon img, .link-icon svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.link-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    flex-grow: 1;
}

.luxury-link:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary-gold);
    background: rgba(40, 40, 40, 0.8);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.link-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: 0.5s;
}

.luxury-link:hover .link-glow {
    left: 100%;
}

/* Footer Packaging */
footer {
    margin-top: 4rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

footer a {
    color: var(--primary-gold);
    text-decoration: none;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 400px) {
    .luxury-title {
        font-size: 2rem;
    }
}
