:root {
    --primary: #FF69B4; /* Hot Pink */
    --primary-dim: #ff8dc6;
    --secondary: #4D4DFF; /* Electric Blue */
    --accent: #CCFF00; /* Lime Green */
    --dark: #0A0A23; /* Dark Navy */
    --light: #F0F8FF; /* Alice Blue */
    --white: #FFFFFF;
    --gray: #8888AA;
    
    --font-head: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Custom cursor */
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--dark);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--dark);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    /* Slight delay handled by JS or CSS transition */
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none; /* Keep custom cursor */
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.1;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.section-title.center {
    text-align: center;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--accent);
    z-index: -1;
    transform: skewX(-15deg);
    opacity: 0.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

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

.btn-outline {
    border-color: var(--dark);
    color: var(--dark);
}

.btn-outline:hover {
    background-color: var(--dark);
    color: var(--white);
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    border: 1px solid var(--dark);
}

.btn-sm:hover {
    background-color: var(--dark);
    color: var(--white);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

nav.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--dark);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-nav {
    padding: 0.5rem 1.5rem;
    background-color: var(--dark);
    color: var(--white) !important;
    border-radius: 30px;
}

.btn-nav:hover {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 10s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background-color: var(--primary);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background-color: var(--secondary);
    bottom: -50px;
    right: -100px;
    animation-delay: -2s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background-color: var(--accent);
    top: 40%;
    left: 60%;
    animation-delay: -5s;
}

.hero-title {
    font-size: 6rem; /* Huge text */
    line-height: 0.9;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.hero-title .line {
    display: block;
}

.hero-title .accent {
    color: transparent;
    -webkit-text-stroke: 2px var(--dark);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--gray);
}

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

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: #999;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.about-image .img-placeholder {
    height: 600px;
    background: linear-gradient(45deg, var(--primary-dim), var(--secondary));
    color: white;
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 2rem;
    color: #555;
}

.stats {
    display: flex;
    gap: 3rem;
}

.stat-number {
    display: block;
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Performances */
.tour-dates {
    max-width: 800px;
    margin: 0 auto;
}

.tour-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #ddd;
    transition: var(--transition);
}

.tour-item:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.tour-item .date {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 2rem;
    min-width: 60px;
}

.tour-item .date .day {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 700;
}

.tour-item .date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary);
}

.tour-item .venue-info {
    flex-grow: 1;
}

.tour-item .venue-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.tour-item .venue-info p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Merch */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.see-all {
    font-weight: 600;
    border-bottom: 2px solid var(--accent);
}

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

.merch-item {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.merch-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.merch-img {
    height: 350px;
    position: relative;
    background-color: #f9f9f9;
}

.merch-img .img-placeholder {
    min-height: auto;
    background: #f0f0f0;
}

.tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent);
    color: var(--dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.merch-info {
    padding: 1.5rem;
    text-align: center;
}

.merch-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.merch-info p {
    color: var(--primary);
    font-weight: 700;
}

/* Video */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background-color: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7)), #333;
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
    transition: var(--transition);
}

.video-placeholder:hover i {
    transform: scale(1.1);
    color: var(--primary);
}

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

.album-card {
    text-align: center;
}

.album-cover {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%; /* Circle covers like classic records */
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    transition: var(--transition);
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.album-cover:hover {
    transform: rotate(5deg) scale(1.05);
    border-color: var(--primary);
}

.album-card h3 {
    margin-bottom: 0.5rem;
}

.album-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.album-links a {
    font-size: 1.2rem;
    color: var(--gray);
}

.album-links a:hover {
    color: var(--dark);
}

/* Press */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.gallery-item .img-placeholder {
    min-height: 100%;
    background-color: #eee;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.center-btn {
    text-align: center;
    margin-top: 2rem;
}

/* Contact */
.contact-box {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
    border-top: 5px solid var(--primary);
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

input, select, textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.full-width {
    width: 100%;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    display: inline-block;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Scroll Reveal Classes */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal-up.active { opacity: 1; transform: translateY(0); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* Responsive */
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .hero-title { font-size: 3.5rem; }
    
    .menu-toggle { display: block; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
    }
    
    .nav-links.active { right: 0; }
    
    .about-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.large { grid-column: span 2; }
    
    .cursor-dot, .cursor-outline { display: none; } /* Hide custom cursor on touch */
    body, a { cursor: auto; } /* Restore default cursor */
}
