/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.nav-brand:hover {
    color: #4a90e2;
}

.brand-name {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #87CEEB, #1E90FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    line-height: 1;
}

.nav-brand:hover .brand-name {
    background: linear-gradient(45deg, #1E90FF, #87CEEB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

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

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    color: #1E90FF;
}

.editor-link {
    background: linear-gradient(45deg, #1E90FF, #1E90FF);
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.editor-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh + 200px);
    min-height: 700px;
    overflow: hidden;
    margin-top: -80px;
    margin-bottom: -20px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease-in-out;
}

.hero-slide.active img {
    transform: scale(1.1);
}

.hero-music-art {
    position: absolute;
    top: 60px;
    right: 30px;
    width: 250px;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 5;
    transition: opacity 1s ease-in-out;
}

.song-title {
    position: absolute;
    top: 320px;
    right: 30px;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    width: 250px;
    z-index: 5;
    transition: opacity 1s ease-in-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.music-art-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-music-art:hover .music-art-image {
    transform: scale(1.05);
}

.hero-music-info {
    position: absolute;
    top: 320px;
    right: 30px;
    text-align: center;
    z-index: 5;
    transition: opacity 1s ease-in-out;
    width: 300px;
}

.artist-name {
    color: #fff !important;
    font-size: 1.4rem !important;
    font-weight: 400 !important;
    margin-bottom: 5px;
    font-family: Arial, Helvetica, sans-serif !important;
    letter-spacing: normal !important;
    text-transform: none !important;
}

.song-title {
    color: #fff !important;
    font-size: 1.1rem !important;
    font-weight: 400 !important;
    opacity: 0.9;
    font-family: Arial, Helvetica, sans-serif !important;
    letter-spacing: normal !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}

/* Responsive Design for Music Art */
@media (max-width: 768px) {
    .hero-music-art {
        width: 200px;
        height: 200px;
    }
    
    .hero-music-info {
        top: 220px;
        right: 30px;
        width: 200px;
    }
    
    .artist-name {
        font-size: 1rem;
    }
    
    .song-title {
        font-size: 0.9rem;
        top: 270px;
        width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-music-art {
        width: 150px;
        height: 150px;
    }
    
    .hero-music-info {
        top: 170px;
        right: 30px;
        width: 150px;
    }
    
    .artist-name {
        font-size: 0.9rem;
    }
    
    .song-title {
        font-size: 0.8rem;
        top: 220px;
        width: 150px;
    }
}

.hero-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-width: 100%;
    min-height: 100%;
    transform: translateX(-50%) translateY(-50%);
    pointer-events: none;
    z-index: -1;
}

@media (min-aspect-ratio: 16/9) {
    .hero-video-iframe {
        height: 100vh;
        width: 177.78vh; /* 16:9 aspect ratio */
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-video-iframe {
        width: 100vw;
        height: 56.25vw;
    }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80') center/cover;
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    position: absolute;
    top: calc(50% + 15px);
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
    background: linear-gradient(45deg, #1E90FF, #1E90FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.8rem;
}

.btn-primary {
    background: linear-gradient(45deg, #87CEEB, #1E90FF);
    color: #fff;
    box-shadow: 0 5px 15px rgba(135, 206, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    text-align: right;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
}

/* Responsive design for section headers */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .section-title {
        text-align: left;
    }
    
    .show-all {
        text-align: left;
    }
}

.show-all {
    text-align: right;
    margin-right: 30px;
}

.show-all .btn {
    background: transparent;
    color: #ffffff;
    border: none;
    padding: 0;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    box-shadow: none;
    transition: color 0.3s ease;
}

.show-all .btn:hover {
    background: transparent;
    color: #4a90e2;
    transform: none;
    box-shadow: none;
    text-decoration: none;
}

/* Mobile responsive for show-all */
@media (max-width: 768px) {
    .show-all {
        text-align: left;
        margin-right: 0;
    }
    
    .show-all .btn {
        font-size: 0.9rem;
    }
}

/* Artists Section */
.artists-section {
background: #0a0a0a;
padding: 80px 0;
}

.artists-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0px;
justify-content: center;
align-items: center;
}

.artist-card {
text-align: center;
transition: transform 0.3s ease;
padding: 0;
margin: 10px;
}

.artist-card:hover {
transform: translateY(-10px);
}

.artist-card a {
text-decoration: none;
color: #fff;
}

.artist-image {
width: 350px;
height: 350px;
margin: 0;
border-radius: 0;
overflow: hidden;
border: none;
transition: all 0.3s ease;
aspect-ratio: 1/1;
object-fit: cover;
position: relative;
}

.artist-name {
position: absolute !important;
bottom: 10px;
right: 10px;
background: rgba(0, 0, 0, 0.8);
color: #fff;
padding: 5px 10px;
border-radius: 5px;
font-family: 'Inter', sans-serif;
font-size: 20px !important;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.artist-card:hover .artist-image {
transform: scale(1.05);
}

.artist-image img {
width: 100%;
height: 100%;
object-fit: cover;
aspect-ratio: 1/1;
}

.artist-card h3 {
font-size: 1.2rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
}

.show-all {
text-align: center;
}

/* Music Section */
.music-section {
background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.music-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 0px;
}

.music-card {
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 300px;
    height: 400px;
}

.music-card:hover {
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.1);
}

.music-cover {
position: relative;
height: 300px;
width: 300px;
overflow: hidden;
border-radius: 8px;
}

.music-cover img {
width: 100%;
height: 100%;
object-fit: cover;
}

.play-button {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 60px;
height: 60px;
background: rgba(255, 107, 107, 0.9);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: all 0.3s ease;
}

.music-card:hover .play-button {
opacity: 1;
}

.play-button i {
color: #fff;
font-size: 1.5rem;
margin-left: 3px;
}

.music-info {
padding: 1.5rem;
}

.music-info h4 {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 0.5rem;
}

.music-info p {
color: #aaa;
font-size: 0.9rem;
}

/* Producers Section */
.producers-section {
background: #0a0a0a;
padding: 80px 0;
}

.producers-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0px;
justify-content: center;
align-items: center;
}

.producer-card {
text-align: center;
transition: transform 0.3s ease;
padding: 0;
margin: 10px;
}

.producer-card:hover {
transform: translateY(-10px);
}

.producer-image {
width: 350px;
height: 350px;
margin: 0;
border-radius: 0;
overflow: hidden;
border: none;
transition: all 0.3s ease;
aspect-ratio: 1/1;
object-fit: cover;
position: relative;
}

.producer-card:hover .producer-image {
transform: scale(1.05);
}

.producer-name {
position: absolute !important;
bottom: 10px;
right: 10px;
background: rgba(0, 0, 0, 0.8);
color: #fff;
padding: 5px 10px;
border-radius: 5px;
font-family: 'Inter', sans-serif;
font-size: 20px !important;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.producer-image img {
width: 100%;
height: 100%;
object-fit: cover;
aspect-ratio: 1/1;
}

.producer-card h3 {
font-size: 1.1rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
}

/* Footer */
.footer {
background: #000;
border-top: 1px solid #333;
padding: 60px 0 20px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 3rem;
}

.footer-section h3 {
font-size: 1.2rem;
font-weight: 700;
margin-bottom: 1rem;
text-transform: uppercase;
letter-spacing: 1px;
}

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

.footer-section ul li {
margin-bottom: 0.5rem;
}

.footer-section ul li a {
color: #aaa;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-section ul li a:hover {
color: #87CEEB;
}

.social-links {
display: flex;
gap: 1rem;
}

.social-links a {
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
transition: all 0.3s ease;
}

.social-links a:hover {
background: #87CEEB;
transform: translateY(-3px);
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid #333;
color: #aaa;
}

/* Editor Toggle */
.editor-toggle {
position: fixed;
bottom: 30px;
right: 30px;
width: 60px;
height: 60px;
background: linear-gradient(45deg, #87CEEB, #4ecdc4);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: 0 5px 20px rgba(135, 206, 235, 0.4);
transition: all 0.3s ease;
z-index: 999;
}

.editor-toggle:hover {
transform: scale(1.1);
box-shadow: 0 8px 30px rgba(135, 206, 235, 0.6);
}

.editor-toggle i {
color: #fff;
font-size: 1.5rem;
}

/* Artist Page Styles */
.page-header {
padding: 120px 0 60px;
text-align: center;
background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.page-title {
font-size: clamp(2.5rem, 6vw, 4rem);
font-weight: 900;
margin-bottom: 1rem;
text-transform: uppercase;
letter-spacing: -2px;
background: linear-gradient(45deg, #87CEEB, #4ecdc4);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.page-subtitle {
font-size: 1.2rem;
color: #aaa;
max-width: 600px;
margin: 0 auto;
}

.artists-full-section {
background: #0a0a0a;
padding: 80px 0;
}

.artists-full-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: -20px;
justify-content: center;
align-items: center;
}

.artist-full-card {
position: relative;
overflow: hidden;
border-radius: 15px;
transition: all 0.3s ease;
margin: 10px;
}

.artist-full-card:hover {
transform: translateY(-10px);
}

.artist-full-card a {
    text-decoration: none;
    color: #fff;
    display: block;
}

.artist-full-image {
    position: relative;
    height: 300px;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
}

.artist-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: transform 0.3s ease;
}

.artist-full-card:hover .artist-full-image img {
    transform: scale(1.1);
}

.artist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.artist-full-card:hover .artist-overlay {
    transform: translateY(0);
}

/* New styles for artist info positioned under images */
.artist-full-card .artist-info {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
}

.artist-info h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    font-family: Arial, Helvetica, sans-serif !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    color: #ffffff !important;
}

.artist-info p {
    color: #87CEEB;
    margin-bottom: 1rem;
    font-weight: 500;
}

.artist-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.artist-stats span {
    font-size: 0.8rem;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Artist Hero Section */
.artist-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.artist-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.artist-hero-background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.artist-hero-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.artist-hero-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-width: 100%;
    min-height: 100%;
    transform: translateX(-50%) translateY(-50%);
    pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
    .artist-hero-background iframe {
        height: 100vh;
        width: 177.78vh; /* 16:9 aspect ratio */
    }
}

@media (max-aspect-ratio: 16/9) {
    .artist-hero-background iframe {
        width: 100vw;
        height: 56.25vw;
    }
}

.artist-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.artist-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.artist-info {
    max-width: 600px;
}

.artist-name {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
}

.artist-genre {
    font-size: 1.5rem;
    color: #87CEEB;
    margin-bottom: 2rem;
    font-weight: 500;
}

.artist-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.artist-stats span {
    font-size: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Artist About Section */
.artist-about {
    background: #0a0a0a;
    padding: 80px 0;
}

.artist-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.artist-about-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.artist-bio {
    color: #ccc;
    line-height: 1.8;
}

.artist-bio p {
    margin-bottom: 1.5rem;
}

.artist-about-image {
    border-radius: 0;
    overflow: hidden;
}

.artist-about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* Artist Music Section */
.artist-music {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
}

/* Artist Albums Section */
.artist-albums {
    background: #0a0a0a;
    padding: 80px 0;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.album-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.album-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.album-cover {
    height: 250px;
    overflow: hidden;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-info {
    padding: 1.5rem;
}

.album-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.album-info p {
    color: #aaa;
    margin-bottom: 0.5rem;
}

.album-tracks {
    font-size: 0.9rem;
    color: #87CEEB;
}

/* Artist Achievements Section */
.artist-achievements {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.achievement-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #87CEEB, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.achievement-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.achievement-item p {
    color: #aaa;
    font-size: 0.9rem;
}

/* Artist Social Section */
.artist-social {
    background: #0a0a0a;
    padding: 80px 0;
}

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

.social-link-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link-large:hover {
    background: rgba(255, 107, 107, 0.2);
    transform: translateY(-3px);
}

.social-link-large i {
    font-size: 1.5rem;
    color: #87CEEB;
    width: 30px;
}

.social-link-large span {
    font-size: 0.9rem;
    color: #aaa;
}

.social-link-large strong {
    font-weight: 600;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    background: linear-gradient(45deg, #87CEEB, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-text p {
    margin-bottom: 1.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #87CEEB;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #aaa;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero-image {
    border-radius: 15px;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Mission & Vision Section */
.mission-vision {
    background: #0a0a0a;
    padding: 80px 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #87CEEB, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.mission-card p,
.vision-card p {
    color: #ccc;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #87CEEB, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.value-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.value-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Leadership Section */
.leadership-section {
    background: #0a0a0a;
    padding: 80px 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.leader-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.artist-image,
.producer-image {
    width: 350px;
    height: 350px;
    border-radius: 0;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.leader-info {
    padding: 2rem;
}

.leader-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.leader-title {
    color: #87CEEB;
    font-weight: 500;
    margin-bottom: 1rem;
}

.leader-bio {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.leader-social {
    display: flex;
    gap: 1rem;
}

.leader-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.leader-social a:hover {
    background: #87CEEB;
    transform: translateY(-3px);
}

/* Achievements Section */
.achievements-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
}

.achievements-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.achievements-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin: 0 2rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.timeline-content p {
    color: #ccc;
    line-height: 1.6;
}

/* Partners Section */
.partners-section {
    background: #0a0a0a;
    padding: 80px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 120px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
}

.services-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Main Services Section */
.main-services {
    background: #0a0a0a;
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #ff6b6b;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.service-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    color: #aaa;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.service-card li:last-child {
    border-bottom: none;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.step-content p {
    color: #ccc;
    line-height: 1.6;
}

/* Success Stories Section */
.success-stories {
    background: #0a0a0a;
    padding: 80px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.story-image {
    height: 300px;
    overflow: hidden;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 0;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.story-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.story-stats span {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cta-buttons .btn-secondary:hover {
    background: #fff;
    color: #764ba2;
}

/* Contact Page Styles */
.contact-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
}

.contact-items {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.contact-details p {
    color: #ccc;
    line-height: 1.6;
}

.social-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.contact-form h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.full-width {
    width: 100%;
}

/* Map Section */
.map-section {
    background: #0a0a0a;
    padding: 80px 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #aaa;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.map-placeholder p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.map-placeholder small {
    font-size: 0.9rem;
    color: #888;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.faq-question i {
    color: #ff6b6b;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
    }
    
    .producers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 1.5rem;
    }

    .contact-item {
        gap: 1rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .map-container {
        height: 300px;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .artists-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }
    
    .producers-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.3rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
    }

    .map-container {
        height: 250px;
    }

    .map-placeholder i {
        font-size: 2rem;
    }

    .map-placeholder p {
        font-size: 1rem;
    }
}

/* Music Player Modal */
.music-player-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.music-player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.music-player-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: slideUp 0.3s ease;
}

.music-player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.now-playing h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.now-playing p {
    font-size: 1rem;
    color: #87CEEB;
    margin: 0.25rem 0 0 0;
}

.player-close-btn {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.player-close-btn:hover {
    color: #fff;
}

.music-player-content {
    padding: 2rem;
}

.player-visual {
    position: relative;
    margin-bottom: 2rem;
}

.player-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.player-media-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    display: none;
}

.player-media-container iframe,
.player-media-container audio {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.player-controls {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
}

.player-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.player-progress span {
    color: #aaa;
    font-size: 0.9rem;
    min-width: 40px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #87CEEB, #1E90FF);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.player-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.play-pause-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #87CEEB, #1E90FF);
}

.play-pause-btn:hover {
    background: linear-gradient(135deg, #1E90FF, #87CEEB);
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-volume i {
    color: #aaa;
}

.player-volume input[type="range"] {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.player-volume input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #87CEEB;
    border-radius: 50%;
    cursor: pointer;
}

.player-volume input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #87CEEB;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to { 
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Responsive Music Player */
@media (max-width: 768px) {
    .music-player-container {
        width: 95%;
        max-width: 400px;
    }
    
    .music-player-header {
        padding: 1rem 1.5rem;
    }
    
    .now-playing h3 {
        font-size: 1.2rem;
    }
    
    .music-player-content {
        padding: 1.5rem;
    }
    
    .player-visual img {
        height: 200px;
    }
    
    .player-media-container {
        height: 200px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }
    
    .play-pause-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .music-player-container {
        width: 98%;
        max-width: 350px;
    }
    
    .player-visual img {
        height: 180px;
    }
    
    .player-media-container {
        height: 180px;
    }
    
    .player-controls {
        padding: 1rem;
    }
    
    .control-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .play-pause-btn {
        width: 45px;
        height: 45px;
    }
}

/* Blog Admin Panel Styles */
#blog-admin-panel {
    font-family: 'Inter', sans-serif;
}

#blog-admin-panel input,
#blog-admin-panel select,
#blog-admin-panel textarea {
    font-family: 'Inter', sans-serif;
}

#blog-admin-panel input:focus,
#blog-admin-panel select:focus,
#blog-admin-panel textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

#blog-admin-panel button {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

#blog-admin-panel button:hover {
    transform: translateY(-1px);
}

#admin-toggle-btn:hover {
    background: #ff5252 !important;
    transform: translateY(-2px);
    z-index: 1001;
}

/* Blog Card Hover Effects */
.blog-card {
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.blog-card-image img {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

/* Category Button Active State */
.blog-category-btn.active {
    background: #ff6b6b !important;
    border-color: #ff6b6b !important;
    color: #fff !important;
}

/* Newsletter Form Styling */
.newsletter-input:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

.newsletter-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

/* Load More Button */
.load-more-btn:hover {
    background: #ff6b6b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Responsive Admin Panel */
@media (max-width: 768px) {
    #blog-admin-panel {
        width: 100%;
        right: -100%;
    }
    
    #admin-toggle-btn {
        top: 10px;
        right: 10px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Our Universe Section Styles */
.our-universe-section {
    padding: 0px 0;
    margin-top: -80px;
    background: #ffffff;
    overflow: hidden;
}

.universe-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.logo-track {
    display: flex;
    animation: scrollLogos 15s linear infinite;
    width: fit-content;
}

.logo-item {
    flex: 0 0 auto;
    margin: 0 30px;
    max-width: 180px;
    max-height: 120px;
    overflow: visible;
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.3));
}

.logo-item img {
    width: auto;
    height: auto;
    max-width: 180px;
    max-height: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* Animation for continuous scrolling */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 768px) {
    .our-universe-section {
        padding: 30px 0;
    }
    
    .universe-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .logo-item {
        max-width: 150px;
        max-height: 90px;
        margin: 0 20px;
    }
    
    .logo-item img {
        max-width: 150px;
        max-height: 90px;
    }
    
    .logo-track {
        animation: scrollLogos 12s linear infinite;
    }
}

@media (max-width: 480px) {
    .logo-item {
        max-width: 120px;
        max-height: 75px;
        margin: 0 15px;
    }
    
    .logo-item img {
        max-width: 120px;
        max-height: 75px;
    }
    
    .logo-track {
        animation: scrollLogos 10s linear infinite;
    }
}
