﻿ :root {
     --primary: #6c5ce7;
     --secondary: #a29bfe;
     --dark: #2d3436;
     --light: #f5f6fa;
     --accent: #fd79a8;
     --success: #00b894;
 }
 
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }
 
 body {
     font-family: 'Poppins', sans-serif;
     background-color: #f8f9fa;
     color: var(--dark);
     line-height: 1.6;
 }
 
 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 2rem;
 }
 
 header {
     text-align: center;
     margin-bottom: 3rem;
     position: relative;
 }
 
 header::after {
     content: '';
     display: block;
     width: 100px;
     height: 4px;
     background: linear-gradient(to right, var(--primary), var(--accent));
     margin: 1rem auto;
     border-radius: 2px;
 }
 
 h1 {
     font-family: 'Montserrat', sans-serif;
     font-size: 2.5rem;
     font-weight: 700;
     color: var(--primary);
     margin-bottom: 0.5rem;
     text-transform: uppercase;
     letter-spacing: 1px;
 }
 
 .subtitle {
     font-size: 1.2rem;
     color: #636e72;
     font-weight: 300;
 }
 
 .schedule {
     display: grid;
     grid-template-columns: 1fr;
     gap: 1.5rem;
 }
 
 .day {
     background: white;
     border-radius: 12px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     overflow: hidden;
     transition: transform 0.3s ease;
 }
 
 .day:hover {
     transform: translateY(-5px);
 }
 
 .day-header {
     background: linear-gradient(135deg, var(--primary), var(--secondary));
     color: white;
     padding: 1.5rem;
     position: relative;
 }
 
 .day-title {
     font-family: 'Montserrat', sans-serif;
     font-size: 1.5rem;
     font-weight: 600;
     margin-bottom: 0.5rem;
 }
 
 .day-date {
     font-weight: 300;
     opacity: 0.9;
 }
 
 .performances {
     padding: 1.5rem;
 }
 
 .performance {
     /*display: grid;*/
     grid-template-columns: 80px 1fr 120px;
     align-items: center;
     padding: 1rem 0;
     border-bottom: 1px solid #eee;
 }
 
 .performance:last-child {
     border-bottom: none;
 }
 
 .time {
     font-weight: 600;
     color: var(--primary);
     font-size: 1rem;
 }
 
 .artist {
     /*display: flex;*/
     align-items: center;
 }
 
 .artist-avatar {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     object-fit: cover;
     margin-right: 1rem;
     border: 2px solid var(--light);
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
 }
 
 .artist-name {
     font-weight: 600;
     font-size: 1.1rem;
 }
 
 .artist-genre {
     font-size: 0.8rem;
     color: #636e72;
     margin-top: 2px;
 }
 
 .stage {
     float: right;
     background-color: var(--light);
     color: var(--dark);
     padding: 0.3rem 0.8rem;
     border-radius: 20px;
     font-size: 40px;
     font-weight: 600;
     text-align: center;
     justify-self: end;
 }
 
 .stage.main {
     background-color: var(--accent);
     color: white;
 }
 
  .stage.main a {
     text-decoration: none;
     color: white;
 }
 
 .stage.secondary {
     background-color: var(--success);
     color: white;
 }
 
 .highlight {
     position: relative;
 }
 
 .highlight::before {
     content: '';
     position: absolute;
     left: -1.5rem;
     top: 0;
     height: 100%;
     width: 4px;
     background: var(--accent);
     border-radius: 2px;
 }
 
 footer {
     text-align: center;
     margin-top: 3rem;
     color: #636e72;
     font-size: 0.9rem;
 }
 
 @media (max-width: 768px) {
     .performance {
         grid-template-columns: 1fr;
         gap: 0.5rem;
     }
     
     .time, .stage {
         justify-self: start;
     }
     
     .artist {
         margin: 0.5rem 0;
     }
 }