/* =================================================================
   APK HERO STYLING V5 (FINAL PROFESSIONAL VERSION)
   ================================================================= */

/* --- Main Layout Wrapper --- */
.apk-main-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 24px;
    align-items: stretch;
}

/* --- Left Column: Main Card --- */
.apk-hero-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* --- NEW: Breadcrumbs Styling --- */
.breadcrumbs-container-hero {
    text-align: center;
    margin-bottom: 20px;
}
.breadcrumbs-container-hero #breadcrumbs {
    margin: 0;
    padding: 0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.breadcrumbs-container-hero #breadcrumbs a {
    color: #64748b;
    text-decoration: none;
}
.breadcrumbs-container-hero #breadcrumbs a:hover {
    color: #2563eb;
}
.breadcrumbs-container-hero #breadcrumbs span.breadcrumb_last {
    color: #0f172a; /* Darker color for current page */
}

/* --- Centered Content --- */
.apk-hero-centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* --- App Icon --- */
.app-icon-wrapper {
    position: relative;
    width: 128px; 
    height: 128px;
    margin-bottom: 8px;
}
.app-icon-img {
    width: 100%; height: 100%; border-radius: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}
.rank-badge-overlay {
    position: absolute; top: -5px; right: -5px; background-color: #f59e0b;
    color: #fff; font-weight: 800; font-size: 14px; width: 32px; height: 32px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    border: 3px solid #fff;
}

/* --- Title & Badge --- */
.apk-title {
    font-family: 'Outfit', sans-serif; font-size: 26px; font-weight: 800;
    color: #0f172a; margin: 0; text-align: center;
}
.verdict-badge {
    display: inline-block; padding: 4px 12px; border-radius: 20px;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    background-color: #f1f5f9; color: #475569;
}

/* --- Buttons --- */
.download-button-group {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    width: 100%; max-width: 400px; margin-top: 10px;
}
.btn-apk {
    padding: 10px; border-radius: 8px; text-align: center; font-weight: 700;
    font-size: 14px; text-decoration: none; transition: all 0.2s ease;
}
.btn-download-gold {
    background-color: #f59e0b; color: #fff; border: 2px solid #f59e0b;
}
.btn-download-gold:hover {
    background-color: #d97706; transform: translateY(-2px);
}
.btn-join-blue {
    background-color: transparent; color: #2563eb; border: 2px solid #2563eb;
}
.btn-join-blue:hover {
    background-color: #2563eb; color: #ffffff;
}

/* --- Button Meta Text --- */
.button-meta-text {
    display: flex; justify-content: center; gap: 24px; font-size: 12px;
    color: #64748b; text-align: center; margin-top: 4px;
}
.button-meta-text span { display: flex; align-items: center; gap: 6px; }

/* --- Description (Bio) --- */
.apk-bio-container {
    margin-top: auto; padding-top: 20px; border-top: 1px solid #e2e8f0;
}
.apk-bio-content p {
    font-size: 14px; color: #334155; line-height: 1.6; margin: 0 !important; padding: 0 !important;
}
.apk-bio-read-more {
    background: none; border: none; color: #2563eb; font-weight: 600;
    cursor: pointer; padding: 5px 0 0 0; font-size: 14px;
}

/* --- NEW: Share Section with Brand Colors --- */
.share-icons-apk {
    margin-top: 20px; padding-top: 15px; border-top: 1px solid #e2e8f0;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.share-label { font-size: 13px; color: #334155; font-weight: 600; }
.share-icon-group { display: flex; gap: 15px; }
.share-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; background-color: #f1f5f9; 
    border-radius: 50%; color: #475569; font-size: 18px; 
    text-decoration: none; transition: all 0.3s ease;
}
.share-icon:hover {
    color: #ffffff; transform: translateY(-3px); box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.share-icon.facebook:hover { background-color: #1877F2; }
.share-icon.twitter:hover { background-color: #1DA1F2; }
.share-icon.whatsapp:hover { background-color: #25D366; }
.share-icon.telegram:hover { background-color: #0088CC; }
.share-icon.pinterest:hover { background-color: #E60023; }

/* --- Right Column: Data Pills Styling --- */
.apk-data-sidebar {
    background-color: #ffffff; border: 1px solid #e2e8f0;
    border-radius: 16px; padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); height: 100%;
}
.data-pill {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 10px; border-bottom: 1px solid #f1f5f9;
}
.data-pill:last-child { border-bottom: none; }
.data-pill-label {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: #475569;
}
.data-pill-value {
    font-size: 14px; font-weight: 600; color: #0f172a;
    background-color: #f8fafc; padding: 4px 10px; border-radius: 8px;
}