: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://chixlegend.com/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;
}
.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));
}
/* Music Cards */
.music-card {
    background: linear-gradient(45deg, #201c4b, #0801109c);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}
.about-section{
    text-align:justify;
    max-width:90%;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.music-card:hover {
    transform: translateY(-5px);
    border-color:#8238d680;
    box-shadow: 0 2px 50px #341e55;
}
.music-img {
    position: relative;
    overflow: hidden;
}
.music-img img {
    width: 100%;
    transition: all 0.5s ease;
}
.music-card:hover .music-img img {
    transform: scale(1.1);
}
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}
.music-card:hover .play-overlay {
    opacity: 1;
}
.play-overlay i {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 0 10px var(--neon-pink);
}
.music-info {
    padding: 15px;
}
.music-info h5 {
    margin-bottom: 5px;
    font-weight: 600;
}
.music-info p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
}
/* 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;
}
/* Playlist Creator */
.playlist-creator, .playlist-preview {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}
.track-list {
    list-style: none;
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
}
.track-list li {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.track-list li:last-child {
    border-bottom: none;
}
.track-list .add-to-playlist {
    background: transparent;
    border: 1px solid var(--neon-purple);
    color: var(--neon-purple);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.track-list .add-to-playlist:hover {
    background: var(--neon-purple);
    color: white;
}
/* Fan Spotlight */
.fan-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}
.fan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--neon-purple);
}
.fan-image {
    position: relative;
    margin-bottom: 15px;
}
.fan-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--neon-purple);
}
.fan-badge {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-pink);
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    white-space: nowrap;
}
.fan-location {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.fan-quote {
    font-style: italic;
    color: #ccc;
}
/* Merchandise Improvements */
.limited-edition-alert {
    margin-bottom: 30px;
}
.recent-purchases {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.purchase-ticker {
    height: 40px;
    overflow: hidden;
    position: relative;
}
.purchase-item {
    padding: 8px 0;
    animation: ticker 15s infinite linear;
}
.merch-card {
  background: #2410385e;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 1px 40px #9370b252;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.merch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 3px 40px #9a7db36d;
}

.merch-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.merch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.merch-card:hover .merch-image img {
  transform: scale(1.1);
}

.badge.limited {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e63946;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
}

.merch-info {
  padding: 15px;
  text-align: center;
}

.merch-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.price {
  font-size: 14px;
  font-weight: bold;
  color: #00b4d8;
  margin-bottom: 12px;
}

.btn-shop {
  background: linear-gradient(45deg, var(--neon-purple), transparent, var(--neon-blue));
  border: none;
  padding: 10px 31px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background 0.8s ease-in-out;
}

.btn-shop:hover {
  background: linear-gradient(45deg, var(--neon-blue), transparent, var(--neon-purple));
}

@keyframes ticker {
    0% { transform: translateY(100%); }
    10% { transform: translateY(0); }
    30% { transform: translateY(0); }
    40% { transform: translateY(-100%); }
    100% { transform: translateY(-100%); }
}
/* 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:"Delius","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;
    }
}

