@import url('https://fonts.googleapis.com/css2?family=Delius&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --primary-color: #6c40be;
    --secondary-color: #3a1078;
    --accent-color: #f72585;
    --neon-pink: #ff2a6d;
    --neon-purple: #7a04eb;
    --neon-blue: #00c2ff;
    --dark-color: #121212;
    --darker-color: #070707;
    --light-color: #f8f9fa;
    --text-color: #e0e0e0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--darker-color);
    background-color: #060512;
    color: var(--text-color);
    overflow-x: hidden;
    padding-top: 70px;
    line-height: 1.6;
}

/* Header Styles */
.navbar {
    background-color: rgba(11, 0, 23, 0.245);
    backdrop-filter: blur(17px);
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(114, 99, 130, 0.315);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-text {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: #fff !important;
    margin: 0 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--neon-pink) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--neon-pink), var(--neon-purple));
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(69, 23, 162, 0.387), rgba(0, 0, 0, 0.459)), url('https://chixlegend1.web.app/assets/images/chixlegendbg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--neon-purple), transparent, var(--neon-blue));
    opacity: 0.1;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #fff;
}
/* Section Titles */
.section-title {
    text-align: center;
    margin: 50px 0 30px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    font-size: 2.5rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--neon-pink), var(--neon-purple));
}

/* Seek Bar and Time Display */
.seek-bar-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

#currentTimeDisplay, #durationDisplay {
    font-size: 0.9rem;
    color: var(--text-color);
    min-width: 35px; /* Taaki time update hone par elements jump na karein */
}

/* Custom Seek Bar Styling */
input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--neon-pink);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 8px var(--neon-pink);
}

input[type=range]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--neon-pink);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 8px var(--neon-pink);
}

/* Volume Control */
.volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-container input[type=range] {
    width: 80px; /* Chhota volume slider */
}
/* Initial state for elements to animate */
.music-card, .merch-card, .fan-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Duration adjust kar sakte hain */
}
/* Player Cards */
.player-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.player-card h4 {
    margin-bottom: 15px;
    color: var(--neon-blue);
}
.embed-container {
    border-radius: 10px;
    overflow: hidden;
}
/* Tour Dates */
.tour-map {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.map-placeholder {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}
.map-placeholder i {
    font-size: 3rem;
    color: var(--neon-blue);
    margin-bottom: 15px;
}
.tour-date-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.tour-date-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--neon-blue);
}
.date-info {
    display: flex;
    align-items: center;
}
.date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink));
    border-radius: 8px;
    padding: 10px;
    min-width: 60px;
    margin-right: 15px;
}
.date-box .month {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
}
.date-box .day {
    font-size: 1.5rem;
    font-weight: 700;
}
.location-info h5 {
    margin-bottom: 5px;
}
.location-info p {
    color: #aaa;
    margin-bottom: 0;
}
/* YouTube Integration */
.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.video-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.video-info {
    padding: 15px;
}
.video-info h5 {
    margin-bottom: 5px;
}
.video-info p {
    color: #aaa;
    margin-bottom: 0;
}
/* Collaborations */
.collab-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}
.collab-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.artist-images {
    display: flex;
    align-items: center;
    margin-right: 15px;
}
.artist-images img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--neon-purple);
}
.collab-plus {
    margin: 0 10px;
    font-size: 1.5rem;
    color: var(--neon-pink);
}
.collab-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.track-name {
    font-weight: 600;
}
/* Podcast Section */
.podcast-card {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}
.podcast-image {
    margin-right: 15px;
}
.podcast-image img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
}
.podcast-info {
    flex-grow: 1;
}
.podcast-info h5 {
    margin-bottom: 5px;
    color: var(--neon-blue);
}
.podcast-info p {
    color: #aaa;
    margin-bottom: 10px;
}
/* Buttons */
.btn {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}
.btn-primary {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    box-shadow: 0 5px 15px rgba(247, 37, 133, 0.4);
}
.btn-primary:hover {
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 37, 133, 0.6);
}
.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline-light:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}
.view-more {
    margin-top: 20px;
}
/* Footer */
footer {
    background:#060512;
    padding: 50px 0 20px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer h5 {
    color: var(--neon-pink);
    margin-bottom: 20px;
    font-weight: 700;
}
footer h6 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}
footer ul {
    list-style: none;
    padding: 0;
}
footer ul li {
    margin-bottom: 10px;
}
footer ul li a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}
footer ul li a:hover {
    color: var(--neon-pink);
}
footer p {
    color: #aaa;
    line-height: 1.6;
}
.social-icons {
    margin-top: 20px;
}
.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(247, 37, 133, 0.4);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
}
.col-md-4{
    text-align:center;
    text-justify:inter-word;
}
.foot-para{
    text-align:justify;
    font-family:"Montserrat","Poppins",sans-serif;
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .tour-date-card {
        flex-direction: column;
        text-align: center;
    }
    .date-info {
        margin-bottom: 15px;
        justify-content: center;
    }
    .ticket-info {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    .podcast-card {
        flex-direction: column;
        text-align: center;
    }
    .podcast-image {
        margin-right: 0;
        margin-bottom: 15px;
        display: flex;
        justify-content: center;
    }
    .collab-header {
        flex-direction: column;
        text-align: center;
    }
    .artist-images {
        margin-right: 0;
        margin-bottom: 15px;
        justify-content: center;
    }
}
@media (max-width: 576px) {
    body {
        padding-top: 60px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .voting-option {
        flex-direction: column;
        text-align: center;
    }
    .vote-action {
        margin-top: 10px;
    }
}

