:root {
  --bg-dark: #070709;
  --card-bg: rgba(255, 255, 255, 0.05);
  --accent-neon: #00f2ff; /* The futuristic blue glow */
  --text-main: #ffffff;
  --text-dim: #8b8b9c;
  --glass-border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: "Inter", sans-serif;
  margin: 0;
  line-height: 1.6;
  background-image: url('images/bg/bg.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Hero Section */
.hero {
    height: 698px;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    background-image: url('images/bg/hero.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(7,7,9,0.3) 50%, rgba(7,7,9,0.8) 100%);
    z-index: 1;
}

.hero-nav {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(7, 7, 9, 0.3);
    border-bottom: 1px solid var(--glass-border);
}

.nav-search {
    flex: 1;
    max-width: 400px;
    margin: 0 2rem;
}

.nav-search input {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.nav-search input:focus {
    border-color: var(--accent-neon);
}

.nav-search input::placeholder {
    color: var(--text-dim);
}

.nav-logo a {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-logo a:hover {
    transform: scale(1.05);
}

.nav-logo-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-neon);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-neon);
    transition: width 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    padding: 0 5%;
}

.hero-text {
    text-align: center;
}

.hero-title {
    font-size: 85px;
    font-weight: 900;
    line-height: 102px;
    margin: 0;
    background: linear-gradient(45deg, #5FB343, #05d3f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 30px;
    color: var(--text-dim);
    margin: 20px 0 0 0;
    font-weight: 300;
}

/* Header & Glassmorphism */
header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(7, 7, 9, 0.5);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent-neon);
  text-shadow: 0 0 10px rgba(0, 242, 255, 0.4);
}

.nav-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.nav-links input[type="text"] {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: 1px solid var(--glass-border);
  padding: 10px 15px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  outline: none;
  width: 200px;
  transition: border-color 0.3s;
}

.nav-links input[type="text"]:focus {
  border-color: var(--accent-neon);
}

.nav-links input[type="text"]::placeholder {
  color: var(--text-dim);
}

.nav-links select {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: 1px solid var(--accent-neon);
  padding: 10px 15px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  outline: none;
  cursor: pointer;
}

/* Search Section */
.search-section {
    padding: 3rem 5%;
    background: rgba(7, 7, 9, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/bg/bg.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
    z-index: -1;
}

.search-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.search-container input[type="text"] {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: 1px solid var(--glass-border);
    padding: 15px 20px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    outline: none;
    width: 300px;
    transition: border-color 0.3s;
    font-size: 1rem;
}

.search-container input[type="text"]:focus {
    border-color: var(--accent-neon);
}

.search-container input[type="text"]::placeholder {
    color: var(--text-dim);
}

.search-container select {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: 1px solid var(--accent-neon);
    padding: 15px 20px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    outline: none;
    cursor: pointer;
    font-size: 1rem;
}

/* Firefox specific fixes */
@-moz-document url-prefix() {
    .billboard-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 15 !important;
        padding: 4rem 5% 3.5rem 5% !important; /* Added more bottom padding */
    }
    
    .billboard-ad {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        padding: 1rem 1rem 0.75rem 1rem !important; /* Added more bottom padding */
    }
    
    .billboard-content {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        padding: 1.5rem 3.5rem 0.75rem 3.5rem !important; /* Added more bottom padding */
    }
    
    .billboard-left {
        padding-bottom: 0.75rem !important; /* Added more bottom padding */
        padding-top: 0.5rem !important; /* Keep top padding */
    }
}
.billboard-section {
    padding: 3rem 5%;
    margin-bottom: 2rem;
    background: rgba(7, 7, 9, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 310px; /* Adjusted for 250px billboard height */
}

.billboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/bg/bg.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.3;
    z-index: -1;
}

.billboard-ad {
    width: 100%;
    max-width: 970px;
    height: 250px; /* Standard billboard height */
    margin: 0 auto;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-neon);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2);
}

.billboard-ad:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 242, 255, 0.4);
    border-color: #00ff88;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.billboard-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.billboard-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 3rem;
    z-index: 1;
}

.billboard-left {
    flex: 1;
    text-align: left;
}

.billboard-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.billboard-ad:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 242, 255, 0.4);
    border-color: #00ff88;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.billboard-badge {
    background: var(--accent-neon);
    color: var(--bg-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.billboard-content h2 {
    color: var(--text-main);
    font-size: 2.5rem;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #00f2ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.billboard-content p {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin: 0 0 1.5rem 0;
    max-width: 400px;
    line-height: 1.4;
}

.billboard-cta {
    background: linear-gradient(45deg, var(--accent-neon), #00ff88);
    color: var(--bg-dark);
    border: none;
    border-radius: 25px;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.3);
}

.billboard-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 242, 255, 0.5);
}

.billboard-visual {
    position: relative;
    width: 200px;
    height: 150px;
}

.music-notes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.note {
    position: absolute;
    font-size: 2rem;
    color: var(--accent-neon);
    animation: float 3s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.8);
}

.note:nth-child(1) {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.note:nth-child(2) {
    top: 10px;
    right: 30px;
    animation-delay: 0.5s;
}

.note:nth-child(3) {
    bottom: 30px;
    left: 40px;
    animation-delay: 1s;
}

.note:nth-child(4) {
    bottom: 20px;
    right: 20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.spotlight-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.spotlight-text h3 {
    color: var(--text-main);
    font-size: 1.2rem;
    margin: 0.5rem 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.9;
}

.spotlight-text h3:nth-child(1) {
    color: #00f2ff;
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.8);
}

.spotlight-text h3:nth-child(2) {
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
}

.spotlight-text h3:nth-child(3) {
    color: var(--accent-neon);
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.8);
}

/* Featured Squares */
.featured-squares {
    padding: 3rem 5%;
    position: relative;
    background: rgba(7, 7, 9, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.featured-squares::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/bg/bg.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.3;
    z-index: -1;
}

.squares-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(511px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.square-item {
    position: relative;
    width: 100%;
    height: 341px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid var(--glass-border);
}

.square-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 242, 255, 0.5);
}

.square-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.square-item:hover .square-img {
    transform: scale(1.1);
}

.square-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(7,7,9,0) 10%, rgba(7,7,9,0.9) 100%);
    padding: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.square-item:hover .square-overlay {
    transform: translateY(0);
    opacity: 1;
}

.square-overlay h3 {
    color: var(--text-main);
    font-size: 1.5rem;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.square-overlay p {
    color: var(--text-dim);
    font-size: 1rem;
    margin: 0;
}

/* Ad Banner */
.ad-banner {
  background: linear-gradient(
    135deg,
    rgba(0, 242, 255, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--accent-neon);
  margin: 3rem 5%;
  padding: 2rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.ad-badge {
  background: var(--accent-neon);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.ad-content h2 {
  margin: 10px 0 5px 0;
}

.ad-content p {
color: var(--text-dim);
margin: 0;
}

/* Video Section Styles */
.video-section {
    padding: 3rem 5%;
    background: rgba(7, 7, 9, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.video-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.filter-group select,
.filter-group input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.75rem;
    color: white;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.filter-group select:focus,
.filter-group input:focus {
    border-color: var(--accent-neon);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    background: rgba(7, 7, 9, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
}

.artist-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    background: rgba(7, 7, 9, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.video-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 242, 255, 0.3);
    border-color: var(--accent-neon);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-card:hover .video-play-btn {
    background: var(--accent-neon);
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.video-info {
    padding: 1.5rem;
    flex: 1;
}

.video-info h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.video-info h3:hover {
    color: var(--accent-neon);
}

.video-artist {
    color: var(--accent-neon);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.video-description {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.video-actions {
    display: flex;
    gap: 0.5rem;
}

.video-action-btn {
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid var(--accent-neon);
    border-radius: 8px;
    color: white;
    padding: 0.5rem 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-action-btn:hover {
    background: rgba(0, 242, 255, 0.2);
    border-color: #00ff88;
    transform: translateY(-2px);
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    max-width: 900px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(0, 242, 255, 0.1);
    border-bottom: 1px solid var(--glass-border);
}

.modal-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-neon);
}

.modal-body {
    display: flex;
    padding: 0;
}

.video-container {
    flex: 2;
    min-height: 400px;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.video-info {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.video-info p {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.video-actions {
    display: flex;
    gap: 1rem;
}

.share-btn,
.fullscreen-btn {
    background: var(--accent-neon);
    color: var(--bg-dark);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-btn:hover,
.fullscreen-btn:hover {
    background: #00ff88;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .video-filters {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-body {
        flex-direction: column;
    }
    
    .video-container {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .video-card {
        margin-bottom: 1rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 3rem 5%;
    background: rgba(7, 7, 9, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    position: relative;
    margin: 2rem 5%;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
}

.faq-category h2 {
    color: var(--accent-neon);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Inter', sans-serif;
}

.faq-category h2 i {
    font-size: 1.5rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-neon);
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-question:hover {
    background: rgba(0, 242, 255, 0.1);
}

.faq-question h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.faq-question i {
    color: var(--accent-neon);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-dim);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer a {
    color: var(--accent-neon);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
    color: #00ff88;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        margin: 1rem 2rem;
        padding: 2rem 3%;
    }
    
    .faq-category {
        padding: 1.5rem;
    }
    
    .faq-category h2 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        margin: 1rem;
        padding: 1.5rem 2%;
    }
    
    .faq-category {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .faq-question {
        padding: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question i {
        align-self: flex-end;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 0.75rem 0.75rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Artist Section */
.artists-section {
    padding: 3rem 5%;
    position: relative;
    background: rgba(7, 7, 9, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.artists-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url('images/bg/bg.jpg');
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
opacity: 0.1;
z-index: -1;
}

.section-title {
margin: 0 5%;
position: relative;
z-index: 1;
}

.neon-line {
border: 0;
height: 1px;
background: var(--accent-neon);
width: 50px;
margin-left: 0;
box-shadow: 0 0 10px var(--accent-neon);
  background: var(--accent-neon);
  width: 50px;
  margin-left: 0;
  box-shadow: 0 0 10px var(--accent-neon);
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  padding: 2rem 5%;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(7, 7, 9, 0.5);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pagination-btn {
    padding: 0.75rem 1rem;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid var(--accent-neon);
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(0, 242, 255, 0.2);
    border-color: #00ff88;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.3);
}

.pagination-btn.active {
    background: var(--accent-neon);
    color: var(--bg-dark);
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.pagination-btn:disabled:hover {
    background: rgba(0, 242, 255, 0.1);
    border-color: var(--accent-neon);
    transform: none;
    box-shadow: none;
}

.artist-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 25px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.artist-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.artist-profile {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--glass-border);
    transition: border-color 0.3s;
    order: -1;
}

.artist-profile:hover {
    border-color: var(--accent-neon);
}

.artist-info {
    text-align: center;
    width: 100%;
}

.artist-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    cursor: pointer;
    transition: color 0.3s;
}

.artist-info h3:hover {
    color: var(--accent-neon);
}

.genre-tag {
    font-size: 0.75rem;
    color: var(--accent-neon);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 auto;
    display: inline-block;
}

.no-results {
  text-align: center;
  color: var(--text-dim);
  font-size: 1.2rem;
  padding: 3rem;
  grid-column: 1 / -1;
}

.artist-card:hover {
  border-color: var(--accent-neon);
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 242, 255, 0.5);
}

.artist-card h3 {
  margin: 0 0 5px 0;
  font-size: 1.4rem;
}

.artist-bio {
  color: var(--text-dim);
  font-size: 0.95rem;
  flex-grow: 1;
}

/* Media Player Toggle */
.media-player-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.player-toggle {
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-dim);
  border: 1px solid var(--glass-border);
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
  font-family: "Inter", sans-serif;
}

.player-toggle:hover {
  border-color: var(--accent-neon);
  color: var(--text-main);
}

.player-toggle.active {
  background: var(--accent-neon);
  color: var(--bg-dark);
  border-color: var(--accent-neon);
  font-weight: 500;
}

/* Media & Socials */
.embed-container {
  margin: 10px 0;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.streaming-links,
.social-links {
  margin-top: 15px;
}

.streaming-links h4,
.social-links h4 {
  margin: 0 0 10px 0;
  font-size: 0.9rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stream-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.8rem;
  border: 1px solid var(--glass-border);
  padding: 6px 12px;
  border-radius: 15px;
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.5);
}

.stream-link:hover {
  border-color: var(--accent-neon);
  color: var(--accent-neon);
  transform: translateY(-2px);
}

.stream-link.spotify:hover {
  border-color: #1db954;
  color: #1db954;
}
.stream-link.apple:hover {
  border-color: #fa243c;
  color: #fa243c;
}
.stream-link.youtube:hover {
  border-color: #ff0000;
  color: #ff0000;
}
.stream-link.deezer:hover {
  border-color: #e82047;
  color: #e82047;
}
.stream-link.soundcloud:hover {
  border-color: #ff5500;
  color: #ff5500;
}

.social-grid {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.2);
}

.social-link:hover {
  border-color: var(--accent-neon);
  transform: translateY(-2px);
}

.social-link.instagram:hover {
  border-color: #e4405f;
}
.social-link.twitter:hover {
  border-color: #1da1f2;
}
.social-link.facebook:hover {
  border-color: #1877f2;
}
.social-link.tiktok:hover {
  border-color: #000000;
}

/* Artist Profile Page Specific Styles */
.artist-profile-section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(7, 7, 9, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.artist-profile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/bg/herobg.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.7;
    z-index: -1;
}

.artist-profile-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.artist-main-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.artist-profile-image-container {
    text-align: center;
    position: relative;
}

.artist-profile-main {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid var(--glass-border);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.artist-profile-main:hover {
    border-color: var(--accent-neon);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 242, 255, 0.3);
}

.artist-details {
    text-align: center;
}

.artist-details h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #00f2ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 242, 255, 0.3);
    letter-spacing: 2px;
}

.artist-bio-full {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    text-align: left;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.artist-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.action-btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn.primary {
    background: linear-gradient(45deg, var(--accent-neon), #00ff88);
    color: var(--bg-dark);
    box-shadow: 0 5px 20px rgba(0, 242, 255, 0.4);
}

.action-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 242, 255, 0.6);
}

.action-btn.primary.following {
    background: linear-gradient(45deg, #00ff88, #00f2ff);
}

.action-btn.secondary {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--accent-neon);
    box-shadow: 0 5px 20px rgba(0, 242, 255, 0.2);
}

.action-btn.secondary:hover {
    background: var(--accent-neon);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 242, 255, 0.4);
}

.artist-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.music-section,
.streaming-section,
.social-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.music-section:hover,
.streaming-section:hover,
.social-section:hover {
    border-color: var(--accent-neon);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.music-section h3,
.streaming-section h3,
.social-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-main);
    text-align: center;
    position: relative;
}

.music-section h3::after,
.streaming-section h3::after,
.social-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-neon);
    border-radius: 1px;
}

.streaming-grid,
.social-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.stream-link-large,
.social-link-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.stream-link-large::before,
.social-link-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 242, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.stream-link-large:hover::before,
.social-link-large:hover::before {
    opacity: 1;
}

.stream-link-large:hover,
.social-link-large:hover {
    border-color: var(--accent-neon);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 242, 255, 0.2);
}

.stream-icon,
.social-icon {
    font-size: 2.5rem;
    transition: transform 0.3s;
}

.stream-link-large:hover .stream-icon,
.social-link-large:hover .social-icon {
    transform: scale(1.2);
}

.stream-name,
.social-name {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stream-link-large.spotify:hover { 
    border-color: #1DB954; 
    box-shadow: 0 20px 40px rgba(29, 185, 84, 0.3);
}
.stream-link-large.apple:hover { 
    border-color: #cdcbcb; 
    box-shadow: 0 20px 40px rgba(250, 36, 60, 0.3);
}
.stream-link-large.youtube:hover { 
    border-color: #FF0000; 
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
}
.stream-link-large.deezer:hover { 
    border-color: #E82047; 
    box-shadow: 0 20px 40px rgba(232, 32, 71, 0.3);
}
.stream-link-large.soundcloud:hover { 
    border-color: #FF5500; 
    box-shadow: 0 20px 40px rgba(255, 85, 0, 0.3);
}

.social-link-large.instagram:hover { 
    border-color: hwb(349 25% 11% / 0.326); 
    box-shadow: 0 20px 40px rgba(228, 64, 95, 0.3);
}
.social-link-large.twitter:hover { 
    border-color: #1DA1F2; 
    box-shadow: 0 20px 40px rgba(29, 161, 242, 0.3);
}
.social-link-large.facebook:hover { 
    border-color: #1877F2; 
    box-shadow: 0 20px 40px rgba(24, 119, 242, 0.3);
}
.social-link-large.tiktok:hover { 
    border-color: #000000; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.related-artists-section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.error-message {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-dim);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.error-message h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.back-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(45deg, var(--accent-neon), #00ff88);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 242, 255, 0.4);
}

/* Responsive Design for Artist Profile */
@media (max-width: 768px) {
    .artist-profile-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .artist-details h2 {
        font-size: 2.5rem;
    }
    
    .artist-profile-main {
        max-width: 300px;
        height: 300px;
    }
    
    .artist-bio-full {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .artist-actions {
        justify-content: center;
    }
    
    .streaming-grid,
    .social-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .music-section,
    .streaming-section,
    .social-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .artist-profile-section {
        padding: 2rem 1rem;
        border-radius: 12px;
    }
    
    .artist-details h2 {
        font-size: 2rem;
    }
    
    .streaming-grid,
    .social-grid-large {
        grid-template-columns: 1fr;
    }
    
    .action-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}
footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3, .footer-section h4 {
    color: var(--accent-neon);
    margin: 0 0 15px 0;
    font-weight: 700;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section h4 {
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-dim);
    margin: 0;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-neon);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 5%;
    border-top: 1px solid var(--glass-border);
    color: var(--text-dim);
}

/* Terms and Privacy Page Styles */
.terms-section,
.privacy-section {
    padding: 4rem 5%;
    min-height: 60vh;
    background: rgba(7, 7, 9, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.terms-container,
.privacy-container {
    max-width: 800px;
    margin: 0 auto;
}

.terms-content,
.privacy-content {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.terms-content h2,
.privacy-content h2 {
    color: var(--accent-neon);
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.last-updated {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.terms-category,
.privacy-category {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.terms-category:last-child,
.privacy-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.terms-category h3,
.privacy-category h3 {
    color: var(--text-main);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
}

.terms-category h3::before,
.privacy-category h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--accent-neon);
    margin-right: 1rem;
    border-radius: 2px;
}

.terms-category p,
.privacy-category p {
    color: var(--text-dim);
    line-height: 1.7;
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.terms-category ul,
.privacy-category ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-category li,
.privacy-category li {
    color: var(--text-dim);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.terms-category a,
.privacy-category a {
    color: var(--accent-neon);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.terms-category a:hover,
.privacy-category a:hover {
    border-bottom-color: var(--accent-neon);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

/* Responsive Design for Terms/Privacy */
@media (max-width: 768px) {
    .terms-section,
    .privacy-section {
        padding: 2rem 3%;
    }
    
    .terms-content,
    .privacy-content {
        padding: 2rem 1.5rem;
    }
    
    .terms-content h2,
    .privacy-content h2 {
        font-size: 2rem;
    }
    
    .terms-category h3,
    .privacy-category h3 {
        font-size: 1.1rem;
    }
    
    .terms-category h3::before,
    .privacy-category h3::before {
        width: 3px;
        height: 16px;
        margin-right: 0.8rem;
    }
}
