.rifa-container-661b15ac {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    max-width: 100%;
    width: 480px;
    margin: 0 auto;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.header-section-661b15ac {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.star-icon-661b15ac {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.star-icon-661b15ac svg {
    width: 20px;
    height: 20px;
    color: #111111;
}

.title-661b15ac {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c121c;
    margin: 0;
}

/* Tabs Filtering */
.tabs-header-661b15ac {
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    padding: 6px;
    gap: 4px;
    margin-bottom: 16px;
    border: 1px solid #eaeaea;
}

.tab-btn-661b15ac {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 8px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.tab-btn-661b15ac.active {
    background: #f1f3f5;
    color: #111111;
}

.tab-btn-661b15ac.active.status-available {
    background: #ffe3e3 !important;
    color: #dc3545 !important;
}

.badge-661b15ac {
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 700;
}

.badge-grey {
    background: #e9ecef;
    color: #495057;
}

.badge-red {
    background: #dc3545;
    color: #ffffff;
}

/* Tickets list container */
.tickets-list-661b15ac {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

/* Row cards style */
.ticket-row-661b15ac {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.ticket-row-661b15ac.ticket-hidden-661b15ac {
    display: none !important;
}

.ticket-left-661b15ac {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ticket-pill-661b15ac {
    background: #f1f3f5;
    color: #000000;
    font-family: monospace, monospace;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 4px 10px;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

.ticket-prize-text-661b15ac {
    color: #8c92a0;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Right status indicator styling */
.ticket-right-661b15ac {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator-label-661b15ac {
    font-size: 0.85rem;
    font-weight: 600;
}

.status-dot-661b15ac {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

/* Color definitions per status */
.ticket-row-661b15ac.status-available .status-indicator-label-661b15ac {
    color: #2b9348;
}
.ticket-row-661b15ac.status-available .status-dot-661b15ac {
    background: #2b9348;
    box-shadow: 0 0 8px rgba(43, 147, 72, 0.4);
}

.ticket-row-661b15ac.status-bought .status-indicator-label-661b15ac {
    color: #dc3545;
}
.ticket-row-661b15ac.status-bought .status-dot-661b15ac {
    background: #dc3545;
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.4);
}

/* See More Interactive Button */
.see-more-btn-661b15ac {
    width: 100%;
    border: none;
    background: #eaecef;
    color: #0c121c;
    border-radius: 12px;
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease;
}

.see-more-btn-661b15ac:hover {
    background: #dee2e6;
}

.see-more-btn-661b15ac svg {
    width: 16px;
    height: 16px;
}

/* Mobile optimizations */
@media (max-width: 480px) {
    .rifa-container-661b15ac {
        padding: 16px;
        border-radius: 16px;
    }
    .tabs-header-661b15ac {
        padding: 4px;
        gap: 2px;
        border-radius: 10px;
    }
    .tab-btn-661b15ac {
        padding: 8px 4px;
        font-size: 0.75rem;
        gap: 3px;
    }
    .badge-661b15ac {
        font-size: 0.65rem;
        padding: 1px 4px;
    }
    .ticket-row-661b15ac {
        padding: 10px;
        border-radius: 10px;
    }
    .ticket-left-661b15ac {
        gap: 8px;
    }
    .ticket-pill-661b15ac {
        font-size: 0.75rem;
        padding: 3px 6px;
        border-radius: 6px;
    }
    .ticket-prize-text-661b15ac {
        font-size: 0.75rem;
    }
    .status-indicator-label-661b15ac {
        font-size: 0.75rem;
    }
    .status-dot-661b15ac {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 360px) {
    .tab-btn-661b15ac {
        font-size: 0.7rem;
    }
    .ticket-row-661b15ac {
        flex-direction: row;
        justify-content: space-between;
    }
}
