* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 3em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: transparent;
    -webkit-text-stroke: 2px #ff1493;
}

#events-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a1a1a;
    box-shadow: 0 2px 20px rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

#events-table th,
#events-table td {
    padding: 4px 12px;
    text-align: left;
    border: 1px solid #444;
    border-bottom: 2px solid #555;
}

#events-table th {
    background-color: #2d2d2d;
    color: #00ffff; /* Turquoise */
    font-weight: bold;
    font-size: 1.1em;
    position: sticky;
    top: 0;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#events-table tbody tr:hover {
    background-color: #2a2a2a;
    box-shadow: inset 0 0 10px rgba(255, 20, 147, 0.1);
}

#events-table tbody tr:nth-child(even) {
    background-color: #222222;
}

#events-table tbody tr:nth-child(even):hover {
    background-color: #2a2a2a;
}

/* Title column */
.title-cell {
    font-weight: 600;
    color: #ffffff; /* White for max contrast */
    max-width: 300px;
    font-size: 1.1em;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Date column */
.date-cell {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #ffffff;
    white-space: nowrap;
}

/* Location column */
.location-cell {
    color: #00e5ff; /* Bright turquoise */
    font-weight: 500;
}

/* Artists column */
.artists-cell {
    max-width: 250px;
}

.artists-list {
    list-style: none;
    padding: 0;
}

.artists-list li {
    padding: 2px 8px 2px 20px;
    border-radius: 4px;
    font-size: 1em;
    color: #ffffff; /* White for max contrast */
    position: relative;
    line-height: 1.4;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.artists-list li::before {
    content: "★";
    position: absolute;
    left: 0px;
    color: #ff1493; /* Deep pink star */
    font-weight: bold;
}

/* Description column */
.description-cell {
    max-width: 300px;
    font-size: 0.95em;
    color: #ffffff;
}

/* Link column */
.link-cell a {
    color: #00ffff; /* Turquoise */
    text-decoration: none;
    padding: 8px 16px;
    background-color: #333;
    border: 1px solid #00ffff;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: bold;
}

.link-cell a:hover {
    background-color: #00ffff;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4);
}

/* Responsive design */
@media (max-width: 1200px) {
    .container {
        padding: 15px;
    }
    
    #events-table th,
    #events-table td {
        padding: 10px;
        font-size: 0.9em;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    #events-table {
        font-size: 0.8em;
    }
    
    #events-table th,
    #events-table td {
        padding: 8px;
    }
    
    .title-cell,
    .artists-cell,
    .description-cell {
        max-width: 200px;
    }
}
