:root {
    --primary: #010100;
    --secondary: #e0ac57;
    --tertiary: #6b5229;
    --bg-gradient: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

body {
    background: var(--bg-gradient);
    min-height: 100vh;
}

.container {
    max-width: 800px;
    padding: 2rem 1rem;
}

.profile-header {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-header img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 6px solid var(--secondary);
    margin-bottom: 2rem;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(224, 172, 87, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-header img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 12px 30px rgba(224, 172, 87, 0.3);
}

.profile-header h1 {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.profile-header p {
    color: var(--tertiary);
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.profile-header .bi {
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.profile-header a {
    color: var(--tertiary);
    margin: 0 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.profile-header a:hover {
    color: var(--secondary);
    opacity: 1;
    transform: translateY(-3px);
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.link-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.link-title {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.15rem;
    flex-grow: 1;
    padding-right: 1.5rem;
    transition: color 0.3s ease;
}

.link-title:hover {
    color: var(--secondary);
}

.more-btn {
    background: rgba(224, 172, 87, 0.1);
    border: none;
    color: var(--tertiary);
    padding: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-btn:hover {
    background: var(--secondary);
    color: white;
    transform: scale(1.05);
}

.more-btn .bi {
    font-size: 1.25rem;
}

.footer-info {
    text-align: center;
    padding: 2rem;
    color: var(--tertiary);
    font-size: 1rem;
    margin-top: 3rem;
    font-weight: 500;
    opacity: 0.8;
}