* {
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #ffffff;
    overflow-x: hidden;
}
@font-face {
    font-family: 'Super Friday';
    src: url('Super Friday.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.container {
    margin: 3%;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(39, 39, 39, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    animation: containerFade 1s ease-in;
}

@keyframes containerFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile {
    width: 280px;
    height: 280px;
    border: solid 4px rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.5s ease;
    object-fit: contain;

    animation: profilePulse 3s infinite;
}

@keyframes profilePulse {
    0% { box-shadow: 0 0 30px rgba(0, 255, 255, 0.3); }
    50% { box-shadow: 0 0 50px rgba(0, 255, 255, 0.5); }
    100% { box-shadow: 0 0 30px rgba(0, 255, 255, 0.3); }
}

.Poster {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    position: relative;
    z-index: 1000;
}

.Poster::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.Poster iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.container ul li {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin: 15px 0;
    transition: all 0.3s ease;
    animation: slideIn 0.5s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.container ul li:nth-child(1) { animation-delay: 0.1s; }
.container ul li:nth-child(2) { animation-delay: 0.2s; }
.container ul li:nth-child(3) { animation-delay: 0.3s; }
.container ul li:nth-child(4) { animation-delay: 0.4s; }
.container ul li:nth-child(5) { animation-delay: 0.5s; }

.container ul li:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.button-text {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.button-text::before {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}



.container ul li:hover .button-text::before {
    left: 100%;
}

.header {
    text-align: center;
    padding: 30px 0;
    font-family: 'Super Friday', sans-serif;

}

.header h1 {
    font-size: 4em;
    font-weight: 700;
    /* background: linear-gradient(45deg, #00ffff, #ff00ff); */
    background:  #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px 0;
}

.header p {
    font-size: 1.3em;
    /* color: rgba(255, 255, 255, 0.8); */
}

footer {
    margin-top: 40px;
    padding: 30px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 20px 20px;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-info h3 {
    color: #ffffff;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 8px 0;
    font-size: 0.9em;
}

.contact-info i {
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.6);
}

.cta-section {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 0.9em;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8em;
}

@media (max-width: 768px) {
    footer {
        padding: 20px 15px;
    }
    
    .contact-info h3 {
        font-size: 1.1em;
    }
    
    .contact-info p,
    .cta-section p {
        font-size: 0.85em;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 0.9em;
    }
}
.ticket-links {
    width: 90%;
    max-width: 400px;
    margin: 20px auto;
    padding: 0;
}

.ticket-links li {
    margin: 15px 0;
    list-style: none;
}

.ticket-links .button-text {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.ticket-links .button-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.ticket-links i {
    font-size: 20px;
    margin-right: 15px;
    width: 24px;
    text-align: center;
}

.ticket-links p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

/* Refined gradient combinations */
.ticket-links li:nth-child(1) .button-text {
    background: linear-gradient(135deg, #2c2c2c, #4a4a4a);
}

.ticket-links li:nth-child(2) .button-text {
    background: linear-gradient(135deg, #c72d2d, #ff4141);
}

.ticket-links li:nth-child(3) .button-text {
    background: linear-gradient(135deg, #912fb8, #592fbc);
}

.ticket-links li:nth-child(4) .button-text {
    background: linear-gradient(135deg, #1a237e, #283593);
}

.ticket-links .spotify {
    background: linear-gradient(135deg, #18af4d, #0D8A45);
}

/* Enhanced hover effects */
.ticket-links .button-text:hover {
    background-position: right center;
    background-size: 200% auto;
    transition: all 0.5s ease;
}

.ticket-links li:nth-child(1) .button-text:hover {
    background: linear-gradient(135deg, #2c2c2c, #4a4a4a);
    background-size: 200% auto;
}

.ticket-links li:nth-child(2) .button-text:hover {
    background: linear-gradient(135deg, #FF416C, #FF4B2B, #FF416C);
    background-size: 200% auto;
}

.ticket-links li:nth-child(3) .button-text:hover {
    background: linear-gradient(135deg, #b53ce3, #592fbc);
    background-size: 200% auto;
}

.ticket-links li:nth-child(4) .button-text:hover {
    background: linear-gradient(135deg, #1a237e, #283593);
    background-size: 200% auto;
}

.ticket-links .spotify:hover {
    background: linear-gradient(135deg, #1ed760, #0D8A45, #1ed760);
    background-size: 200% auto;
}

/* Hover icon animation */
.ticket-links .button-text:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Media queries for mobile */
@media (max-width: 768px) {
    .ticket-links {
        width: 95%;
    }
    
    .ticket-links .button-text {
        padding: 14px 20px;
    }
    
    .ticket-links i {
        font-size: 18px;
    }
    
    .ticket-links p {
        font-size: 14px;
    }
}