/* ==========================================
   supersta.rs — Core CSS Styling
   Commercial Pink Neon & Dark Show Aesthetic
   ========================================== */

/* Variables */
:root {
    --bg-dark: #09080c;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-pink: rgba(255, 0, 127, 0.2);
    --border-pink-hover: rgba(255, 0, 127, 0.5);
    
    --pink: #ff007f;
    --pink-glow: rgba(255, 0, 127, 0.4);
    --purple: #a855f7;
    --purple-glow: rgba(168, 85, 247, 0.3);
    --cyan: #06b6d4;
    --white: #ffffff;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    
    --font-primary: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: var(--font-primary);
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: 40px;
    line-height: 1.5;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 0, 127, 0.3);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--pink);
}

/* Background Glow Effects */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.45;
}
.bg-glow-pink {
    width: 350px;
    height: 350px;
    top: -100px;
    left: -100px;
    background: var(--pink-glow);
}
.bg-glow-purple {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
    background: var(--purple-glow);
}

/* Header & Logo */
.app-header {
    position: sticky;
    top: 0;
    background: rgba(9, 8, 12, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}
.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--white);
    text-shadow: 0 0 12px rgba(255, 0, 127, 0.4);
    cursor: pointer;
}
.logo span {
    color: var(--pink);
}

/* Nav Button Icon */
.nav-icon-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}
.nav-icon-btn:hover {
    background: rgba(255, 0, 127, 0.1);
    border-color: var(--pink);
    color: var(--pink);
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.2);
}
.nav-icon-btn .badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--pink);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--bg-dark);
}

/* Hero Section */
.hero-section {
    max-width: 800px;
    margin: 40px auto 30px auto;
    text-align: center;
    padding: 0 20px;
}
.hero-section h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 30%, #ff7ebb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-section p {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 300;
}

/* Filters Section */
.filter-section {
    max-width: 800px;
    margin: 0 auto 30px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.search-bar-container {
    position: relative;
    width: 100%;
}
.search-bar-container input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 14px 16px 14px 44px;
    border-radius: 14px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 16px;
    transition: var(--transition);
}
.search-bar-container input:focus {
    outline: none;
    border-color: var(--pink);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.15);
}
.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
    pointer-events: none;
}
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.filter-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}
.filter-buttons {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none; /* Firefox */
}
.filter-buttons::-webkit-scrollbar {
    display: none; /* Safari/Chrome */
}
.filter-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}
.filter-btn.active {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--white);
    box-shadow: 0 0 12px rgba(255, 0, 127, 0.35);
}

/* Stars Grid */
.stars-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.stars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    gap: 16px;
}

/* Star Card */
.star-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.star-card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    border-color: var(--border-pink-hover);
    box-shadow: 0 8px 24px rgba(255, 0, 127, 0.12);
}
.star-card-image-container {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}
.star-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.star-card:hover .star-card-image {
    transform: scale(1.05);
}
.star-card-tier-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.star-card-tier-badge.superstar {
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    color: var(--white);
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.4);
}
.star-card-tier-badge.vip {
    background: var(--cyan);
    color: #000;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}
.star-card-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.star-card-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.star-card-role {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 300;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.star-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
}
.star-card-rating {
    color: var(--cyan);
}
.star-card-rating i {
    font-size: 11px;
}
.star-card-price {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 12px;
}

/* No Results state */
.no-results {
    text-align: center;
    padding: 50px 20px;
    color: var(--text-muted);
}
.no-results i {
    font-size: 48px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.1);
}
.no-results p {
    font-size: 16px;
}

/* Bottom Sheet Overlay */
.bottom-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.bottom-sheet-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Bottom Sheet */
.bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f0e15;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px 24px 0 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.5);
    visibility: hidden;
    opacity: 0;
}
.bottom-sheet.active {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}
.sheet-handle {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 10px auto 4px auto;
    flex-shrink: 0;
}
.sheet-close-btn {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(255,255,255,0.06);
    border: none;
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}
.sheet-close-btn:hover {
    background: rgba(255, 0, 127, 0.2);
    color: var(--pink);
}
.sheet-content {
    overflow-y: auto;
    padding: 10px 24px 40px 24px;
    flex-grow: 1;
}

/* Star Sheet Details Styles */
.sheet-profile-header {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    margin-top: 10px;
}
.sheet-profile-img-container {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--pink);
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.2);
    flex-shrink: 0;
}
.sheet-profile-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sheet-profile-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sheet-profile-name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 2px;
}
.sheet-profile-role {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.sheet-profile-rating {
    font-size: 14px;
    font-weight: 600;
    color: var(--cyan);
}
.sheet-profile-rating span {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 12px;
}

.sheet-cameo-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0;
}
.stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}
.stat-item i {
    font-size: 14px;
}
.stat-item i.fa-bolt {
    color: #ffd700;
}
.stat-item i.fa-language {
    color: var(--pink);
}

.sheet-bio {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.02);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
}

.sheet-charity-badge {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--cyan);
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sheet-charity-badge i {
    font-size: 14px;
}

/* Service Options Cards */
.service-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    margin-bottom: 12px;
}
.service-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.service-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.service-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255, 255, 255, 0.15);
}
.service-card.selected {
    background: rgba(255, 0, 127, 0.06);
    border-color: var(--pink);
    box-shadow: inset 0 0 10px rgba(255, 0, 127, 0.1);
}
.service-card-info {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}
.service-card-icon {
    font-size: 20px;
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
}
.service-card.selected .service-card-icon {
    color: var(--pink);
    background: rgba(255,0,127,0.1);
}
.service-card-details h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}
.service-card-details p {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 300;
}
.service-card-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    white-space: nowrap;
    margin-left: 12px;
}

/* Charity Toggle Section */
.charity-toggle-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 28px;
}
.charity-toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.charity-toggle-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.charity-toggle-title i {
    color: var(--cyan);
    font-size: 16px;
}
.charity-toggle-title h4 {
    font-size: 14px;
    font-weight: 700;
}
.charity-toggle-title p {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 1px;
}

/* Toggle Switch Style */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.1);
    transition: .3s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--white);
    transition: .3s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: var(--cyan);
}
input:checked + .slider:before {
    transform: translateX(22px);
}

.charity-select-dropdown {
    margin-top: 16px;
    display: none;
    transition: var(--transition);
}
.charity-select-dropdown label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.charity-select-dropdown select {
    width: 100%;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 14px;
    outline: none;
}
.charity-select-dropdown select:focus {
    border-color: var(--cyan);
}

.submit-btn {
    width: 100%;
    background: var(--pink);
    border: none;
    color: var(--white);
    padding: 15px;
    border-radius: 14px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.3);
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.submit-btn:hover {
    box-shadow: 0 0 25px rgba(255, 0, 127, 0.5);
    transform: translateY(-2px);
}
.submit-btn:active {
    transform: translateY(0);
}

/* Booking Panel styling */
.booking-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 500px;
    background: #0d0c11;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -8px 0 30px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
}
.booking-panel.active {
    transform: translateX(0);
}
.booking-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 16px;
}
.booking-back-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
}
.booking-back-btn:hover {
    background: rgba(255,255,255,0.06);
}
.booking-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}
.radio-toggle {
    display: flex;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-color);
    padding: 4px;
    border-radius: 12px;
}
.radio-toggle input[type="radio"] {
    display: none;
}
.radio-toggle label {
    flex: 1;
    text-align: center;
    padding: 8px;
    margin-bottom: 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}
.radio-toggle input[type="radio"]:checked + label {
    background: rgba(255,255,255,0.08);
    color: var(--white);
}

.form-group input[type="text"],
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--pink);
    background: rgba(255,255,255,0.07);
}
.input-hint {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 300;
}
.form-row {
    display: flex;
    gap: 16px;
}
.form-row .form-group {
    flex: 1;
}

/* Booking Summary Card */
.booking-summary-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-muted);
}
.donation-row {
    color: var(--cyan);
}
.total-row {
    border-top: 1px solid var(--border-color);
    padding-top: 8px;
    margin-top: 4px;
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
}

/* Steps Transition */
.booking-step {
    display: none;
}
.booking-step.active {
    display: block;
}

/* Checkout Form specific styles */
.card-details-form h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}
.checkout-hint {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 300;
}
.card-input-wrapper {
    position: relative;
}
.card-input-wrapper input {
    padding-left: 40px !important;
}
.input-card-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
}

/* Success Screen style */
.success-screen {
    text-align: center;
    padding: 20px 10px;
}
.success-icon-container {
    font-size: 64px;
    color: var(--cyan);
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.2));
}
.success-screen h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}
.success-screen p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.status-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 340px;
    margin: 0 auto 30px auto;
}
.status-timeline::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: rgba(255,255,255,0.06);
    z-index: 1;
}
.timeline-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}
.step-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #17161f;
    border: 2px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    margin-bottom: 8px;
    transition: var(--transition);
}
.timeline-step.completed .step-icon {
    background: var(--cyan);
    border-color: var(--cyan);
    color: #000;
}
.timeline-step.active .step-icon {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--white);
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.4);
}
.step-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    white-space: nowrap;
}
.timeline-step.active .step-label {
    color: var(--white);
}
.timeline-hint {
    font-size: 12px !important;
    background: rgba(255,255,255,0.02);
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

/* Audio Recorder Simulator Styles */
.audio-recorder-container {
    background: rgba(0,0,0,0.25);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.recorder-visualizer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}
.timer {
    font-size: 24px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: var(--white);
}
.wave-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    height: 40px;
    width: 100%;
}
.bar {
    width: 3px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    transition: height 0.1s ease;
}
.wave-container.animating .bar {
    background: var(--pink);
    animation: bounce 1s ease-in-out infinite alternate;
}
/* Stagger animation for the bounce */
.wave-container.animating .bar:nth-child(1) { animation-delay: 0.1s; }
.wave-container.animating .bar:nth-child(2) { animation-delay: 0.3s; }
.wave-container.animating .bar:nth-child(3) { animation-delay: 0.5s; }
.wave-container.animating .bar:nth-child(4) { animation-delay: 0.2s; }
.wave-container.animating .bar:nth-child(5) { animation-delay: 0.4s; }
.wave-container.animating .bar:nth-child(6) { animation-delay: 0.1s; }
.wave-container.animating .bar:nth-child(7) { animation-delay: 0.3s; }
.wave-container.animating .bar:nth-child(8) { animation-delay: 0.5s; }
.wave-container.animating .bar:nth-child(9) { animation-delay: 0.2s; }
.wave-container.animating .bar:nth-child(10) { animation-delay: 0.4s; }

@keyframes bounce {
    0% { height: 4px; }
    100% { height: 38px; }
}

.recorder-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
}
.recorder-btn {
    border: none;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}
.recorder-btn.record {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--pink);
    font-size: 20px;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
}
.recorder-btn.record.recording {
    background: var(--cyan);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}
.recorder-btn.play {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    font-size: 14px;
}
.recorder-btn.play.playing {
    background: var(--pink);
    color: var(--white);
}
.recorder-btn.delete {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    font-size: 14px;
    color: var(--text-muted);
}
.recorder-btn.delete:hover {
    color: var(--white);
    background: rgba(239, 68, 68, 0.15);
}
.recorder-status {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 300;
}

/* User Inbox Sheet */
.inbox-sheet {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 440px;
    background: #0f0e15;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -8px 0 30px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
}
.inbox-sheet.active {
    transform: translateX(0);
}
.inbox-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.inbox-header h3 {
    font-size: 18px;
    font-weight: 800;
}
.inbox-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Inbox Item Card */
.inbox-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    gap: 14px;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}
.inbox-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}
.inbox-card-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}
.inbox-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inbox-card-info {
    flex-grow: 1;
}
.inbox-card-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}
.inbox-card-povod {
    font-size: 11px;
    background: rgba(255,255,255,0.06);
    padding: 1px 6px;
    border-radius: 4px;
    display: inline-block;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.inbox-card-status {
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}
.inbox-card-status.zavrseno {
    color: var(--cyan);
}
.inbox-card-status.u-pripremi {
    color: var(--pink);
}
.inbox-play-badge {
    background: var(--pink);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.3);
}

/* Media Player Modal */
.player-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1002;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.player-modal.active {
    display: flex;
}
.player-container {
    width: 100%;
    max-width: 400px;
    background: #111016;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
.player-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    border: none;
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}
.player-visual-area {
    width: 100%;
    aspect-ratio: 1;
    background: #000;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-mock-container {
    width: 100%;
    height: 100%;
    position: relative;
}
.video-mock-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
}
.video-overlay-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: var(--white);
    background: rgba(255, 0, 127, 0.85);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.video-mock-container.paused .video-overlay-play {
    opacity: 1;
}
.subtitle-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    text-align: center;
    color: var(--white);
    min-height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    z-index: 5;
}

/* Audio Player Container Visual style */
.audio-mock-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(168,85,247,0.15) 0%, rgba(9,8,12,0.85) 100%);
    gap: 20px;
}
.audio-disk {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid var(--pink);
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 30px rgba(255,0,127,0.3);
    animation: rotate 6s linear infinite;
    animation-play-state: paused;
}
.audio-mock-container.playing .audio-disk {
    animation-play-state: running;
}
.audio-disk img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.audio-playing-wave {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    height: 30px;
}
.abar {
    width: 4px;
    height: 6px;
    background: var(--pink);
    border-radius: 2px;
    transition: height 0.1s ease;
}
.audio-mock-container.playing .abar {
    animation: bounceAudio 0.8s ease-in-out infinite alternate;
}
.audio-mock-container.playing .abar:nth-child(1) { animation-delay: 0.1s; }
.audio-mock-container.playing .abar:nth-child(2) { animation-delay: 0.3s; }
.audio-mock-container.playing .abar:nth-child(3) { animation-delay: 0.5s; }
.audio-mock-container.playing .abar:nth-child(4) { animation-delay: 0.2s; }
.audio-mock-container.playing .abar:nth-child(5) { animation-delay: 0.4s; }
.audio-mock-container.playing .abar:nth-child(6) { animation-delay: 0.1s; }
.audio-mock-container.playing .abar:nth-child(7) { animation-delay: 0.3s; }

@keyframes bounceAudio {
    0% { height: 6px; }
    100% { height: 28px; }
}

/* Player Info and Controls */
.player-controls {
    padding: 20px;
}
.player-controls h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 2px;
}
.player-controls p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 300;
}
.progress-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    margin-bottom: 20px;
}
.player-progress-bar {
    flex-grow: 1;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}
.player-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0%;
    background: var(--pink);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--pink);
}
.control-buttons {
    display: flex;
    justify-content: center;
}
.control-btn {
    background: var(--pink);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.3);
    transition: var(--transition);
}
.control-btn:hover {
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.5);
    transform: scale(1.05);
}

/* Desktop Responsiveness */
@media (min-width: 600px) {
    .stars-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 20px;
    }
    
    /* Dialog style on desktop instead of bottom sheet */
    .bottom-sheet {
        max-width: 500px;
        margin: auto;
        left: 50%;
        top: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -40%) scale(0.95);
        border-radius: 20px;
        border: 1px solid rgba(255,255,255,0.12);
        max-height: 80vh;
        width: 90%;
    }
    .bottom-sheet.active {
        transform: translate(-50%, -50%) scale(1);
    }
    
    .hero-section h2 {
        font-size: 40px;
    }
}

/* Bottom App Navigation Bar Styling (Mobile App Style) */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(15, 14, 21, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 990;
    padding: 0 10px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.bottom-nav-item {
    background: transparent;
    border: none;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
    height: 100%;
    position: relative;
}

.bottom-nav-item i {
    font-size: 18px;
}

.bottom-nav-item:hover {
    color: var(--white);
}

.bottom-nav-item.active {
    color: var(--pink);
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.2);
}

.bottom-nav-item .nav-badge {
    position: absolute;
    top: 6px;
    left: 54%;
    background: var(--pink);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    padding: 1px 5px;
    border-radius: 10px;
    border: 1px solid #111016;
    min-width: 16px;
    text-align: center;
}

/* Mobile App layout adjustments */
@media (max-width: 599px) {
    body {
        padding-bottom: 140px; /* space for bottom nav bar and floating search drawer */
    }
    
    /* Force 2-column mobile app layout */
    .stars-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .stars-grid-container {
        padding: 0 12px !important;
    }
    
    .star-card {
        border-radius: 14px !important;
    }
    
    .star-card-info {
        padding: 10px !important;
    }
    
    .star-card-name {
        font-size: 14px !important;
    }
    
    .star-card-role {
        font-size: 11px !important;
        margin-bottom: 6px !important;
    }
    
    .star-card-meta {
        font-size: 11px !important;
    }
    
    .star-card-price {
        padding: 1px 6px !important;
        font-size: 11px !important;
    }
}

/* Hide bottom nav on desktop views */
@media (min-width: 600px) {
    .bottom-nav {
        display: none;
    }
}

/* Business briefcase icon badge */
.star-card-business-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(15, 14, 21, 0.85);
    border: 1px solid var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    font-size: 11px;
    box-shadow: 0 0 8px rgba(255, 0, 127, 0.4);
    z-index: 2;
    transition: var(--transition);
}

.star-card:hover .star-card-business-badge {
    transform: scale(1.1);
    background: var(--pink);
    color: var(--white);
    box-shadow: 0 0 12px rgba(255, 0, 127, 0.6);
}

/* Fast response lightning icon badge */
.star-card-fast-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(15, 14, 21, 0.85);
    border: 1px solid #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 11px;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
    z-index: 2;
    transition: var(--transition);
}

.star-card-fast-badge i {
    transform: translateY(0.5px);
}

.star-card:hover .star-card-fast-badge {
    transform: scale(1.1);
    background: #ffd700;
    color: var(--bg-dark);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

/* Offset fast badge if business badge is also present on the same card */
.star-card-business-badge ~ .star-card-fast-badge {
    top: 42px;
}

/* Premium User Reviews Section styling */
.sheet-reviews-section {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
    margin-bottom: 24px; /* Space out last review card from submit button */
}

.review-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px;
    transition: var(--transition);
}

.review-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 0, 127, 0.2);
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.review-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
}

.review-stars {
    font-size: 12px;
    font-weight: 800;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-stars i {
    color: #ffd700;
    text-shadow: 0 0 6px rgba(255, 215, 0, 0.3);
}

.review-text {
    font-size: 12.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
}

/* Floating Bottom Search Drawer */
.bottom-search-drawer {
    position: fixed;
    bottom: -80px; /* Initially hidden below screen */
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(15, 14, 21, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 989; /* Directly underneath bottom-nav (z-index 990) */
}

.bottom-search-drawer.active {
    bottom: 60px; /* Slides up to sit exactly on top of bottom navigation menu (height 60px) */
}

.bottom-search-drawer .search-bar-container {
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    transition: var(--transition);
}

.bottom-search-drawer .search-bar-container:focus-within {
    border-color: var(--pink);
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.2);
    background: rgba(255, 255, 255, 0.07);
}

.bottom-search-drawer .search-icon {
    color: var(--text-muted);
    font-size: 16px;
    margin-right: 12px;
}

.bottom-search-drawer input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 15px;
    width: 100%;
    font-family: var(--font-primary);
}

.bottom-search-drawer input::placeholder {
    color: var(--text-muted);
}

/* Custom Unread Inbox Card Status */
.inbox-card-status.neprocitana {
    background: rgba(255, 215, 0, 0.1) !important;
    color: #ffd700 !important;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Auth & Loader Container */
.auth-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000; /* Pure black background */
    z-index: 99999; /* Higher than everything else */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

.auth-container.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Loader Spinner Content */
.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.logo-large {
    font-size: 38px;
    text-shadow: 0 0 20px rgba(255, 0, 127, 0.6);
    margin-bottom: 8px;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 0, 127, 0.1);
    border-top: 3px solid var(--pink);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.2);
}

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

/* Password Gate Content */
.password-gate-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 90%;
    max-width: 380px;
    text-align: center;
    animation: fadeIn 0.5s ease forwards;
}

.gate-subtitle {
    font-size: 13.5px;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 8px;
    line-height: 1.5;
}

.password-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.card-lock-icon {
    font-size: 28px;
    color: var(--pink);
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.3);
    margin-bottom: 4px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--white);
    font-size: 15px;
    font-family: var(--font-primary);
    text-align: center;
    transition: var(--transition);
}

.input-group input:focus {
    outline: none;
    border-color: var(--pink);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 12px rgba(255, 0, 127, 0.2);
}

.gate-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff007f 0%, #a200ff 100%);
    border: none;
    border-radius: 12px;
    padding: 12px;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-primary);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
    transition: var(--transition);
}

.gate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 127, 0.5);
}

.gate-error-msg {
    font-size: 13px;
    color: #ff3b30;
    font-weight: 500;
    margin: 0;
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Hot Fire Badge and Stacking rules */
.star-card-hot-badge {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10;
    background: rgba(255, 69, 0, 0.25) !important;
    border: 1px solid rgba(255, 69, 0, 0.5) !important;
    color: #ff4500 !important;
    text-shadow: 0 0 5px rgba(255, 69, 0, 0.7);
}

/* Double and triple badge stacking positioning */
.star-card-business-badge ~ .star-card-fast-badge {
    top: 42px;
}
.star-card-business-badge ~ .star-card-hot-badge {
    top: 42px;
}
.star-card-fast-badge ~ .star-card-hot-badge {
    top: 42px;
}
.star-card-business-badge ~ .star-card-fast-badge ~ .star-card-hot-badge {
    top: 74px;
}

/* Hot stat badge inside sheet details panel */
.stat-item.hot-stat {
    background: rgba(255, 69, 0, 0.1) !important;
    border: 1px solid rgba(255, 69, 0, 0.2) !important;
    color: #ff4500 !important;
}
.stat-item.hot-stat i {
    color: #ff4500 !important;
    text-shadow: 0 0 8px rgba(255, 69, 0, 0.5);
}
