
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {

..hero-section {
}
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23ff3333" stroke-width="0.5" stroke-opacity="0.1"/></svg>') repeat;
    opacity: 0.1;
    z-index: 0;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: #ff3333;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #ff4d4d;
    transform: translateY(-3px);
    color: white;
}

.hero-btn i {
    margin-right: 10px;
}

/* Events Section */
.events-section {
    padding: 60px 0;
    background: #1a1a1a;
    position: relative;
}

.past-events-section {
    padding: 60px 0;
    background: #2c2c2c;
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    position: relative;
    padding-left: 15px;
}

.section-header h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ff3333, #ff6666);
    border-radius: 2px;
}

.admin-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 51, 51, 0.1);
    color: #ff3333;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.admin-btn:hover {
    background: #ff3333;
    color: white;
}

.admin-btn i {
    margin-right: 8px;
}

/* Event Card */
.event-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 51, 51, 0.3);
}

.event-card.past {
    opacity: 0.7;
}

.event-card.past .event-image img {
    filter: grayscale(100%);
}

.event-image {
    position: relative;
    height: 200px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff3333;
    color: white;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    min-width: 60px;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-content {
    padding: 1.5rem;
    color: white;
}

.artist-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.artist-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.artist-info h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.event-content h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.event-details {
    margin-bottom: 1.5rem;
}

.detail {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.detail i {
    width: 20px;
    color: #ff3333;
    margin-right: 8px;
}

.event-actions {
    display: flex;
    gap: 10px;
}

.ticket-btn, .details-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ticket-btn {
    background: #ff3333;
    color: white;
}

.ticket-btn:hover {
    background: #ff4d4d;
    color: white;
}

.details-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.details-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ticket-btn i, .details-btn i {
    margin-right: 8px;
}

/* Modal Styles */
.modal-content {
    background: #1a1a1a;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h5 {
    color: white;
    font-weight: 600;
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.modal-info h5 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-details {
    margin-bottom: 1.5rem;
}

.modal-details .detail {
    margin-bottom: 1rem;
}

.modal-details .detail i {
    width: 30px;
    height: 30px;
    background: rgba(255, 51, 51, 0.1);
    color: #ff3333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
}

.modal-description {
    margin-bottom: 1.5rem;
}

.modal-description h6 {
    color: #ff3333;
    margin-bottom: 0.5rem;
}

.modal-description p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.modal-ticket-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    background: #ff3333;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-ticket-btn:hover {
    background: #ff4d4d;
    color: white;
}

.modal-ticket-btn i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .section-header h2::before {
        display: none;
    }

    .event-actions {
        flex-direction: column;
    }

    .modal-content {
        margin: 10px;
    }
}

.hero-section {
	min-height:260px;
	height:auto;
}