.main-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    min-height: 80vh;
    padding: 40px 20px;
}

/* Enhanced title styling */
.main-content h1 {
    font-size: 3rem;
    color: #000;
    margin-bottom: 40px;
    text-shadow: 
        2px 2px 0px rgba(255,255,255,0.8),
        4px 4px 0px rgba(0,0,0,0.3);
    position: relative;
    z-index: 10;
    text-align: center;
}

/* No Events Message - Skeuomorphic */
.no-events-message {
    background: linear-gradient(145deg, #f9fafb, #f3f4f6);
    border: 2px solid #d4d4d4;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 
        0 6px 12px rgba(0,0,0,0.12),
        inset 0 2px 4px rgba(255,255,255,0.8),
        inset 0 -2px 4px rgba(0,0,0,0.08);
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.no-events-message::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0.5), rgba(255,255,255,0.9));
    border-radius: 16px 16px 0 0;
}

.no-events-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    opacity: 0.7;
}

.no-events-message h2 {
    font-size: 2rem;
    color: #374151;
    margin: 0 0 15px 0;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

.no-events-message p {
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

/* Removed all chat-related styles */

/* Removed floating particles styles */

/* Glowing border effect */
.main-content {
    position: relative;
}

.main-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(255,255,255,0.6), rgba(0,0,0,0.06));
    background-size: 100% 100%;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.15;
}

/* Removed glowingBorder animation */

/* Scanlines effect */
.main-content {
    position: relative;
}

.main-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 4px
    );
    pointer-events: none;
    z-index: 1;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-content h1 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .no-events-message {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .no-events-icon {
        font-size: 3rem;
    }
    
    .no-events-message h2 {
        font-size: 1.5rem;
    }
    
    .no-events-message p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-content h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .no-events-message {
        padding: 25px 15px;
    }
    
    .no-events-icon {
        font-size: 2.5rem;
    }
    
    .no-events-message h2 {
        font-size: 1.3rem;
    }
    
    .no-events-message p {
        font-size: 0.9rem;
    }
}

/* ===== EVENT PAGE SKUEOMORPHIC DESIGN ===== */

/* Event Header */
/* Events page - leather skeuomorphic (store-style) */
.events-page .main-content {
    background: repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0px, transparent 2px, transparent 4px, rgba(0,0,0,0.04) 6px), linear-gradient(135deg, #8b7355 0%, #a08060 35%, #b8956e 50%, #a08060 65%, #8b7355 100%);
    border-radius: 20px;
    padding: 28px;
    border: 3px solid #5c4033;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35), inset 0 2px 0 rgba(255,255,255,0.15), inset 0 -2px 0 rgba(0,0,0,0.2);
}

.event-header {
    background: repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0px, transparent 2px, transparent 4px, rgba(0,0,0,0.04) 6px), linear-gradient(135deg, #c4a574 0%, #d4b896 35%, #e6d4b8 50%, #d4b896 65%, #c4a574 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25), inset 0 2px 0 rgba(255,255,255,0.25), inset 0 -2px 0 rgba(0,0,0,0.15);
    border: 3px solid #8b7355;
    position: relative;
}

.event-header::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.4), rgba(255,255,255,0.2), rgba(255,255,255,0.4));
    border-radius: 18px 18px 0 0;
}

.event-header::after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    height: 0;
    border-bottom: 2px dashed rgba(139, 90, 43, 0.55);
    pointer-events: none;
}

.event-title-section {
    flex: 1;
    min-width: 300px;
    margin-bottom: 20px;
}

.event-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Baloo 2', cursive;
}

.event-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* Currency Display */
.currency-display {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.currency-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0px, transparent 2px, transparent 4px, rgba(0,0,0,0.04) 6px), linear-gradient(135deg, #b8956a 0%, #c4a574 35%, #d4b896 50%, #c4a574 65%, #b8956a 100%);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25), inset 0 2px 0 rgba(255,255,255,0.25), inset 0 -2px 0 rgba(0,0,0,0.12);
    border: 2px solid #8b7355;
    min-width: 180px;
    position: relative;
}

.currency-item::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,0.2), rgba(255,255,255,0.6));
    border-radius: 14px 14px 0 0;
}

.eventcurrency-item {
    background: linear-gradient(145deg, #f59e0b, #d97706, #b45309);
    border-color: #b45309;
    box-shadow: 
        0 12px 25px rgba(245, 158, 11, 0.4),
        0 6px 12px rgba(0, 0, 0, 0.2),
        inset 0 3px 6px rgba(255, 255, 255, 0.3),
        inset 0 -3px 6px rgba(0, 0, 0, 0.2),
        inset 1px 0 2px rgba(255, 255, 255, 0.4),
        inset -1px 0 2px rgba(0, 0, 0, 0.15);
}

.currency-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    color: white;
}

/* SVG currency icon sizing */
.currency-icon-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.currency-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.currency-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.currency-value {
    font-size: 1.8rem;
    color: white;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Countdown Timer */
.countdown-container {
    background: linear-gradient(145deg, #ffffff, #f5f7fa, #e8eaed);
    border-radius: 16px;
    padding: 30px;
    margin-top: 25px;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 3px 8px rgba(0, 0, 0, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1),
        inset 1px 0 2px rgba(255, 255, 255, 0.7),
        inset -1px 0 2px rgba(0, 0, 0, 0.08);
    border: 2px solid #c0c4c8;
    text-align: center;
}

.countdown-label {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Baloo 2', cursive;
    background: linear-gradient(145deg, #f0f2f5, #e8eaed);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid #c0c4c8;
    min-width: 70px;
}

.countdown-label-unit {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 5px;
}

.countdown-finished {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Baloo 2', cursive;
}

/* Conversion Container */
.conversion-container {
    background: linear-gradient(145deg, #ffffff, #f5f7fa, #e8eaed);
    border-radius: 16px;
    padding: 25px;
    margin-top: 25px;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 3px 8px rgba(0, 0, 0, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1),
        inset 1px 0 2px rgba(255, 255, 255, 0.7),
        inset -1px 0 2px rgba(0, 0, 0, 0.08);
    border: 2px solid #c0c4c8;
}

.conversion-container h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.conversion-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.conversion-info {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 600;
}

.conversion-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.conversion-controls input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #c0c4c8;
    border-radius: 12px;
    font-size: 1.1rem;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.8);
    outline: none;
    transition: all 0.3s ease;
}

.conversion-controls input:focus {
    border-color: #4a90e2;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.8),
        0 0 0 3px rgba(74, 144, 226, 0.1);
}

.convert-btn {
    padding: 12px 24px;
    background: linear-gradient(145deg, #4a90e2, #357abd);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 
        0 4px 8px rgba(59, 130, 246, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #2c5aa0;
}

.convert-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 12px rgba(59, 130, 246, 0.4),
        0 3px 6px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.convert-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 4px rgba(59, 130, 246, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Event Stickers Section */
.event-stickers-section {
    margin-top: 30px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 25px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Baloo 2', cursive;
}

.event-stickers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

/* Skeuomorphic Shop Container - Matching Store Design */
.event-sticker-card {
    background: linear-gradient(145deg, #f0f2f5, #e8eaed, #ddd);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 
        0 12px 25px rgba(0, 0, 0, 0.2),
        0 6px 12px rgba(0, 0, 0, 0.1),
        inset 0 3px 6px rgba(255, 255, 255, 0.8),
        inset 0 -3px 6px rgba(0, 0, 0, 0.15),
        inset 2px 0 4px rgba(255, 255, 255, 0.6),
        inset -2px 0 4px rgba(0, 0, 0, 0.1);
    border: 3px solid #c0c4c8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.event-sticker-card::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4), rgba(255,255,255,0.8));
    border-radius: 18px 18px 0 0;
}

.event-sticker-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #d97706, #b45309);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

.event-sticker-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 18px 35px rgba(0, 0, 0, 0.25),
        0 8px 16px rgba(0, 0, 0, 0.15),
        inset 0 3px 6px rgba(255, 255, 255, 0.9),
        inset 0 -3px 6px rgba(0, 0, 0, 0.2),
        inset 2px 0 4px rgba(255, 255, 255, 0.7),
        inset -2px 0 4px rgba(0, 0, 0, 0.15);
    border-color: #9ca3af;
}

.event-sticker-card:hover::after {
    opacity: 1;
}

/* Event Badge */
.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(145deg, #f59e0b, #d97706);
    color: white;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 3px 6px rgba(245, 158, 11, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.4),
        inset 0 -1px 2px rgba(0, 0, 0, 0.2);
    border: 2px solid #b45309;
    z-index: 2;
}

/* Shelf Items Container - Matching Store */
.event-sticker-shelf {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    margin-bottom: 20px;
    background: linear-gradient(145deg, #e8eaed, #d1d5db, #c0c4c8);
    border-radius: 16px;
    border: 2px solid #9ca3af;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 3px 6px rgba(0, 0, 0, 0.15),
        inset 0 -1px 2px rgba(255, 255, 255, 0.6),
        inset 2px 0 4px rgba(0, 0, 0, 0.1),
        inset -2px 0 4px rgba(255, 255, 255, 0.4);
}

.event-sticker-shelf::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,0.3), rgba(255,255,255,0.6));
    border-radius: 14px 14px 0 0;
}

.event-sticker-shelf::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.event-sticker-image {
    max-width: 90%;
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.2s ease;
    position: relative;
    z-index: 1;
}

.event-sticker-card:hover .event-sticker-image {
    transform: scale(1.05);
}

/* Item Info - Matching Store */
.event-sticker-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    word-break: break-word;
    line-height: 1.4;
}

.event-sticker-description {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.4;
    text-align: center;
}

.event-sticker-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #f59e0b;
    margin: 0 0 15px 0;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Purchase Button - Matching Store Style */
.buy-event-sticker-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(145deg, #f59e0b, #d97706, #b45309);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 2px solid #b45309;
    box-shadow: 
        0 6px 12px rgba(245, 158, 11, 0.3),
        0 3px 6px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    margin-top: auto;
}

.buy-event-sticker-btn::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2), rgba(255,255,255,0.5));
    border-radius: 8px 8px 0 0;
}

.buy-event-sticker-btn:hover:not(:disabled) {
    background: linear-gradient(145deg, #d97706, #b45309, #92400e);
    transform: translateY(-1px);
    box-shadow: 
        0 8px 16px rgba(245, 158, 11, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.25),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.25);
}

.buy-event-sticker-btn:active:not(:disabled) {
    transform: translateY(1px);
    box-shadow: 
        0 2px 4px rgba(245, 158, 11, 0.2),
        inset 0 2px 6px rgba(0, 0, 0, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.buy-event-sticker-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: linear-gradient(145deg, #9ca3af, #6b7280);
    border-color: #4b5563;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Event Page */
@media (max-width: 768px) {
    .event-header {
        padding: 20px;
    }
    
    .event-title {
        font-size: 2rem;
    }
    
    .countdown-display {
        gap: 10px;
    }
    
    .countdown-number {
        font-size: 2rem;
        padding: 10px 15px;
        min-width: 60px;
    }
    
    .countdown-separator {
        font-size: 1.8rem;
    }
    
    .event-stickers-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .currency-display {
        flex-direction: column;
    }
    
    .currency-item {
        width: 100%;
    }
}

/* ============================================================
   Creatorhunt Easter Event — Events Page Section
   ============================================================ */

.creatorhunt-section {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Event Banner ─────────────────────────────────────────────── */
.ch-event-banner {
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0,0,0,0.03) 2px,
            rgba(0,0,0,0.03) 4px
        ),
        linear-gradient(145deg, #c0804a, #8b4513 60%, #a0602a);
    border: 3px solid #5c2a00;
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    box-shadow:
        0 6px 20px rgba(0,0,0,0.3),
        inset 0 2px 4px rgba(255,255,255,0.15),
        inset 0 -2px 4px rgba(0,0,0,0.2);
}

.ch-event-banner-text h2 {
    font-size: 1.6rem;
    color: #fff3d0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    margin: 0 0 6px 0;
}

.ch-event-banner-text p {
    color: #f5ddb5;
    margin: 0;
    font-size: 0.95rem;
}

.ch-paint-btn {
    background: linear-gradient(145deg, #e8c84a, #c8a020);
    border: 3px solid #7a5000;
    border-radius: 12px;
    color: #3d2200;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 11px 22px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3), inset 0 2px 0 rgba(255,255,255,0.3);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.ch-paint-btn:hover {
    background: linear-gradient(145deg, #f0d860, #d8b030);
    transform: translateY(-1px);
    text-decoration: none;
    color: #3d2200;
}

/* ── Progress Card ────────────────────────────────────────────── */
.ch-progress-card {
    background: linear-gradient(145deg, #f9f3e8, #ede0c4);
    border: 3px solid #c0904a;
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow:
        0 6px 16px rgba(0,0,0,0.18),
        inset 0 2px 4px rgba(255,255,255,0.9),
        inset 0 -2px 4px rgba(0,0,0,0.08);
}

.ch-progress-card h3 {
    margin: 0 0 4px 0;
    font-size: 1.2rem;
    color: #5c2a00;
}

.ch-progress-subtitle {
    font-size: 0.85rem;
    color: #7a4f1a;
    margin: 0 0 16px 0;
}

.ch-progress-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.ch-progress-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 70px;
    position: relative;
}

.ch-mini-egg {
    width: 36px;
    height: 42px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}

.ch-progress-bar-wrap {
    width: 60px;
    height: 6px;
    background: #d4b890;
    border-radius: 3px;
    overflow: hidden;
}

.ch-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #e8b84b, #c87c00);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.ch-progress-count {
    font-size: 0.72rem;
    font-weight: 700;
    color: #5c2a00;
}

.ch-badge-star {
    font-size: 1rem;
    animation: ch-star-pulse 1.5s ease infinite;
}

@keyframes ch-star-pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.2); }
}

.ch-progress-badged .ch-mini-egg {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 3px 8px rgba(0,0,0,0.25);
}

.ch-total-text {
    margin: 14px 0 0;
    font-size: 0.88rem;
    color: #7a4f1a;
    font-weight: 600;
}

/* ── Quick Links ──────────────────────────────────────────────── */
.ch-quick-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ch-quick-links p {
    margin: 0;
    color: #5c2a00;
    font-weight: 600;
    font-size: 0.9rem;
}

.ch-link-btn {
    background: linear-gradient(145deg, #e8f4e8, #c8e4c8);
    border: 2px solid #4a8a4a;
    border-radius: 10px;
    color: #1a4a1a;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 16px;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    transition: all 0.15s ease;
}

.ch-link-btn:hover {
    background: linear-gradient(145deg, #d0eed0, #a8d4a8);
    transform: translateY(-1px);
    text-decoration: none;
    color: #1a4a1a;
}

@media (max-width: 600px) {
    .ch-event-banner {
        flex-direction: column;
        text-align: center;
    }
    .ch-quick-links {
        justify-content: center;
    }
}

