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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #ff0f9b 0%, #5e1053 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card {
    background: rgb(160, 241, 255);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 900px;
    overflow: hidden;
    padding: 40px;
    text-align: center;
}

.profile-section {
    margin-bottom: 30px;
}

.profile-pic {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ff0f9b;
    margin: 0 auto 25px;
    display: block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.name {
    font-size: 5rem;
    font-weight: 800;
    color: #5e1053;
    margin-bottom: 10px;
    letter-spacing: -2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.tagline {
    color: #5e1053;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding: 0 10px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #5e1053;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.nav-link:hover {
    background: #ff0f9b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 15, 155, 0.4);
    border-color: white;
}

.section-divider {
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, transparent, #ff0f9b, transparent);
    margin: 40px auto 30px;
    border: none;
}

.shows-header {
    font-size: 2.2rem;
    color: #5e1053;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.shows-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.show-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.show-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.show-date {
    font-weight: 700;
    color: #5e1053;
    font-size: 1.3rem;
    min-width: 120px;
}

.show-venue {
    font-weight: 600;
    color: #333;
    flex-grow: 1;
    padding: 0 20px;
    font-size: 1.2rem;
}

.show-location {
    color: #666;
    font-style: italic;
    min-width: 150px;
    text-align: right;
}

.show-link {
    display: inline-block;
    background: #5e1053;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.show-link:hover {
    background: #ff0f9b;
    transform: scale(1.05);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .card {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .profile-pic {
        width: 150px;
        height: 150px;
    }
    
    .name {
        font-size: 3.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .nav-link {
        width: 250px;
        text-align: center;
    }
    
    .shows-header {
        font-size: 1.8rem;
    }
    
    .show-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .show-venue {
        padding: 0;
    }
    
    .show-location {
        text-align: center;
    }
    
    .show-link {
        margin: 10px 0 0 0;
    }
}

@media (max-width: 480px) {
    .profile-pic {
        width: 130px;
        height: 130px;
    }
    
    .name {
        font-size: 2.8rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .nav-link {
        width: 220px;
        padding: 12px 25px;
    }
    
    .shows-header {
        font-size: 1.6rem;
    }
    
    .show-date, .show-venue {
        font-size: 1.1rem;
    }
}