/* Base Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #0b0b0d; 
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Cover Image */
/* Cover Image */
.cover-image {
    width: 100%;
    max-width: 500px;
    height: 140px;
    background-image: url('img/wallpaper.jpg'); 
    background-size: cover;
    background-position: center;
    position: relative;
}

.share-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.share-btn:hover { background: rgba(255, 255, 255, 0.3); }

/* Container & Profile */
.container {
    width: 100%;
    max-width: 500px;
    padding: 0 20px 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-top: -30px; /* Changed from -60px to -30px for less overlap */
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-pic-wrapper {
    background-color: #0b0b0d;
    border-radius: 50%;
    padding: 5px; 
    margin-bottom: 10px;
}

.profile-pic {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    background-color: white; 
}

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

.bio-list {
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Featured Content Blocks (The "Embeds") */
.featured-card {
    display: block;
    width: 100%;
    background: linear-gradient(145deg, #1a1a1d 0%, #131316 100%);
    border: 1px solid #333338;
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.featured-card:hover {
    transform: translateY(-4px);
    border-color: #3b82f6; 
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.badge {
    background-color: #ef4444; 
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.featured-card h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.featured-card p {
    font-size: 0.9rem;
    color: #a1a1aa;
    margin-bottom: 20px;
    line-height: 1.5;
}

.featured-cta {
    font-size: 0.95rem;
    font-weight: 600;
    color: #3b82f6; 
    display: flex;
    align-items: center;
    gap: 8px;
}

.agency-card:hover {
    border-color: #10b981; 
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
}
.agency-card .featured-cta { color: #10b981; }

/* Visual Divider */
.divider {
    width: 100%;
    text-align: center;
    margin: 24px 0 16px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #333338;
    z-index: 1;
}

.divider span {
    background-color: #0b0b0d; 
    padding: 0 16px;
    color: #71717a;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

/* SHIRE Agency Card Unique Styling */
.agency-card:hover {
    border-color: #ff8010; /* Emerald Green */
    box-shadow: 0 10px 25px rgba(255, 178, 12, 0.2);
}

.agency-badge {
    background-color: #ff8010; /* Emerald Green Badge */
}

.agency-cta {
    color: #ff8010; /* Emerald Green CTA Text */
}
/* Premium Link Cards */
.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-card {
    display: flex;
    align-items: center;
    background-color: #131316; 
    border: 1px solid #222225;
    border-radius: 16px;
    padding: 12px 16px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.link-card:hover {
    transform: translateY(-3px) scale(1.01);
    background-color: #1a1a1d;
    border-color: #333338;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-right: 16px;
    flex-shrink: 0;
    color: white;
}

.card-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-text h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.card-text p {
    font-size: 0.8rem;
    color: #88888e;
}

.card-arrow {
    color: #55555c;
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.link-card:hover .card-arrow {
    color: #fff;
    transform: translateX(3px); 
}

/* Neon Glows for All Platforms */
.tiktok-glow { background-color: #fbfbfb; color: #000; box-shadow: 0 0 20px rgba(0, 242, 254, 0.3); }
.youtube-glow { background-color: #ff0000; box-shadow: 0 0 20px rgba(255, 0, 0, 0.3); }
.insta-glow { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); box-shadow: 0 0 20px rgba(220, 39, 67, 0.3); }
.facebook-glow { background-color: #1877F2; box-shadow: 0 0 20px rgba(24, 119, 242, 0.3); }
.linkedin-glow { background-color: #0A66C2; box-shadow: 0 0 20px rgba(10, 102, 194, 0.3); }
.discord-glow { background-color: #5865F2; box-shadow: 0 0 20px rgba(88, 101, 242, 0.3); }
.whatsapp-glow { 
    background-color: #25D366; 
    color: #fff; 
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3); 
}

/* Add this to the bottom of your style.css file */
.footer-copy {
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: #71717a;
    width: 100%;
}

/* Animations */
@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate-item {
    opacity: 0;
    animation: slideUpFade 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Staggered Delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }
.delay-9 { animation-delay: 0.9s; }
.delay-10 { animation-delay: 1.0s; }
.delay-11 { animation-delay: 1.1s; }
.delay-12 { animation-delay: 1.2s; }