:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --primary: #7000ff;
    --secondary: #00f0ff;
    --accent: #ff0055;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --easing: cubic-bezier(0.23, 1, 0.32, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 80px;
    /* Space for player */
}

/* 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(--secondary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--secondary);
    transition: width 0.2s, height 0.2s, background-color 0.2s, opacity 0.3s;
}

/* Typography & Utilities */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

.highlight {
    color: var(--secondary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--secondary), var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

.text-center {
    text-align: center;
}

/* Header */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
    display: flex;
    justify-content: center;
}

nav {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    /* filter: invert(1) brightness(2); Removed as per user request */
}



.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s var(--easing);
}

.nav-links li a:hover {
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    /* Subtle hover bg */
}

/* Active State for Scroll Spy */
.nav-links li a.active {
    background: var(--text-main);
    color: var(--bg-dark);
    font-weight: 700;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    text-shadow: none;
}

.nav-links li a.btn-primary:hover,
.nav-links li a.active:hover {
    background: var(--secondary);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    text-shadow: none;
}

/* Buttons */
.btn-primary {
    padding: 1rem 2rem;
    background: transparent;
    /* Changed from var(--text-main) */
    color: var(--text-main);
    /* Changed from var(--bg-dark) */
    font-weight: 500;
    /* Match nav links */
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s var(--easing);
    border: 1px solid transparent;
    /* Maintain sizing */
}

/* Specific override for nav buttons to look like links until active/hover */
.nav-links li a.btn-primary {
    padding: 0.8rem 1.5rem;
    /* Match other nav links */
}

.btn-primary:hover,
.nav-links li a.active.btn-primary {
    background: var(--text-main);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    font-weight: 700;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    margin-left: 1rem;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--text-main);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a0b2e 0%, #0a0a0a 70%);
    background-image: url('onemotion_hero_bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--bg-dark) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Removed duplicate .hero-logo block */

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s var(--easing) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    /* Moved lower to avoid overlap */
    width: 20px;
    height: 35px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
}

.scroll-indicator span {
    width: 4px;
    height: 8px;
    background: var(--text-main);
    border-radius: 2px;
    margin-top: 6px;
    animation: scrollPin 1.5s infinite;
}

@keyframes rotateLogo {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pump {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.hero-logo-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
    display: inline-block;
    animation: rotateLogo 20s linear infinite;
}

.hero-logo-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.2s ease-in-out;
}

.hero-logo-img.pumping {
    /* 128 BPM approx = 0.468s per beat */
    animation: pump 0.468s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollPin {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* Releases */
.release-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    transition: transform 0.4s var(--easing), border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    background: #222;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.release-art {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s var(--easing);
}

.art-1 {
    background-image: url('https://i.scdn.co/image/ab67616d0000b27345613b4f0534724986a97b48');
}

.art-2 {
    background-image: url('https://i.scdn.co/image/ab67616d0000b273b65f3ae23aa82a9ac8286fdd');
}

.art-3 {
    background-image: url('https://i.scdn.co/image/ab67616d0000b273ccad1878f47f004db4f4a8b0');
}

.glass-card:hover .release-art {
    transform: scale(1.1);
}

.card-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-info p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    border-radius: 20px;
    text-transform: uppercase;
}

.btn-icon {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--text-main);
    color: var(--bg-dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s var(--easing);
}

.glass-card:hover .btn-icon {
    opacity: 1;
    transform: translateY(0);
}

.btn-icon:hover {
    background: var(--secondary);
    color: var(--bg-dark);
}

/* Artists List */
.artist-item {
    display: flex;
    align-items: center;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--glass-border);
    cursor: pointer;
    position: relative;
    transition: padding 0.3s var(--easing);
}

.artist-item:hover {
    padding-left: 2rem;
}

.artist-index {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    margin-right: 2rem;
}

.artist-name {
    font-size: 3rem;
    flex-grow: 1;
    transition: color 0.3s;
}

.artist-item:hover .artist-name {
    color: var(--secondary);
    -webkit-text-stroke: 1px var(--secondary);
}

.artist-genre {
    color: var(--text-muted);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.artist-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 2rem;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--glass-border);
    flex-shrink: 0;
}

/* Artist Hover Images */
.img-coming-soon {
    background: linear-gradient(135deg, #1a1a1a, #333);
}

.img-1 {
    background-image: url('https://i.scdn.co/image/ab67616100005174fe209ca70ecbe72062444a5f');
}

.img-2 {
    background-image: url('https://images.unsplash.com/photo-1570295999919-56ceb5ecca61?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
}

.img-3 {
    background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
}

.img-4 {
    background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
}

.img-5 {
    background-image: url('https://i.scdn.co/image/ab67616d0000e1a3d58bce53ad76ad2a07631069');
}

.img-rafhi {
    /* Spotify Artist Image for R@FHI */
    background-image: url('https://i.scdn.co/image/ab6761610000e5eb084564c7a52709e897911666');
    /* Placeholder: Please replace with exact URL if different */
}



/* Newsletter */
.glass-banner {
    margin: 4rem auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
    border-top: 1px solid var(--glass-border);
}

.newsletter-form {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.newsletter-form input {
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-main);
    min-width: 300px;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--secondary);
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links a:hover {
    color: var(--text-main);
}

/* Player Bar */
.player-bar {
    position: fixed;
    bottom: -100px;
    /* Hidden initially */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: bottom 0.5s var(--easing);
}

.player-bar.active {
    bottom: 2rem;
}

.player-info {
    flex: 1;
}

.player-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.player-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.player-controls {
    flex: 0 0 150px;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.ctrl-btn {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.ctrl-btn:hover {
    color: var(--secondary);
}

.play-pause {
    font-size: 1.5rem;
}

.player-progress {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 2rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: var(--secondary);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.time-current {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

/* Events Section */
.event-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
}

.event-card {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: transform 0.3s var(--easing), border-color 0.3s;
}

.event-card:hover {
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.date-day {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.event-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.event-info {
    display: flex;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.event-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lineup-highlight {
    color: var(--text-main);
    font-weight: 500;
}

.btn-ticket {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.btn-ticket:hover {
    background: var(--secondary);
    color: var(--bg-dark);
}

/* Improved Footer Styling */
.footer-links h4,
.social-links-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
    /* Slight movement on hover */
}

.social-links-col .social-links {
    flex-direction: column;
    gap: 0.8rem;
}

/* Tablet/Mobile Footer adjustment */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand,
    .footer-links,
    .social-links-col {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    .release-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .artist-name {
        font-size: 1.8rem;
    }

    .player-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 20px;
    }

    .player-progress {
        width: 100%;
        margin: 0;
    }

    .event-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .event-info {
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
    }
}