/* Birthday Info Plugin - Professional US Market Styling - Enhanced UX Version */

/* Reset and Base Styles */
.bc-celebrity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.bc-celebrity-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 25px;
    object-fit: cover;
    border: 4px solid #e1e8ed;
    transition: border-color 0.3s ease;
}

.bc-celebrity-card:hover .bc-celebrity-image {
    border-color: #667eea;
}

.bc-celebrity-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    font-weight: 700;
}

.bc-celebrity-name {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.bc-celebrity-known-for {
    color: #6c757d;
    font-size: 1rem;
}

/* Movie Grid */
.bc-movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.bc-movie-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
    border-left: 3px solid #667eea;
    transition: all 0.3s ease;
}

.bc-movie-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #764ba2;
}

/* APOD Section */
.bc-apod-container {
    text-align: center;
}

.bc-apod-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.bc-apod-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.bc-apod-explanation {
    color: #6c757d;
    line-height: 1.7;
    text-align: left;
    font-size: 1.1rem;
}

/* Certificate Actions */
.bc-certificate-actions {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px;
    border-radius: 20px;
    margin-top: 50px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.bc-certificate-actions h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
}

.bc-certificate-actions p {
    color: #6c757d;
    margin-bottom: 40px;
    font-size: 1.3rem;
}

/* Certificate Sections */
.bc-certificate-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.bc-free-certificate {
    border-color: #27ae60;
}

.bc-premium-certificate {
    border-color: #667eea;
    position: relative;
}

.bc-premium-certificate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, transparent 100%);
    border-radius: 13px;
    pointer-events: none;
}

.bc-certificate-section > * {
    position: relative;
    z-index: 2;
}

.bc-certificate-section h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
}

.bc-price-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: auto;
    font-weight: 600;
}

/* Custom Message Form */
.bc-custom-message-form {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #e1e8ed;
}

.bc-payment-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #667eea;
}

.bc-certificate-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

#bc-certificate-preview {
    background: white;
    border-radius: 20px;
    margin-top: 40px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Animation Classes */
.bc-fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.bc-slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Processing States */
.bc-processing {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.bc-processing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: inherit;
    z-index: 10;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bc-birthdayinfo-container {
        padding: 15px;
    }
    
    .bc-birthdayinfo-header {
        padding: 40px 25px;
    }
    
    .bc-birthdayinfo-header h1 {
        font-size: 2.5rem;
    }
    
    .bc-intro-text {
        font-size: 1.1rem;
    }
    
    .bc-form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    #bc-birthdayinfo-form {
        padding: 35px;
    }
    
    .bc-core-facts,
    .bc-age-details,
    .bc-celebrity-grid {
        grid-template-columns: 1fr;
    }
    
    .bc-certificate-buttons,
    .bc-social-share-buttons,
    .bc-custom-buttons,
    .bc-preview-actions,
    .bc-download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .bc-certificate-buttons .button,
    .bc-social-share-buttons .button,
    .bc-custom-buttons .button,
    .bc-preview-actions .button,
    .bc-download-buttons .button {
        width: 100%;
        max-width: 320px;
    }
    
    .bc-list-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .bc-list-year {
        min-width: auto;
    }
    
    .bc-results-main-title {
        font-size: 2.2rem;
    }
    
    .bc-certificate-actions {
        padding: 25px;
    }
    
    .bc-certificate-section {
        padding: 20px;
    }
    
    .bc-step-message,
    .bc-step-preview,
    .bc-step-complete {
        padding: 20px;
    }
    
    .bc-certificate-preview-container {
        padding: 15px;
        max-height: 400px;
    }
    
    .bc-preview-actions {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .bc-birthdayinfo-header h1 {
        font-size: 2rem;
    }
    
    .bc-result-section {
        padding: 30px 25px;
    }
    
    .bc-age-number {
        font-size: 2.2rem;
    }
    
    .bc-certificate-actions {
        padding: 35px 25px;
    }
    
    .bc-step-message,
    .bc-step-preview,
    .bc-step-complete {
        padding: 15px;
    }
    
    .bc-certificate-preview-container {
        padding: 10px;
        max-height: 300px;
    }
}-birthdayinfo-container * {
    box-sizing: border-box;
}

/* Main Container */
.bc-birthdayinfo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
}

/* Header Styling */
.bc-birthdayinfo-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.bc-birthdayinfo-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.bc-birthdayinfo-header > * {
    position: relative;
    z-index: 2;
}

.bc-birthdayinfo-header h1 {
    font-size: 3.5rem;
    margin: 0 0 20px 0;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.bc-intro-text {
    font-size: 1.3rem;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 700px;
}

/* Form Styling */
#bc-birthdayinfo-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.bc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.bc-input-group {
    position: relative;
}

.bc-input-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.bc-input-group label .dashicons {
    color: #667eea;
    font-size: 20px;
}

.bc-input-group input[type="text"],
.bc-input-group input[type="date"],
.bc-input-group textarea {
    width: 100%;
    padding: 20px 24px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-family: inherit;
}

.bc-input-group input:focus,
.bc-input-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.bc-input-group small {
    display: block;
    margin-top: 8px;
    color: #6c757d;
    font-size: 0.9rem;
    font-style: italic;
}

/* NEW: Field Error Styling */
.bc-field-error {
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideDown 0.3s ease-out;
}

.bc-field-error.bc-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.bc-field-error.bc-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 1px solid #c3e6cb;
}

.bc-field-error-highlight {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1) !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 100px;
    }
}

/* Character Counter */
.bc-char-counter {
    float: right;
    font-weight: 600;
    color: #667eea;
}

.bc-char-counter.bc-over-limit {
    color: #e74c3c;
}

/* Button Styling */
.button, #bc-birthdayinfo-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    min-height: 60px;
}

#bc-birthdayinfo-submit {
    width: 100%;
    font-size: 1.3rem;
    padding: 22px 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.button:hover, #bc-birthdayinfo-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: white;
}

.button:active, #bc-birthdayinfo-submit:active {
    transform: translateY(-1px);
}

.button:disabled, #bc-birthdayinfo-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.button-secondary {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    box-shadow: 0 8px 25px rgba(149, 165, 166, 0.3);
}

.button-secondary:hover {
    background: linear-gradient(135deg, #7f8c8d 0%, #6c7b7d 100%);
    box-shadow: 0 15px 35px rgba(149, 165, 166, 0.4);
    color: white;
}

/* NEW: Enhanced Custom Certificate Workflow Styling */
.bc-custom-certificate-workflow {
    margin-top: 20px;
}

.bc-custom-step {
    transition: all 0.4s ease;
    opacity: 1;
}

.bc-custom-step[style*="display: none"] {
    opacity: 0;
    transform: translateY(-20px);
}

.bc-step-message {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #e1e8ed;
    transition: all 0.3s ease;
}

.bc-step-message:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.bc-step-preview {
    background: linear-gradient(135deg, #e8f4fd 0%, #d6ebf7 100%);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.bc-step-complete {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #27ae60;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.2);
}

.bc-preview-header {
    margin-bottom: 20px;
}

.bc-preview-header h5 {
    font-size: 1.4rem;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bc-certificate-preview-container {
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 2px solid #e1e8ed;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-height: 600px;
    overflow-y: auto;
}

.bc-preview-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.bc-success-message {
    text-align: center;
    margin-bottom: 20px;
}

.bc-success-message h5 {
    font-size: 1.5rem;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bc-download-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.bc-custom-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* NEW: Social Media Buttons */
.bc-social-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.button-social {
    min-width: 180px;
    padding: 15px 25px;
    font-size: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
}

.button-facebook {
    background: linear-gradient(135deg, #1877f2 0%, #4267B2 100%);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.3);
}

.button-facebook:hover {
    background: linear-gradient(135deg, #166fe5 0%, #365899 100%);
    box-shadow: 0 12px 30px rgba(24, 119, 242, 0.4);
    color: white;
}

.button-twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.3);
}

.button-twitter:hover {
    background: linear-gradient(135deg, #0d8bd9 0%, #0c7abf 100%);
    box-shadow: 0 12px 30px rgba(29, 161, 242, 0.4);
    color: white;
}

.button-linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.3);
}

.button-linkedin:hover {
    background: linear-gradient(135deg, #005885 0%, #004e75 100%);
    box-shadow: 0 12px 30px rgba(0, 119, 181, 0.4);
    color: white;
}

.button-email {
    background: linear-gradient(135deg, #ea4335 0%, #d33b2c 100%);
    box-shadow: 0 6px 20px rgba(234, 67, 53, 0.3);
}

.button-email:hover {
    background: linear-gradient(135deg, #d33b2c 0%, #b52d20 100%);
    box-shadow: 0 12px 30px rgba(234, 67, 53, 0.4);
    color: white;
}

/* Results Area */
.bc-results-area {
    margin-top: 50px;
}

/* Loading Spinner */
.bc-spinner {
    text-align: center;
    padding: 80px;
}

.bc-spinner-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    border: 6px solid rgba(102, 126, 234, 0.1);
    border-top: 6px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 30px;
}

.bc-spinner p {
    color: #667eea;
    font-weight: 600;
    font-size: 1.2rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Results Title */
.bc-results-main-title {
    text-align: center;
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Results Content */
.bc-results-content {
    display: grid;
    gap: 40px;
    margin-top: 30px;
}

.bc-result-section {
    background: white;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #667eea;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bc-result-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.bc-result-section > * {
    position: relative;
    z-index: 2;
}

.bc-result-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.bc-result-section h3 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bc-result-section h3 .dashicons {
    color: #667eea;
    font-size: 1.5rem;
    width: 35px;
    text-align: center;
}

/* Core Facts Grid */
.bc-core-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.bc-fact-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #667eea;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bc-fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
    z-index: 1;
}

.bc-fact-card > * {
    position: relative;
    z-index: 2;
}

.bc-fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-left-color: #764ba2;
}

.bc-fact-label {
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 10px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bc-fact-value {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.3;
}

/* Age Details */
.bc-age-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bc-age-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bc-age-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
}

.bc-age-card > * {
    position: relative;
    z-index: 2;
}

.bc-age-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
}

.bc-age-number {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 15px 0 15px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
}

.bc-age-label {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Milestones Grid */
.bc-milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.bc-milestone-card {
    background: white;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.bc-milestone-card.bc-milestone-upcoming {
    border-color: #e74c3c;
    background: linear-gradient(135deg, #fff5f5 0%, #ffeaea 100%);
}

.bc-milestone-card.bc-milestone-passed {
    border-color: #27ae60;
    background: linear-gradient(135deg, #f0f9f4 0%, #e8f5e8 100%);
    opacity: 0.8;
}

.bc-milestone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bc-milestone-title {
    font-weight: 700;
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.bc-milestone-date {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 12px;
}

.bc-milestone-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Lists */
.bc-list-item {
    padding: 25px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.3s ease;
}

.bc-list-item:last-child {
    border-bottom: none;
}

.bc-list-item:hover {
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    padding: 25px 20px;
    margin: 0 -20px;
}

.bc-list-year {
    font-weight: 700;
    color: #667eea;
    min-width: 90px;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.bc-list-content {
    flex: 1;
    line-height: 1.7;
    color: #2c3e50;
    font-size: 1.1rem;
}

/* Celebrity Cards */
.bc-celebrity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bc-celebrity-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.bc