:root {
    --bg-color: #1a1614;
    --text-primary: #F4F1EA;
    --text-secondary: #8B8378;
    --accent-gold: #c5a059;
    --border-color: #332d28;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 4rem 1rem;
}

.profile-container {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-circle {
    width: 72px;
    height: 72px;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.logo-circle span {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.tagline {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    text-transform: uppercase;
}

.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.link-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 1rem;
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.link-item:last-child {
    border-bottom: none;
}

.link-item:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.link-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    margin-right: 1.5rem;
}

.link-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.link-title {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.link-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    word-break: break-all;
}

.footer {
    margin-top: 4rem;
}

.footer p {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #3D352F;
    font-weight: 500;
}
