 .raffle-header {
        background-color: white !important;
        color: #212529;
        padding: 0.3rem 0.8rem;
        border-radius: 8px;
        margin-bottom: 1rem;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .raffle-title {
        font-weight: 700;
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }

    .raffle-dates {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .raffle-status {
        font-weight: 600;
        padding: 0.2rem 0.5rem;
        border-radius: 1.2rem;
        font-size: 0.75rem;
        display: inline-block;
    }

    .status-active {
        background: #28a745;
        color: #fff;
    }

    .status-inactive {
        background: #dc3545;
        color: #fff;
    }

    .streamer-info {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.85rem;
    }

    .streamer-avatar {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 0 6px #fff3;
        border: 2px solid #ee0000;
    }
    
    .raffle-main {
        display: flex;
        gap: 1rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }

    .raffle-info {
        flex: 1 1 55%;
        min-width: 250px;
    }

    .raffle-stats {
        flex: 1 1 40%;
        min-width: 180px;
        background: white;
        border-radius: 0.5rem;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 1rem 1.2rem;
        text-align: center;
        font-weight: 600;
    }

    .raffle-stats .number {
        font-size: 1.4rem;
        margin-bottom: 0.2rem;
    }

    .raffle-stats .label {
        font-size: 0.9rem;
        color: #666;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(120px,1fr));
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .product-card {
        background: white;
        border-radius: 0.5rem;
        padding: 0.7rem;
        box-shadow: 0 1px 6px rgba(0,0,0,0.08);
        text-align: center;
    }

    .product-card:hover {
        box-shadow: 0 3px 10px rgba(0,0,0,0.12);
    }

    .product-image {
        max-height: 100px;
        margin-bottom: 0.6rem;
        object-fit: contain;
        width: 100%;
        border-radius: 0.3rem;
    }

    .product-name {
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .product-quantity {
        font-size: 0.75rem;
        color: #6c757d;
    }

    .participants-section {
        background: white;
        padding: 1rem 1.5rem;
        border-radius: 0.5rem;
        box-shadow: 0 1px 8px rgba(0,0,0,0.1);
        max-height: 280px;
        overflow-y: auto;
    }

    .participants-section h2 {
        font-weight: 700;
        margin-bottom: 0.8rem;
        font-size: 1.3rem;
    }

    .participant-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.4rem 0;
        border-bottom: 1px solid #e9ecef;
        font-size: 0.85rem;
    }

    .participant-name {
        font-weight: 600;
    }

    .participant-email {
        color: #555;
        font-size: 0.8rem;
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .participant-joined {
        font-size: 0.7rem;
        font-style: italic;
        color: #adb5bd;
        min-width: 110px;
        text-align: right;
    }

    .participants-section::-webkit-scrollbar {
        width: 6px;
    }
    .participants-section::-webkit-scrollbar-thumb {
        background-color: #ff9900;
        border-radius: 3px;
    }

    @media (max-width: 768px) {
        .raffle-main {
            flex-direction: column;
        }
        .raffle-stats {
            max-width: 100%;
            margin-top: 1rem;
        }
    }
    .section-banner {
      background: linear-gradient(90deg, #FC2203, #ee0000);
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
            border-radius: 8px;
            margin-bottom: 10px !important;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            font-size: 0.9rem;
        }

        .section-banner .banner-title {
            font-size: 1.1rem;
            font-weight: bold;
            display: flex;
            align-items: center;
        }

        .section-banner .banner-title i {
            font-size: 1.2rem;
        }

        .section-banner .see-all {
            color: #fff;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: bold;
        }
        .award-rank {
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}
.winner-email {
    font-size: 0.85rem;
    margin-top: 6px;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 500;
    display: inline-block;
}

.winner-found {
    background-color: #e0f8e9;
    color: #1b7e3c;
    border: 1px solid #b3e6c4;
}

.winner-found i {
    color: #f5c518;
    margin-right: 4px;
}

.winner-pending {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

@media (max-width: 576px) {
    .winner-email {
        font-size: 0.75rem;
        padding: 5px 8px;
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }
  .participant-item {
    justify-content: flex-start !important;
    flex-wrap: wrap;
    gap: 6px;
  }

  .participant-email {
    max-width: 100% !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    font-size: 0.85rem;
  }

  .participant-number {
    flex-shrink: 0;
    font-weight: 600;
  }
}