/* --- STYLE: ROYAL VIOLET (Updated with Sticky Bar) --- */

/* 1. Reset & Layout Fix */
html { overflow-y: scroll; }
html, body { height: 100%; margin: 0; padding: 0; overflow-x: hidden; }

body {
    font-family: 'Segoe UI', sans-serif;
    /* YOUR ORIGINAL GRADIENT */
    background: linear-gradient(45deg, #8E2DE2, #4A00E0);
    color: #fff; 
    padding-bottom: 90px; /* Space for Sticky Bar */
}

/* 2. Container */
.container { 
    width: 100%; max-width: 680px; 
    margin: 0 auto; /* Center Fix */
    text-align: center; 
    padding-top: 50px; padding-bottom: 100px;
    box-sizing: border-box;
    padding-left: 20px; padding-right: 20px;
    animation: fadeIn 0.6s ease-out forwards; opacity: 0;
}
@keyframes fadeIn { to { opacity: 1; } }

/* 3. Profile */
.profile-pic {
    width: 125px; height: 125px; border-radius: 40px; 
    border: 4px solid rgba(255,255,255,0.5);
    margin-bottom: 15px; background: #fff; object-fit: cover;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

h1 { font-size: 1.8rem; color: #fff; margin-bottom: 5px; margin-top: 0; font-weight: 700; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.bio { color: rgba(255,255,255,0.9); font-size: 1rem; margin-bottom: 15px; }
.bio a { color: #FFD700; text-decoration: none; font-weight: bold; border-bottom: 1px dotted #FFD700; }

/* 4. Socials */
.social-bar { display: flex; justify-content: center; gap: 12px; margin-bottom: 35px; flex-wrap: wrap; }
.social-icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.15); border-radius: 12px; color: #fff;
    text-decoration: none; font-size: 1.3rem; transition: 0.2s;
    border: 1px solid rgba(255,255,255,0.2);
}
.social-icon:hover { background: #fff; color: #8E2DE2; transform: rotate(10deg); }

/* 5. Link Cards */
.links-wrapper { display: flex; flex-direction: column; width: 100%; gap: 16px; }
.link-card {
    display: block;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 25px; border-radius: 15px;
    text-decoration: none; color: #4A00E0;
    font-weight: 700; font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s; width: 100%; box-sizing: border-box;
}
.link-card:hover {
    transform: scale(1.02);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.ad-container { background: #fff; padding: 10px; border-radius: 15px; overflow: hidden; margin: 20px 0; }

/* 6. NEW STICKY SHARE BAR (Styled White/Purple to match theme) */
.sticky-share-bar {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: #ffffff; /* White background for clean look */
    display: flex; justify-content: space-evenly; align-items: center;
    padding: 12px 0;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
    z-index: 9999;
    border-top: 1px solid #eee;
}

/* Copyright Strip */
.sticky-copyright {
    position: absolute; top: -20px; left: 0; width: 100%;
    text-align: center; font-size: 10px; color: #8E2DE2; /* Purple text */
    background: #ffffff; padding: 3px 0;
    border-top: 1px solid #eee;
}

/* Sticky Buttons */
.sticky-share-btn {
    display: flex; flex-direction: column; align-items: center;
    text-decoration: none; color: #666; 
    font-size: 0.7rem; font-weight: 600; width: 100%;
    border-right: 1px solid #f0f0f0;
}
.sticky-share-btn:last-child { border-right: none; }

.sticky-share-btn i { 
    font-size: 1.4rem; margin-bottom: 4px; transition: 0.2s; 
    color: #8E2DE2; /* Purple Icons */
}
.sticky-share-btn:hover i { transform: translateY(-3px); color: #4A00E0; }
.sticky-share-btn:hover { color: #4A00E0; }

@media (max-width: 600px) {
    .sticky-share-btn span { display: none; }
    .sticky-share-btn i { font-size: 1.5rem; }
}