:root {
    --white: #FFFFFF;
    --black: #000000;
    --beige: #ECD9BA;
    --beige-light: rgba(236, 217, 186, 0.15);
    --beige-border: rgba(236, 217, 186, 0.3);
    --transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--white);
    color: var(--black);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    line-height: 1.5;
    direction: ltr;
}

/* Main Container */
.container {
    width: 100%;
    max-width: 460px;
    position: relative;
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.profile-image {
    width: 130px;
    height: 130px;
    margin: 0 auto 25px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.profile-image:hover {
    transform: scale(1.05);
}

.profile-name {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.profile-title {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

/* Divider Above Links */
.divider-top {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--beige-border), transparent);
    margin: 0 0 30px 0;
    position: relative;
}

.divider-top::before {
    content: '• • •';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white);
    padding: 0 15px;
    color: var(--beige);
    font-size: 0.8rem;
    letter-spacing: 3px;
}

/* Links Container */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

/* Link Item */
.link-item {
    background-color: var(--white);
    border: 2px solid var(--beige-border);
    border-radius: 14px;
    padding: 20px 25px;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--beige-light);
    transition: width 0.3s ease;
    z-index: 1;
}

.link-item:hover {
    transform: translateX(4px);
    border-color: var(--beige);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.link-item:hover::before {
    width: 100%;
}

.link-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.link-icon {
    font-size: 1.3rem;
    color: var(--black);
    transition: var(--transition);
}

.link-item:hover .link-icon {
    color: var(--beige);
    transform: scale(1.1);
}

.link-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    transition: var(--transition);
}

.link-item:hover .link-text {
    color: var(--black);
}

/* Divider Below Links */
.divider-bottom {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--beige-border), transparent);
    margin: 30px 0;
    position: relative;
}

.divider-bottom::before {
    content: '•';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white);
    padding: 0 10px;
    color: var(--beige);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 20px;
}

.footer-text {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.3px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        max-width: 100%;
    }
    
    .profile-name {
        font-size: 2rem;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .link-item {
        padding: 18px 22px;
    }
    
    .link-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    .profile-name {
        font-size: 1.8rem;
    }
    
    .profile-title {
        font-size: 1.1rem;
    }
    
    .link-item {
        padding: 16px 20px;
    }
}