:root {
    /* New Eye-Friendly Golden Palette */
    --bg-start: #fccb90; /* Soft Peach-Yellow */
    --bg-end: #d57eeb;   /* Soft Lavender-Gold mix or keep it yellow: #ff9a9e */
    /* Let's go with a professional Sunset Gold gradient: */
    --gold-deep: #e6b905; 
    --gold-light: #ffea8a;
    
    --dark-text: #1a1a1a;
    --card-bg: #000000;
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    /* This gradient is smoother and less straining */
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* THE OUTER BOX - Improved Glassmorphism */
.outer-box {
    width: 100%;
    max-width: 450px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.container {
    text-align: center;
}

/* PROFILE IMAGE */
.profile {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.4s;
}

.profile:hover {
    transform: scale(1.05);
}

/* TEXT */
h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.intro {
    font-size: 14px;
    color: #444;
    margin-bottom: 30px;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--dark-text);
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.icon:hover {
    transform: translateY(-4px);
    background: #000;
    box-shadow: 0 10px 15px rgba(0,0,0,0.15);
}

/* LINK CARDS */
.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: var(--dark-text);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    justify-content: center;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.link-card i {
    font-size: 1.2rem;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.link-card:hover {
    background: #000;
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* FOOTER */
footer {
    margin-top: 35px;
    font-size: 11px;
    color: #555;
    letter-spacing: 1px;
}

.followers{

background:#111;

color:#fff;

padding:4px 10px;

border-radius:8px;

font-size:12px;

font-weight:500;

}