:root {
    /* Awix Event Palette */
    --color-1: #f2df90;
    --color-2: #e53363;
    --color-3: #1f3ca2;
    --color-4: #2cb798;
}

.awix-event-section {
    padding: 80px 0;
    font-family: var(--font-main);
    background-color: #000;
    /* Black background to match the theme */
    position: relative;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.awix-event-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    color: transparent;
    /* Use gradient */
    background: linear-gradient(135deg, var(--color-1), var(--color-2), var(--color-3));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: none;
    text-shadow: 0 0 30px rgba(229, 51, 99, 0.3);
    /* Subtle backdrop glow */
}

.event-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.event-card {
    /* Liquid Glass Effect (Visible Border) */
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 30px;

    /* Uniform, subtle border all around so bottom is visible */
    border: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        /* Deep Shadow */
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        /* Top Rim Highlight */
        inset 0 0 20px rgba(255, 255, 255, 0.02);
    /* Soft Inner Glow */

    /* Layout */
    padding: 50px 30px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    position: relative;
    overflow: hidden;
}

/* Hover Effect for Cards */
/* Hover Effect for Cards REMOVED as per request */
/* .event-card:hover { ... } */

.event-card h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.4;
}

/* Button Styles Simplified */
.btn-event {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.3s ease;
    /* Static look, no borders or glass */
    border: none;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-event:hover {
    opacity: 0.9;
    /* No movement, just subtle opacity change */
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    /* Keep shadow static */
}

/* Specific Button Gradients */
.btn-artists {
    background: linear-gradient(135deg, var(--color-2), var(--color-3));
}

.btn-tickets {
    background: linear-gradient(135deg, var(--color-3), var(--color-4));
}

/* Responsive */
@media (max-width: 768px) {
    .awix-event-section h2 {
        font-size: 2rem;
    }

    .event-grid {
        flex-direction: column;
        align-items: center;
    }

    .event-card {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        padding: 30px 20px;
    }
}