body {
  font-family: Helvetica, Arial, sans-serif;
  margin: 20px;
  background: white;
  color: black;
  opacity: 0;
  transition: opacity 0.15s ease;
  min-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
}

body.loaded {
  opacity: 1;
}

a {
  color: blue;
  text-decoration: underline;
}

a:visited {
  color: purple;
}

h1, h2, h3 {
  font-weight: bold;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 5px 0;
}

h2 {
  margin: 20px 0 15px 0;
}

.header-left p {
  margin: 0;
}

hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #ccc;
}

/* Header */
.header-container {
  margin-bottom: 10px;
}

/* Tour Dates */
.tour-dates {
  margin: 20px 0;
}

.tour-date {
  display: grid;
  grid-template-columns: 60px 120px 200px 80px;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  align-items: baseline;
  max-width: 460px;
}

.tour-date:first-child {
  padding-top: 20px;
}

.tour-date:last-child {
  border-bottom: none;
}

.date {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 18px;
}

.city {
  font-size: 16px;
}

.venue {
  font-size: 16px;
}

.tickets {
  text-align: left;
}

.ticket-link {
  background: #D20A2E;
  color: white;
  padding: 5px 15px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
  border: none;
  display: inline-block;
}

.ticket-link:hover {
  background: #FF0D3B;
}

.ticket-link:visited {
  color: white;
}

/* Past events */
.tour-date.past {
  opacity: 0.4;
}

.tour-date.past .ticket-link {
  pointer-events: none;
  cursor: default;
}

.tour-date.past .ticket-link:hover {
  background: #D20A2E;
}

/* Rock Candy Button */
.rock-candy-button {
  background: #D20A2E;
  color: white;
  padding: 10px 30px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 24px;
  border: none;
  display: inline-block;
  text-align: center;
}

.rock-candy-button:hover {
  background: #FF0D3B;
}

.rock-candy-button:visited {
  color: white;
}

/* Video Grid */
.video-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 20px 0;
}

.video-item {
  width: 100%;
  max-width: 800px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-title {
  margin-top: 8px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .tour-date {
    grid-template-columns: 60px 1fr;
    gap: 5px 10px;
    padding: 15px 0;
  }
  
  .date {
    grid-column: 1;
    grid-row: 1 / 4;
    font-size: 18px;
  }
  
  .city {
    grid-column: 2;
    grid-row: 1;
    font-size: 16px;
  }
  
  .venue {
    grid-column: 2;
    grid-row: 2;
    font-size: 16px;
  }
  
  .tickets {
    grid-column: 2;
    grid-row: 3;
    margin-left: 0;
    margin-top: 5px;
  }
}

/* Social Footer */
.social-footer {
  margin-top: auto;
  padding: 20px 0;
  background: white;
}

.social-footer a {
  color: black;
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline-block;
  margin: 0 10px;
}

.social-footer a:hover {
  opacity: 0.6;
}

.social-footer a:visited {
  color: black;
}

/* Remove extra padding from body */
body {
  padding-bottom: 0;
}
