/* ===== Core Styles ===== */
:root {
    --black: #000000;
    --dark: #111111;
    --pink: #ff2d75;
    --pink-light: #ff5c8d;
    --green: #00ff88;
    --green-dark: #00cc6a;
    --white: #ffffff;
    --gray: #888888;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
}

/* Buttons */
.btn-pink {
    background: var(--pink);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-pink:hover {
    background: var(--pink-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 45, 117, 0.3);
}

/* Forms */
.form-control {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    border-radius: 50px;
    padding: 12px 20px;
}

.form-control:focus {
    background: rgba(255,255,255,0.2);
    color: white;
    box-shadow: 0 0 0 3px rgba(255,45,117,0.3);
}

/* Dashboard Cards */
.profile-card {
    background: var(--dark);
    border-radius: 12px;
    border-left: 4px solid var(--pink);
}

.link-card {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: all 0.3s;
}

.link-card:hover {
    background: rgba(255,255,255,0.1);
    border-left: 4px solid var(--green);
}

/* ===== Base Styles ===== */
:root {
    --black: #000000;
    --dark: #111111;
    --pink: #ff2d75;
    --pink-light: #ff5c8d;
    --green: #00ff88;
    --green-dark: #00cc6a;
    --white: #ffffff;
    --gray: #888888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Button Styles ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
}

.btn-pink {
    background-color: var(--pink);
    color: var(--white);
}

.btn-pink:hover {
    background-color: var(--pink-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 45, 117, 0.3);
}

.btn-green {
    background-color: var(--green);
    color: var(--black);
}

.btn-green:hover {
    background-color: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

/* ===== Header ===== */
header {
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.logo {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--pink), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,45,117,0.1) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--white), var(--gray));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero h1 span {
    background: linear-gradient(90deg, var(--pink), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--gray);
}

/* ===== Music Platform Section ===== */
.platforms {
    padding: 5rem 0;
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
}

.platforms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 65%, rgba(0,255,136,0.05) 100%);
    z-index: 0;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.platform-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.platform-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
    border-color: var(--pink);
}

.platform-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

/* ===== Artist Showcase ===== */
.artists {
    padding: 5rem 0;
    position: relative;
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.artist-card {
    background: var(--dark);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.artist-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.artist-info {
    padding: 1.5rem;
}

.artist-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.artist-genre {
    color: var(--pink);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CTA Section ===== */
.cta {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
    position: relative;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: var(--gray);
    font-size: 1.125rem;
}

/* ===== Footer ===== */
footer {
    padding: 3rem 0;
    background-color: var(--dark);
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    color: var(--gray);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--pink);
}

.copyright {
    color: var(--gray);
    font-size: 0.875rem;
}

/* ===== Animations ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}