body { background-color: #f8fafc; }
    .event-wrapper { margin-top: 120px; margin-bottom: 100px; }

    /* Hero Section Event */
    .event-hero {
        background: linear-gradient(135deg, #a82282 0%, #a82252 100%);
        border-radius: 30px;
        padding: 60px 40px;
        color: white;
        margin-bottom: 50px;
        position: relative;
        overflow: hidden;
    }
    .event-hero-circle {
        position: absolute;
        width: 300px; height: 300px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        top: -100px; right: -100px;
    }

    /* Event Card */
    .event-card {
        background: white;
        border-radius: 24px;
        overflow: hidden;
        border: 1px solid #f1f5f9;
        transition: 0.3s;
        height: 100%;
    }
    .event-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }
    .event-img-wrapper {
        position: relative;
        height: 200px;
    }
    .event-img { width: 100%; height: 100%; object-fit: cover; }
    
    .event-date-badge {
        position: absolute;
        top: 15px; left: 15px;
        background: white;
        padding: 10px 15px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .date-day { display: block; font-weight: 800; font-size: 1.2rem; color: #4361ee; line-height: 1; }
    .date-month { font-size: 11px; text-transform: uppercase; font-weight: 700; color: #64748b; }

    .event-body { padding: 25px; }
    .event-category {
        font-size: 11px;
        text-transform: uppercase;
        font-weight: 700;
        color: #4361ee;
        letter-spacing: 1px;
        margin-bottom: 8px;
        display: block;
    }
    .event-title { font-weight: 800; font-size: 1.15rem; color: #1e293b; margin-bottom: 12px; }
    
    .event-meta {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #64748b;
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .btn-event-detail {
        background: #f1f5f9;
        display: block;
        text-align: center;
        text-decoration: none;
        color: #1e293b;
        width: 100%;
        border: none;
        padding: 12px;
        border-radius: 12px;
        font-weight: 700;
        margin-top: 15px;
        transition: 0.3s;
    }
    .btn-event-detail:hover { background: #4361ee; color: white; }