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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.card {
    background: white;
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
}

.banner {
    height: 95px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.profile-section {
    position: relative;
    text-align: center;
    margin-top: -60px;
    padding: 0 30px;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid white;
    margin: 0 auto;
    background: white;
    display: block;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.name-section {
    margin-top: 15px;
    margin-bottom: 25px;
}

.name {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.title {
    font-size: 16px;
    color: #ef4444;
    font-weight: 500;
}

.card-body {
    padding: 0 30px 30px;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

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

.info-item:hover {
    background: #fff5f5;
    padding-left: 10px;
}

.icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 18px;
}

.info-text {
    flex: 1;
}

.info-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 3px;
}

.info-value {
    font-size: 15px;
    color: #333;
    word-break: break-word;
}

.info-value a {
    color: #ef4444;
    text-decoration: none;
}

.info-value a:hover {
    text-decoration: underline;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.download-btn {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ef4444;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #e0e0e0;
    transform: scale(1.1);
}

.social-icon {
    width: 24px;
    height: 24px;
}

.social-btn:hover .social-icon {
    opacity: 0.8;
}
