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

body, html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.home-body {
    height: 100vh;
    overflow: hidden;
}

:root {
    --cream: #F5E6CA;
    --gold: #FFD700; /* Goldenrod/Gold */
    --gold-dark: #B8860B; /* Dark Goldenrod */
    --white: #FFFFFF;
    --black: #000000;
}

@font-face {
    font-family: 'Strange Fresh Slant';
    src: url('fonts/Strange Fresh Slant.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-image: url('image/background.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #111;
    font-family: 'Poppins', sans-serif;
}

/* Dark overlay */
body::before {
    content: '';
    position: fixed; /* Change to fixed to cover full scroll */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Slightly darker for better contrast */
    z-index: 1;
    pointer-events: none;
}

/* -----------------------------------------------------------
   NAVBAR
----------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.nav-links li a.active {
    color: var(--gold);
}

.nav-links li a.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450%;
    height: 450%;
    background-image: url('image/shape.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    filter: brightness(0) invert(1); /* Turns image white */
    opacity: 0.8;
    pointer-events: none;
}

.nav-links li a.social-icon {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

.nav-links li a:hover {
    color: var(--gold);
}

.nav-btn {
    text-decoration: none;
    background: var(--cream);
    color: var(--black);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-btn:hover {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.main-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start; /* Changed from center to flex-start to move text left */
    align-items: center;
    max-width: 1400px; /* Increased max-width to allow more spread */
    margin: 0 auto;
    padding: 20px;
    gap: 20px; /* Space between text and logo */
}

/* -----------------------------------------------------------
   LEFT SIDE: HERO TEXT
----------------------------------------------------------- */
.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: var(--white);
    padding-left: 80px; /* Increased padding-left to push text more from edge but keep it left */
    animation: slideInLeft 1s ease-out;
    max-width: 600px; /* Increased max-width */
}

.welcome-text {
    font-family: 'Strange Fresh Slant', 'Permanent Marker', cursive;
    font-size: 8rem; /* Drastically increased size */
    font-weight: 800; /* Extra bold */
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px; 
    margin-left: 0; 
    text-transform: uppercase;
    z-index: 5; /* Ensure it stays on top */
    text-shadow: 4px 4px 0 #000;
    line-height: 1.1;
}

.brand-text {
    font-family: 'Strange Fresh Slant', 'Permanent Marker', cursive;
    font-size: 13rem;
    line-height: 1.2;
    margin: 0;
    margin-top: -60px; 
    margin-left: -60px; 
    padding: 20px 50px;
    transform: rotate(-5deg);
    position: relative; 
    z-index: 5;
    
    color: var(--gold); 
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    
    /* Ensure no overflow clipping */
    overflow: visible;
    width: max-content;
}

.brand-text-inner {
    display: inline-block;
    position: relative;
    z-index: 1;
    color: inherit; /* Use parent's gold color */
}

@keyframes shine-text {
    to {
        background-position: 200% center;
    }
}

.brand-text::before {
    content: 'AFTER';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: inherit;
    z-index: 0;
    
    /* Shadow only - text is transparent */
    color: transparent;
    -webkit-text-fill-color: transparent;
    background: none;
    text-shadow: 
        3px 3px 0 #000,
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        10px 10px 0px #000;
    pointer-events: none;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--white);
    max-width: 450px;
    border-left: 5px solid var(--gold); /* Thicker line */
    padding-left: 20px;
    margin-top: 60px; /* Pushed down further */
    margin-left: 10px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* -----------------------------------------------------------
   RIGHT SIDE: LOGO & ORBITS
----------------------------------------------------------- */
.center-container {
    flex: 1;
    position: relative;
    width: 500px; /* Increased from 400px */
    height: 500px; /* Increased from 400px */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 50px; 
}

.logo-area {
    position: relative;
    z-index: 20;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 450px; /* Increased from 300px */
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    animation: pulse 3s infinite ease-in-out;
}

/* Floating Statistics Items */
.stat-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transform: scale(0.5) translate(0, 0);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10;
    pointer-events: none;
    transform-origin: center;
}

.stat-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: var(--black);
    text-shadow: 2px 2px 0 var(--gold); /* Outline effect or just bold */
    -webkit-text-stroke: 1px var(--white); /* Optional stroke for visibility */
    color: var(--white); /* Or make it white with gold shadow */
    line-height: 1;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--cream);
    margin-top: 5px;
    font-weight: 500;
}

/* -----------------------------------------------------------
   HOVER EFFECTS
----------------------------------------------------------- */
.logo-area:hover {
    transform: scale(1.05);
}

.center-container:hover .stat-item {
    opacity: 1;
    pointer-events: auto;
}

/* Explosion Positions for Stats */
/* Item 1: Top Center */
.center-container:hover .item-1 { transform: translate(0, -280px) scale(1); } /* Increased distance */

/* Item 2: Bottom Right */
.center-container:hover .item-2 { transform: translate(260px, 160px) scale(1); } /* Increased distance */

/* Item 3: Bottom Left */
.center-container:hover .item-3 { transform: translate(-260px, 160px) scale(1); } /* Increased distance */


@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* -----------------------------------------------------------
   RESPONSIVE DESIGN
----------------------------------------------------------- */
/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */
.footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.8;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(5px);
}

.footer .highlight {
    color: var(--gold);
    font-weight: 600;
}

@media (max-width: 900px) {
    .navbar {
        top: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        padding: 15px;
        flex-direction: column;
        gap: 15px;
        background: rgba(0, 0, 0, 0.9); /* Darker for mobile readability */
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-wrapper {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 30px;
        padding: 20px;
    }

    .hero-text {
        align-items: center;
        padding-left: 0;
        margin-top: 50px;
        width: 100%;
    }

    .brand-text {
        font-size: 6rem; /* Smaller for mobile */
    }

    .description-text {
        border-left: none;
        border-bottom: 3px solid var(--gold);
        padding-left: 0;
        padding-bottom: 10px;
    }

    .center-container {
        width: 100%;
        height: 350px;
        margin-right: 0;
        transform: scale(0.9);
    }
    
    /* Adjust hover positions for mobile if needed, or keep them */
    .center-container:hover .item-1 { transform: translate(0, -180px) scale(0.9); }
    .center-container:hover .item-2 { transform: translate(140px, 100px) scale(0.9); }
    .center-container:hover .item-3 { transform: translate(-140px, 100px) scale(0.9); }

    .section-title {
        font-size: 3rem;
    }
    .vip-card.featured {
        transform: scale(1);
    }
    .vip-card.featured:hover {
        transform: scale(1.05);
    }
}

/* -----------------------------------------------------------
   SECTIONS COMMON
----------------------------------------------------------- */
.section-container {
    padding: 100px 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    position: relative; /* Ensure it sits above overlay */
    z-index: 5;
}

.section-title {
    font-family: 'Strange Fresh Slant', 'Permanent Marker', cursive;
    font-size: 4rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 4px 4px 0 #000;
    transform: rotate(-2deg);
}

/* -----------------------------------------------------------
   PARCEIROS SECTION
----------------------------------------------------------- */
.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.parceiro-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.parceiro-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.parceiro-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.parceiro-content {
    padding: 25px;
}

.parceiro-title {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.parceiro-desc {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* -----------------------------------------------------------
   VIPS SECTION
----------------------------------------------------------- */
.vips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

/* VIP Focus Effect */
#vips:has(.vip-card:hover) .vip-card:not(:hover) {
    filter: blur(5px) grayscale(0.5);
    opacity: 0.5;
    transform: scale(0.98);
}

.vip-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: none;
    border-right: none;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    --card-glow: rgba(255, 255, 255, 0.1);
}

.vip-card::before,
.vip-card::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--card-glow) 0%, transparent 70%);
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
    transition: all 0.5s ease;
}

.vip-card::before {
    top: -75px;
    right: -75px;
}

.vip-card::after {
    bottom: -75px;
    left: -75px;
}

.vip-card:hover::before,
.vip-card:hover::after {
    opacity: 0.5;
    transform: scale(1.2);
}

/* Ensure content is above the glow */
.vip-title, .vip-price, .vip-features, .vip-btn, .vip-price-staff {
    position: relative;
    z-index: 1;
}

.vip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Specific VIP Card Colors */
.vip-card.prada {
    border-color: #2ecc71; /* Green */
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.1);
    --card-glow: #2ecc71;
}
.vip-card.prada:hover {
    box-shadow: 0 0 30px rgba(46, 204, 113, 0.3);
}
.vip-card.prada .vip-title { color: #2ecc71; }
.vip-card.prada .vip-btn { background: #2ecc71; color: #fff; }
.vip-card.prada .vip-btn:hover { color: #fff; }

.vip-card.balenciaga {
    border-color: #e74c3c; /* Red */
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.1);
    --card-glow: #e74c3c;
}
.vip-card.balenciaga:hover {
    box-shadow: 0 0 30px rgba(231, 76, 60, 0.3);
}
.vip-card.balenciaga .vip-title { color: #e74c3c; }
.vip-card.balenciaga .vip-btn { background: #e74c3c; color: #fff; }
.vip-card.balenciaga .vip-btn:hover { color: #fff; }

.vip-card.balmain {
    border-color: #95a5a6; /* Silver/Black styling context */
    box-shadow: 0 0 15px rgba(149, 165, 166, 0.1);
    --card-glow: #95a5a6;
}
.vip-card.balmain:hover {
    box-shadow: 0 0 30px rgba(149, 165, 166, 0.3);
}
.vip-card.balmain .vip-title { color: #bdc3c7; }
.vip-card.balmain .vip-btn { background: #95a5a6; color: #fff; }
.vip-card.balmain .vip-btn:hover { color: #fff; }

.vip-card.cartier {
    border-color: var(--gold); /* Gold */
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
    transform: scale(1.05); /* Featured */
    z-index: 2;
    --card-glow: var(--gold);
}
.vip-card.cartier:hover {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    transform: scale(1.08);
}
.vip-card.cartier .vip-title { color: var(--gold); }
.vip-card.cartier .vip-btn { background: var(--gold); color: #000; }
.vip-card.cartier .vip-btn:hover { color: #000; }

/* Horizontal VIP Card Styling */
.horizontal-vip {
    margin-top: 40px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    max-width: 100%;
    gap: 40px;
    padding: 40px;
}

.horizontal-vip .vip-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 250px;
    border-right: 1px solid rgba(255, 215, 0, 0.2);
    padding-right: 30px;
}

.horizontal-vip .vip-features {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px 30px;
    padding-left: 0;
    margin-bottom: 0;
}

.horizontal-vip .vip-features li {
    margin-bottom: 5px;
}

/* Responsive adjustments for Horizontal Card */
@media (max-width: 900px) {
    .horizontal-vip {
        flex-direction: column;
        text-align: center;
    }
    
    .horizontal-vip .vip-info {
        border-right: none;
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        padding-right: 0;
        padding-bottom: 30px;
        margin-bottom: 30px;
        width: 100%;
    }
    
    .horizontal-vip .vip-features {
        width: 100%;
    }
}


.vip-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-family: 'Strange Fresh Slant', sans-serif;
    text-transform: uppercase;
}

.vip-price {
    font-size: 2rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 5px;
}

.vip-price-staff {
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 25px;
    font-style: italic;
}

.vip-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
    text-align: left;
    padding-left: 10px;
}

.vip-features li {
    color: var(--white);
    margin-bottom: 12px;
    opacity: 0.9;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
}

.vip-features li i {
    margin-top: 4px;
}

/* Shine Effect for Buttons */
@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.vip-btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.vip-btn span {
    position: relative;
    z-index: 2;
}

.vip-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    z-index: 1;
    transition: none;
}

.vip-btn:hover::before {
    animation: shine 0.75s;
}

.vip-btn:hover {
    transform: scale(1.05);
}

/* -----------------------------------------------------------
   POSSES SECTION (UPDATED)
----------------------------------------------------------- */
.posses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.posse-card {
    background: rgba(0, 0, 0, 0.4); /* Much lighter */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(10px);
    --card-glow: var(--gold);
}

.posse-card::before,
.posse-card::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--card-glow) 0%, transparent 70%);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    transition: all 0.5s ease;
}

.posse-card::before {
    top: -60px;
    right: -60px;
}

.posse-card::after {
    bottom: -60px;
    left: -60px;
}

.posse-card:hover::before,
.posse-card:hover::after {
    opacity: 0.4;
    transform: scale(1.2);
}

/* Ensure content is above glow */
.posse-header, .posse-badges, .posse-name {
    position: relative;
    z-index: 1;
}

.posse-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.posse-header {
    background: transparent;
    padding: 30px 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.posse-avatar-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.posse-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #1a1a1a;
    position: relative;
    z-index: 2;
}

.avatar-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--gold), transparent, var(--gold));
    z-index: 1;
    animation: spin 4s linear infinite;
    opacity: 0.8;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vip-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 10px;
    z-index: 3;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    border: 2px solid #1a1a1a;
}

.posse-name {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.verified-icon {
    color: #3ba55c; /* Discord Verified Green or Blue */
    font-size: 1rem;
}

.posse-badges {
    display: flex;
    gap: 10px;
    margin-top: 5px;
    background: rgba(0,0,0,0.3);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.badge {
    color: #bbb;
    font-size: 1.1rem;
    cursor: help;
    position: relative;
    transition: color 0.3s;
}

.badge:hover {
    color: var(--gold);
}

/* Tooltip Styling */
.badge::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 140%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #000;
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    border: 1px solid #333;
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    z-index: 100;
}

.badge:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Triangle for Tooltip */
.badge::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border-width: 5px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.badge:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}


.posse-body {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.posse-bio {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: italic;
}

.posse-socials {
    margin-bottom: 20px;
}

.posse-socials span {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.posse-socials span:hover {
    opacity: 1;
}

.posse-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255,255,255,0.05);
    color: #aaa;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.tag:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    border-color: rgba(255, 215, 0, 0.3);
}
