/* Influencer Bio Styles */

body {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    color: #2d3436;
}

.main-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

/* Profile */
.profile-image-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.verified-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #0984e3;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 2px solid #fff;
}

.bio-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Social Buttons */
.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f1f2f6;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    line-height: 45px;
    color: #2d3436;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-btn i {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    line-height: inherit !important;
}

.social-btn:hover {
    background: #2d3436;
    color: #fff;
    transform: translateY(-3px);
}

/* Links */
.link-card {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #dfe6e9;
    padding: 12px 16px;
    border-radius: 16px;
    text-decoration: none;
    color: #2d3436;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.link-card:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: #b2bec3;
    color: #2d3436;
}

.link-card.featured {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: #fff;
    border: none;
}

.link-card.featured .icon-box {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.link-card.featured small {
    color: rgba(255,255,255,0.9);
}

.link-card.featured .arrow-icon {
    color: #fff;
}

.thumbnail {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: #f1f2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #6c5ce7;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.link-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.link-text small {
    color: #636e72;
}

.arrow-icon {
    color: #b2bec3;
}

/* Newsletter */
.newsletter-card {
    background: #f8f9fa;
    border-radius: 20px;
}

.btn-primary {
    background-color: #2d3436;
    border-color: #2d3436;
}

.btn-primary:hover {
    background-color: #000;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.floating-btn {
    padding: 10px 18px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: 1px solid #dfe6e9;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #2d3436;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.floating-btn:hover {
    transform: translateY(-2px);
    border-color: #6c5ce7;
    color: #6c5ce7;
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.15);
}

.floating-btn.edit-btn {
    border-color: #6c5ce7;
    background: #6c5ce7;
    color: #ffffff;
}

.floating-btn.edit-btn:hover {
    background: #5b4bc4;
    color: #ffffff;
}

.form-control-custom {
    width: 100%;
    padding: 12px 16px;
    background: #f8f9fa;
    border: 1px solid #dfe6e9;
    border-radius: 12px;
    color: #2d3436;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    outline: none;
    border-color: #6c5ce7;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.15);
}
