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

:root {
    --bg-black: #080808;
    --text-white: #fafafa;
    --border-white: rgba(255, 255, 255, 0.1);
    --font-display: 'Anton', sans-serif;
    --font-sans: 'Syne', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-black);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: white;
    color: black;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: black;
}

::-webkit-scrollbar-thumb {
    background: #333;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Progress Bar */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: white;
    z-index: 100;
    width: 0%;
    transition: width 0.1s ease;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    opacity: 0.15;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Social Sidebar */
.social-sidebar {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    mix-blend-mode: difference;
}

.social-link {
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-link:hover {
    background: white;
    color: black;
    transform: scale(1.1);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: black;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    display: none;
    justify-content: space-around;
}

.social-mobile a {
    color: white;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
}

.social-mobile svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .social-sidebar {
        display: none;
    }
    .social-mobile {
        display: flex;
    }
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: black;
}

.video-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.video-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300vw;
    height: 300vh;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    mix-blend-mode: screen;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) contrast(1.25) brightness(0.75);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-black), rgba(8, 8, 8, 0.2), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    padding: 0 1.5rem;
    display: flex;
    justify-content: center;
}

.signature {
    width: 100%;
    max-width: 1024px;
    filter: 
        drop-shadow(0 0 20px rgba(255, 255, 255, 0.8))
        drop-shadow(0 0 40px rgba(255, 255, 255, 0.6))
        drop-shadow(0 0 60px rgba(255, 255, 255, 0.4))
        drop-shadow(0 0 100px rgba(255, 255, 255, 0.3));
    animation: signatureIn 1.5s ease-out;
}

@keyframes signatureIn {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        filter: 
            drop-shadow(0 0 20px rgba(255, 255, 255, 0.8))
            drop-shadow(0 0 40px rgba(255, 255, 255, 0.6))
            drop-shadow(0 0 60px rgba(255, 255, 255, 0.4))
            drop-shadow(0 0 100px rgba(255, 255, 255, 0.3));
        transform: scale(1);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    animation: bounce 2s infinite;
}

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

/* Marquee Section */
.marquee-section {
    background: white;
    color: black;
    overflow: hidden;
    padding: 1.5rem 0;
    border-top: 4px solid white;
    border-bottom: 4px solid white;
    position: relative;
    z-index: 20;
}

.marquee {
    display: flex;
    white-space: nowrap;
    font-size: 3rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: bold;
    animation: marquee 20s linear infinite;
}

.marquee span {
    margin-right: 2rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .marquee {
        font-size: 2rem;
    }
}

/* Bio Section */
#bio {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
    border-bottom: 1px solid var(--border-white);
}

.bio-image {
    position: relative;
    height: 50vh;
    border-bottom: 1px solid var(--border-white);
    overflow: hidden;
    cursor: pointer;
}

.bio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.7s;
    transform: scale(1.05);
}

.bio-image:hover img {
    filter: grayscale(0);
    transform: scale(1);
}

.bio-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: white;
    color: black;
    padding: 0.5rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: bold;
}

.bio-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(20, 20, 20, 1);
    position: relative;
    overflow: hidden;
}

.bio-title {
    font-size: 4rem;
    font-family: var(--font-display);
    margin-bottom: 2rem;
    line-height: 0.85;
}

.bio-title-accent {
    color: rgba(255, 255, 255, 0.5);
}

.bio-text {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 1.7;
    opacity: 0.8;
    max-width: 32rem;
    margin-bottom: 3rem;
}

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

.highlight {
    background: white;
    color: black;
    padding: 0 0.25rem;
    font-weight: bold;
}

.bold {
    color: white;
    font-weight: bold;
}

.bio-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    border-top: 1px solid var(--border-white);
    padding-top: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-family: var(--font-display);
    color: white;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    opacity: 0.5;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    #bio {
        grid-template-columns: 1fr 1fr;
    }
    .bio-image {
        height: auto;
        border-bottom: none;
        border-right: 1px solid var(--border-white);
    }
    .bio-content {
        padding: 4rem;
    }
    .bio-title {
        font-size: 5rem;
    }
    .bio-text {
        font-size: 1rem;
    }
}

/* Music Section */
#music {
    padding: 5rem 1.5rem;
    background: black;
}

.section-title {
    font-size: 2.5rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    margin-bottom: 3rem;
    color: white;
}

.music-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.music-item {
    cursor: pointer;
}

.music-cover {
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.music-cover img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.5s;
}

.music-item:hover .music-cover img {
    transform: scale(1.05);
}

.music-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.music-item:hover .music-overlay {
    opacity: 1;
}

.music-overlay span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: white;
    letter-spacing: 0.2em;
    border-bottom: 2px solid white;
    padding-bottom: 0.25rem;
}

.music-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
    transition: border-color 0.3s;
}

.music-item:hover .music-info {
    border-color: white;
}

.music-info h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.music-info span {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    opacity: 0.5;
}

@media (min-width: 768px) {
    .music-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tours Section */
#tours {
    padding: 8rem 1.5rem;
    background: rgb(24, 24, 27);
    border-bottom: 1px solid var(--border-white);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.tours-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.tours-icon {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.tours-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.tours-title {
    font-size: 3rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    color: white;
}

.tours-divider {
    height: 1px;
    width: 6rem;
    background: rgba(255, 255, 255, 0.3);
    margin: 1rem 0;
}

.tours-status {
    font-family: var(--font-mono);
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.tours-info {
    margin-top: 2rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    max-width: 28rem;
    width: 100%;
}

.tours-info-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.tours-info-content {
    display: flex;
    justify-content: space-between;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

.status-offline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

@media (max-width: 768px) {
    .tours-title {
        font-size: 2rem;
    }
}

/* Press Section */
#press {
    padding: 5rem 1.5rem;
    background: rgb(24, 24, 27);
    border-bottom: 1px solid var(--border-white);
}

.press-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.spinning-icon {
    width: 32px;
    height: 32px;
    color: white;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.press-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.press-item {
    position: relative;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: black;
    transition: all 0.3s;
    overflow: hidden;
    text-decoration: none;
    color: white;
    display: block;
}

.press-item:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

.press-content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.press-source {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.press-title {
    font-family: var(--font-display);
    font-size: 1.875rem;
    line-height: 1;
    text-transform: uppercase;
    color: white;
}

.press-arrow {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
    transform: rotate(-45deg);
}

.press-item:hover .press-arrow {
    transform: rotate(0deg);
    color: white;
}

.press-number {
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    font-size: 9rem;
    font-family: var(--font-display);
    color: rgba(255, 255, 255, 0.05);
    user-select: none;
    pointer-events: none;
    transition: color 0.3s;
}

.press-item:hover .press-number {
    color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .press-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer */
footer {
    padding: 3rem 1.5rem;
    border-top: 1px solid var(--border-white);
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

/* Fade In Animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 1.5s ease-out;
}

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