.events-wrapper {
    padding: 40px 0;
    background: linear-gradient(135deg, #141414 0%, #000 100%);
    color: #e0e0e0;
    overflow-x: hidden;
}

.events-title {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(229, 9, 20, 0.3);
}

.events-grid {
    display: flex;
    /*grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
    flex-direction: column;
    gap: 20px;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 15px;
}

.event-card {
    background: #222;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.2);
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 1.5rem;
    color: #e50914;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.card-link {
    color: #e50914;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #ff4d4d;
    text-shadow: 0 0 8px rgba(255, 77, 77, 0.5);
}

.card-description {
    font-size: 0.95rem;
    color: #b3b3b3;
    margin-bottom: 10px;
    line-height: 1.4;
}

.card-date, .card-location {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-bottom: 5px;
}

.btn-buy {
    display: block;
    width: 100%;
    padding: 10px;
    background: linear-gradient(90deg, #e50914 0%, #ff4d4d 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 77, 77, 0.6);
}

@media (max-width: 767.98px) {
    .events-title {
        font-size: 2.2rem;
    }
    .card-title {
        font-size: 1.3rem;
    }
    .event-card {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .events-title {
        font-size: 1.8rem;
    }
    .card-title {
        font-size: 1.1rem;
    }
    .btn-buy {
        padding: 8px;
    }
}