/* celebrity-merchant-link-up Website - The Bash Inspired Design */
:root {
    --primary-color: #FF6B6B;
    --primary-dark: #E55A5A;
    --secondary-color: #4ECDC4;
    --accent-color: #FFE66D;
    --purple-accent: #A8E6CF;
    --orange-accent: #FF8B94;
    --success-color: #4ECDC4;
    --error-color: #FF6B6B;
    --warning-color: #FFE66D;
    --background-color: #F7F9FC;
    --card-background: #ffffff;
    --text-primary: #2D3748;
    --text-secondary: #718096;
    --border-color: #E2E8F0;
    --border-radius: 16px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-colored: 0 10px 15px -3px rgba(255, 107, 107, 0.1), 0 4px 6px -2px rgba(255, 107, 107, 0.05);
    --gradient-primary: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    --gradient-secondary: linear-gradient(135deg, #FFE66D 0%, #FF8B94 100%);
    --gradient-accent: linear-gradient(135deg, #A8E6CF 0%, #4ECDC4 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #F7F9FC 0%, #EDF2F7 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 107, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-colored);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand a {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.user-greeting {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--gradient-accent);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 2px solid transparent;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        border-left: 1px solid rgba(255, 107, 107, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 107, 107, 0.1);
    }
    
    .user-greeting {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
    
    .navbar .container {
        padding: 1rem 20px;
    }
    
    /* Close menu when clicking outside */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99;
        display: none;
    }
    
    .nav-overlay.active {
        display: block;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(255, 230, 109, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 230, 109, 0.4);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 30px;
}

.btn-small {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
}

.btn-full {
    width: 100%;
}

/* Flash Messages */
.flash-message {
    padding: 1.25rem 1.5rem;
    margin: 1rem 0;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
}

.flash-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: currentColor;
    opacity: 0.3;
}

.flash-success {
    background: linear-gradient(135deg, #4ECDC4, #A8E6CF);
    color: white;
}

.flash-error {
    background: linear-gradient(135deg, #FF6B6B, #FF8B94);
    color: white;
}

.flash-warning {
    background: linear-gradient(135deg, #FFE66D, #FFCC02);
    color: var(--text-primary);
}

.flash-info {
    background: linear-gradient(135deg, #74C0FC, #339AF0);
    color: white;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-60px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: linear-gradient(45deg, #f8f9fa 0%, #ffffff 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--gradient-secondary);
    color: white;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    background: rgba(255, 230, 109, 0.1);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.pricing-card li {
    padding: 0.8rem 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Celebrities Section */
.celebrities {
    padding: 5rem 0;
    background: linear-gradient(45deg, #f8f9fa 0%, #ffffff 100%);
}

.celebrities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.celebrity-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f1f5f9;
}

.celebrity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.celebrity-card:hover::before {
    transform: scaleX(1);
}

.celebrity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.celebrity-image {
    height: 250px;
    background: var(--background-color);
    overflow: hidden;
    position: relative;
}

.celebrity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.celebrity-card:hover .celebrity-image img {
    transform: scale(1.05);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: 700;
}

.placeholder-image.large {
    height: 300px;
    font-size: 4rem;
}

.celebrity-info {
    padding: 2rem;
}

.celebrity-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.celebrity-bio {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.celebrity-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.celebrity-actions {
    display: flex;
    gap: 0.5rem;
}

.celebrity-actions .btn {
    flex: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--gradient-secondary);
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Call to Action Section */
.cta {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
}

.cta-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.cta-stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Auth Pages */
.auth-section {
    padding: 3rem 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f5f9 100%);
    display: flex;
    align-items: center;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.auth-visual {
    position: relative;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    padding: 4rem 3rem;
    color: white;
    overflow: hidden;
}

.auth-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="20" cy="20" r="2"/></g></svg>') repeat;
    animation: float 20s infinite linear;
}

.auth-visual-content {
    position: relative;
    z-index: 2;
}

.auth-visual h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.auth-visual p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auth-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.auth-feature-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-form-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.auth-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid #f1f5f9;
    position: relative;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.error-messages {
    margin-bottom: 2rem;
}

.error-message {
    background: linear-gradient(135deg, #FF6B6B, #FF8B94);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.auth-form {
    margin-bottom: 2rem;
}

.btn-full {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-loading {
    display: none;
}

.loading .btn span:first-child {
    display: none;
}

.loading .btn-loading {
    display: inline;
}

.auth-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.auth-footer p {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-footer a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.forgot-link {
    font-size: 0.95rem;
}

.admin-info {
    background: rgba(255, 230, 109, 0.1);
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
}

.admin-info-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.admin-icon {
    font-size: 1.5rem;
}

.admin-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.admin-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.demo-credentials {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.credential-item strong {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.credential-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.credential-details span {
    background: var(--background-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.fee-notice {
    background: linear-gradient(135deg, rgba(255, 230, 109, 0.1), rgba(255, 204, 2, 0.1));
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.fee-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.fee-icon {
    font-size: 1.8rem;
}

.fee-notice h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.fee-notice p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.fee-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.fee-benefits span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .auth-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .auth-visual {
        order: 2;
        padding: 2rem;
    }
    
    .auth-visual h2 {
        font-size: 2rem;
    }
    
    .auth-form-container {
        order: 1;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        min-width: 200px;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        gap: 2rem;
    }
}

.auth-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--card-background);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    background: white;
    transform: translateY(-2px);
}

.form-group input.readonly {
    background-color: var(--background-color);
    cursor: not-allowed;
    opacity: 0.7;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-help {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    line-height: 1.4;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.error-messages {
    margin-bottom: 1.5rem;
}

.error-message {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Fee Notice */
.fee-notice {
    background: linear-gradient(135deg, var(--accent-color), #f97316);
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    text-align: center;
}

.fee-notice h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Payment Info */
.payment-info {
    padding: 4rem 0;
    background: white;
}

.payment-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-background);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Celebrity Profile */
.celebrity-profile {
    padding: 2rem 0;
}

.profile-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    background: var(--card-background);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.profile-image {
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.profile-bio {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Booking Options */
.booking-options {
    margin-bottom: 3rem;
}

.booking-grid {
    display: grid;
    gap: 2rem;
}

.booking-card {
    background: var(--card-background);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-2px);
}

.booking-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.booking-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.booking-features ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.booking-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.booking-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Vacation Packages */
.vacation-packages {
    grid-column: 1 / -1;
    background: var(--background-color);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.vacation-packages h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.vacation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.vacation-option {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
}

.vacation-option.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.vacation-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

/* Additional Info */
.additional-info {
    margin-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--card-background);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-card ol,
.info-card ul {
    padding-left: 1.2rem;
}

.info-card li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* Tables */
.bookings-table,
.admin-table {
    background: var(--card-background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.bookings-table table,
.admin-table table {
    width: 100%;
    border-collapse: collapse;
}

.bookings-table th,
.bookings-table td,
.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.bookings-table th,
.admin-table th {
    background: var(--background-color);
    font-weight: 600;
    color: var(--text-primary);
}

/* Status Badges */
.status,
.payment-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending,
.payment-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-confirmed,
.payment-paid {
    background: #d1fae5;
    color: #065f46;
}

.status-cancelled,
.payment-failed {
    background: #fee2e2;
    color: #991b1b;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="20" cy="20" r="1.5"/></g></svg>') repeat;
    animation: float 30s infinite linear;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-section h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-grid,
    .celebrities-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .booking-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Admin Payment Styles */
.payment-type {
    font-weight: 500;
}

.payment-type i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.invoice-id {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    background: #f8fafc;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.tx-ref {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    background: #f0f9ff;
    color: #0369a1;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid #bae6fd;
}

.no-ref {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.9rem;
}

.warning-note {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    color: #991b1b;
    font-size: 0.9rem;
}

.warning-note i {
    color: #dc2626;
    margin-right: 0.5rem;
}

/* Payment Page Styles */
.payment-section {
    min-height: 100vh;
    background: var(--background-color);
    padding: 8rem 0 4rem;
}

.payment-container {
    max-width: 800px;
    margin: 0 auto;
}

.payment-header {
    text-align: center;
    margin-bottom: 3rem;
}

.payment-header h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.payment-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.payment-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.payment-summary h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    border-top: 2px solid var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1rem;
    padding-top: 1rem;
}

.crypto-payment h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.crypto-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.wallet-section {
    margin-bottom: 2rem;
}

.wallet-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.wallet-address {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.wallet-address input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    background: #f8fafc;
    color: var(--text-primary);
}

.btn-copy {
    padding: 1rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-copy:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.amount-section {
    margin-bottom: 2rem;
}

.amount-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.amount-display {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.amount-value {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.amount-display small {
    opacity: 0.9;
}

.payment-instructions {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.payment-instructions h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.payment-instructions ol {
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.payment-instructions li {
    margin-bottom: 0.5rem;
}

.transaction-submission h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.transaction-form .form-group {
    margin-bottom: 1.5rem;
}

.transaction-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.transaction-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.transaction-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-help {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.payment-help h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.help-item {
    text-align: center;
    padding: 1rem;
}

.help-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.help-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.help-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.help-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.help-item a:hover {
    text-decoration: underline;
}

/* Responsive Design for Payment Page */
@media (max-width: 768px) {
    .payment-section {
        padding: 6rem 0 2rem;
    }
    
    .payment-header h1 {
        font-size: 2rem;
    }
    
    .payment-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .wallet-address {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .wallet-address input {
        font-size: 0.8rem;
    }
    
    .btn-copy {
        width: 100%;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .amount-value {
        font-size: 1.5rem;
    }
}

/* Loading and Animation States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* ============================================================
   Celebrities Browse Page
   ============================================================ */

/* Hero */
.browse-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.browse-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></g></svg>') repeat;
    animation: float 25s infinite linear;
}

.browse-hero-content {
    position: relative;
    z-index: 2;
}

.browse-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.browse-hero-content > p {
    font-size: 1.15rem;
    opacity: 0.92;
    margin-bottom: 2rem;
}

/* Search Bar */
.browse-search-wrapper {
    display: flex;
    justify-content: center;
}

.browse-search-bar {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 540px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    padding: 0 1.25rem;
    transition: background 0.3s, border-color 0.3s;
}

.browse-search-bar:focus-within {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
}

.search-icon {
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-right: 0.75rem;
}

.browse-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 0;
    min-width: 0;
}

.browse-search-input::placeholder {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
}

.search-clear-btn {
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    color: white;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}

.search-clear-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Filter Bar */
.browse-filter-bar {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 0.85rem 0;
    position: sticky;
    top: 65px;
    z-index: 90;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.filter-chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 2px solid var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-chip:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-chip.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.results-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    white-space: nowrap;
}

/* Browse Grid Section */
.browse-celebrities {
    padding: 3rem 0 5rem;
    background: linear-gradient(135deg, #f7f9fc 0%, #edf2f7 100%);
}

.browse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 2rem;
}

/* Browse Card */
.browse-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.browse-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

/* Card Image */
.browse-card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: var(--background-color);
    border-radius: 20px 20px 0 0;
}

.browse-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.browse-card:hover .browse-card-image img {
    transform: scale(1.06);
}

.browse-placeholder-image {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    font-weight: 800;
}

.featured-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.45);
}

/* Card Body */
.browse-card-body {
    padding: 1.35rem 1.35rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-name-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.card-celebrity-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.25;
    margin: 0;
}

.card-celebrity-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.card-celebrity-name a:hover {
    color: var(--primary-color);
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    font-size: 0.95rem;
    font-weight: 700;
    color: #374151;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.star-icon {
    flex-shrink: 0;
}

.card-category {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0 0 0.85rem;
}

/* Meta */
.card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.meta-item svg {
    flex-shrink: 0;
    color: var(--text-secondary);
}

.price-meta {
    color: #2563eb;
}

.price-meta svg {
    color: #2563eb;
}

.price-text {
    font-weight: 700;
    font-size: 0.95rem;
    color: #2563eb;
}

/* Action Buttons */
.card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: auto;
}

.card-actions-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
}

.btn-browse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 0.75rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn-browse-book {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.btn-browse-book:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn-browse-donate {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    border-color: transparent;
}

.btn-browse-donate:hover {
    background: linear-gradient(135deg, #d97706, #ea580c);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-browse-fancard {
    background: transparent;
    color: #2563eb;
    border-color: #2563eb;
    width: 100%;
}

.btn-browse-fancard:hover {
    background: #eff6ff;
    transform: translateY(-2px);
}

/* No Results */
.browse-no-results {
    text-align: center;
    padding: 5rem 1rem;
    color: var(--text-secondary);
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.browse-no-results h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.browse-no-results p {
    margin-bottom: 2rem;
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    z-index: 200;
    transition: transform 0.2s, box-shadow 0.2s;
}

.back-to-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

/* Responsive – Browse Page */
@media (max-width: 900px) {
    .browse-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .browse-hero-content h1 {
        font-size: 2rem;
    }

    .browse-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .browse-card-image {
        height: 220px;
    }

    .filter-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-right {
        align-self: flex-end;
    }

    .back-to-top-btn {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 42px;
        height: 42px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   DONATION & FAN CARD MULTI-STEP FLOW
   ═══════════════════════════════════════════════════════════════ */

/* Shared flow section */
.flow-section {
    padding: 3rem 0 5rem;
    min-height: 100vh;
    background: linear-gradient(135deg, #F7F9FC 0%, #EDF2F7 100%);
}

.flow-section .container {
    max-width: 760px;
}

/* Flow header */
.flow-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.flow-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.2rem;
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.35);
}

.fancard-header .flow-icon,
.fancard-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.35);
}

.flow-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.flow-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Step indicator bar */
.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.flow-step .step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #a0aec0;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.flow-step span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #a0aec0;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.flow-step.active .step-circle {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    transform: scale(1.1);
}

.flow-step.active span {
    color: var(--primary-color);
}

.flow-step.completed .step-circle {
    background: var(--secondary-color);
    color: white;
}

.flow-step.completed .step-circle::after {
    content: '✓';
}

.flow-step.completed .step-circle { font-size: 0; }
.flow-step.completed .step-circle::after { font-size: 1rem; }

.flow-step-connector {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    margin: 0 0.5rem;
    margin-bottom: 1.4rem;
    min-width: 40px;
    max-width: 80px;
    transition: background 0.3s;
}

/* Fan card steps use purple accent */
.fancard-header ~ .flow-steps .flow-step.active .step-circle {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.fancard-header ~ .flow-steps .flow-step.active span {
    color: #667eea;
}

/* Flow card (step container) */
.flow-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.flow-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

/* Section titles inside flow cards */
.form-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section-title:first-child { margin-top: 0; }

.form-section-title i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.optional-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 0.25rem;
}

.required-star {
    color: var(--primary-color);
}

/* Amount preset buttons */
.amount-presets {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.amount-btn {
    padding: 0.65rem 1.4rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    color: var(--text-primary);
}

.amount-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.amount-btn.selected {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.35);
}

/* Celebrity banner */
.celebrity-banner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: linear-gradient(135deg, #fff5f5, #fff0f3);
    border: 1.5px solid rgba(255, 107, 107, 0.2);
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 1.8rem;
}

.fancard-banner {
    background: linear-gradient(135deg, #f0f0ff, #f5f0ff);
    border-color: rgba(102, 126, 234, 0.2);
}

.celebrity-banner-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.celebrity-banner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.celebrity-banner-info p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 0.15rem;
}

.celebrity-banner-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.celebrity-banner-cause {
    font-size: 0.82rem !important;
    color: var(--text-secondary) !important;
}

/* Cause (donation type) cards */
.charity-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #2f855a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f0fff4, #e6ffed);
    border-radius: 10px;
}

.cause-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.cause-card {
    cursor: pointer;
    display: block;
}

.cause-card input[type="radio"] {
    display: none;
}

.cause-card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 14px;
    background: white;
    transition: all 0.25s ease;
}

.cause-card:hover .cause-card-content {
    border-color: var(--secondary-color);
    background: #f0fff4;
}

.cause-card.selected .cause-card-content {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #f0fff4, #e6ffed);
    box-shadow: 0 3px 10px rgba(78, 205, 196, 0.2);
}

.cause-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 44px;
    text-align: center;
}

.cause-details { flex: 1; }

.cause-details h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.cause-details p {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.cause-radio-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
    transition: all 0.25s ease;
    position: relative;
}

.cause-card.selected .cause-radio-indicator {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
}

.cause-card.selected .cause-radio-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* Fan card plan preview chips (step 1) */
.plan-preview-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.plan-preview-chip {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: white;
    color: var(--text-primary);
}

.plan-preview-chip:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-1px);
}

.plan-preview-chip.selected,
.plan-preview-chip.popular-chip {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.plan-preview-chip.selected {
    background: linear-gradient(135deg, #764ba2, #667eea);
}

.plan-preview-price {
    font-size: 0.78rem;
    opacity: 0.85;
    font-weight: 500;
}

.plan-preview-hint {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Fan card plan section title */
.plan-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #553c9a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f5f0ff, #ede9fe);
    border-radius: 10px;
}

/* Plans grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.plan-card {
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
    display: block;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.plan-card.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #f5f0ff, #ede9fe);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.25);
}

.plan-card.plan-popular {
    border-color: #667eea;
}

.plan-popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 0 0 10px 10px;
    white-space: nowrap;
}

.plan-icon {
    font-size: 2rem;
    margin-bottom: 0.6rem;
    margin-top: 0.6rem;
}

.plan-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 1rem;
}

.plan-price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.plan-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 1rem;
}

.plan-features li {
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding: 0.3rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.plan-features li i {
    color: var(--secondary-color);
    font-size: 0.75rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.plan-select-indicator {
    font-size: 0.8rem;
    font-weight: 600;
    color: #a0aec0;
    padding: 0.4rem 1rem;
    border: 1.5px dashed #e2e8f0;
    border-radius: 20px;
    transition: all 0.25s ease;
}

.plan-card.selected .plan-select-indicator {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
    color: white;
}

/* Payment summary box */
.payment-summary-box {
    background: linear-gradient(135deg, #fff9f0, #fff5eb);
    border: 1.5px solid rgba(255, 107, 107, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.8rem;
}

.fancard-summary {
    background: linear-gradient(135deg, #f5f0ff, #ede9fe);
    border-color: rgba(102, 126, 234, 0.2);
}

.payment-summary-header {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fancard-summary-header {
    color: #667eea;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.93rem;
}

.summary-row:last-child { border-bottom: none; }

.summary-row span { color: var(--text-secondary); }
.summary-row strong { color: var(--text-primary); font-weight: 600; }

.summary-row.total {
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    border-top: 2px solid rgba(255, 107, 107, 0.2);
    border-bottom: none;
}

.summary-row.total span { font-weight: 700; color: var(--text-primary); font-size: 1rem; }
.summary-row.total strong { font-size: 1.15rem; color: var(--primary-color); }

.fancard-summary .summary-row.total {
    border-top-color: rgba(102, 126, 234, 0.25);
}

.fancard-summary .summary-row.total strong { color: #667eea; }

/* Donate & fancard submit buttons */
.btn-donate {
    background: linear-gradient(135deg, #FF6B6B, #FF8B94);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-donate:hover {
    background: linear-gradient(135deg, #e55a5a, #e57280);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    color: white;
}

.btn-fancard {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-fancard:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a3f96);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Step navigation row */
.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    gap: 1rem;
}

.step-actions .btn { gap: 0.5rem; }

/* Success screen */
.flow-success {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
}

.flow-success .success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.35);
}

.flow-success .success-icon.fancard-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
}

.flow-success h1 {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.flow-success > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.success-details {
    background: #f8fafc;
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.success-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 0;
    border-bottom: 1px solid #edf2f7;
    font-size: 0.93rem;
}

.success-row:last-child { border-bottom: none; }
.success-row span { color: var(--text-secondary); }
.success-row strong { color: var(--text-primary); font-weight: 600; }

.success-row.total {
    border-top: 2px solid #e2e8f0;
    border-bottom: none;
    padding-top: 0.75rem;
}

.success-row.total strong { font-size: 1.15rem; color: var(--primary-color); }

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Crypto instructions */
.crypto-instructions {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 1.5px solid rgba(255, 204, 0, 0.3);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.crypto-instructions h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.crypto-instructions p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.wallet-address {
    font-family: monospace;
    font-size: 0.85rem;
    background: white;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    word-break: break-all;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.crypto-note {
    font-size: 0.82rem !important;
    color: var(--text-secondary);
}

.crypto-note a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

/* FAQ section */
.flow-faq {
    background: white;
    border-radius: 20px;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
}

.flow-faq h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flow-faq h3 i { color: var(--text-secondary); }

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
    padding: 1rem 0;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
    user-select: none;
}

.faq-question:hover { color: var(--primary-color); }

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.faq-answer {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.faq-answer.open {
    max-height: 200px;
    padding-bottom: 1rem;
}

/* Donate / Fan Card buttons used on celebrity cards etc. */
.btn-donate-sm {
    background: linear-gradient(135deg, #FF6B6B, #FF8B94);
    color: white !important;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3);
    border: none;
}

.btn-donate-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    color: white !important;
}

.btn-fancard-sm {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white !important;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
    border: none;
}

.btn-fancard-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white !important;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .flow-section .container { max-width: 100%; }

    .flow-card { padding: 1.5rem; }

    .flow-header h1 { font-size: 1.6rem; }

    .flow-step span { display: none; }

    .flow-step-connector { min-width: 20px; }

    .plans-grid { grid-template-columns: 1fr 1fr; }

    .step-actions {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }

    .step-actions .btn { width: 100%; justify-content: center; }

    .celebrity-banner { flex-direction: column; text-align: center; }

    .amount-presets { justify-content: center; }

    .success-actions { flex-direction: column; }
    .success-actions .btn { width: 100%; justify-content: center; }

    .flow-faq { padding: 1.5rem; }
}

@media (max-width: 480px) {
    .plans-grid { grid-template-columns: 1fr; }
    .plan-preview-strip { justify-content: center; }
}

/* ── Donate / Fan Card CTA strip on celebrity profile ── */
.donate-fancard-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cta-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: white;
    border-radius: 18px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    border: 1.5px solid #f1f5f9;
    transition: all 0.3s ease;
}

.donate-cta-card {
    border-top: 4px solid var(--primary-color);
}

.fancard-cta-card {
    border-top: 4px solid #667eea;
}

.cta-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.cta-card-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.cta-card-body { flex: 1; }

.cta-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.cta-card-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .donate-fancard-cta {
        grid-template-columns: 1fr;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
    }

    .cta-card .btn { width: 100%; justify-content: center; }
}