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

:root {
    --primary-black: #0a0a0a;
    --accent-blue: #0066ff;
    --accent-green: #00ffc8;
    --text-white: #ffffff;
    --text-gray: #888888;
    --bg-dark: #1a1a1a;
    --logo-opacity: 0.95;
    --logo-hover-opacity: 1;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: url('./images/backgrounds/9d3bc923-d3b8-4d3b-a83a-be83ce8ce9d9.png') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Background tint overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, 
        rgba(139, 69, 19, 0.04) 0%,
        rgba(165, 42, 42, 0.03) 50%,
        rgba(128, 0, 0, 0.02) 100%);
    pointer-events: none;
    z-index: 1;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    min-height: 100vh;
    z-index: 2;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), transparent);
    backdrop-filter: blur(10px);
    padding: 2rem 3rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
}

/* Nextphonic Logo Styling - Brilliant Sun */
.logo a {
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    color: rgb(255, 179, 0);    /* Deep orange */
    position: relative;
}

.logo a:hover {
    transform: translateY(-1px);
    color: rgb(255, 215, 0);    /* Bright gold */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
    font-weight: 600;
}

.nav-links a:hover::after {
    width: 100%;
}

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

.social-links a {
    transition: all 0.3s ease;
    opacity: 0.9;
    position: relative;
}

/* All social media icons - White */
.social-links a {
    color: #ffffff;
}

/* Hover effects with glow */
.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Uniform white glow on hover for all icons */
.social-links a:hover {
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 3rem 3rem;
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 50%;
    max-width: 500px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    border-radius: 2px;
}

.blue-accent {
    position: absolute;
    right: 20%;
    top: 45%;
    width: 150px;
    height: 40px;
    background: var(--accent-blue);
    z-index: 10;
    animation: slideIn 1s ease-out;
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.5);
}

/* Vertical Text */
.vertical-text {
    position: absolute;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--text-gray);
    font-weight: 300;
}

.left-text {
    left: 10%;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}

.right-text {
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
}

/* Artist Info */
.artist-info {
    position: absolute;
    bottom: 10%;
    left: 10%;
}

.tagline {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--text-gray);
    font-weight: 300;
}

/* Brand Mark */
.brand-mark {
    position: absolute;
    bottom: 10%;
    right: 10%;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--text-gray);
    font-weight: 300;
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeIn 1s ease-out backwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

/* Artist Bio Modal */
.artist-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.artist-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.98), rgba(10, 10, 20, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    animation: slideUp 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    padding: 0;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    padding: 3rem;
    gap: 3rem;
}

.modal-artist-image {
    flex: 0 0 300px;
}

.modal-artist-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-artist-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-artist-info h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-white);
}

.modal-artist-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
}

.modal-artist-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.95rem;
}

.modal-artist-meta span {
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-artist-meta .genre::before {
    content: "Genre: ";
    color: var(--text-gray);
    font-weight: 500;
}

.modal-artist-meta .debut::before {
    content: "Debut: ";
    color: var(--text-gray);
    font-weight: 500;
}

.modal-artist-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.listen-btn {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    color: var(--text-white);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.listen-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

/* Contact Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.contact-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Override modal-body flex for contact modal */
.contact-modal .modal-body {
    display: block;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-modal-content {
    width: 100%;
}

.contact-modal-content h2 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.contact-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
}

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

.modal-btn {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 400;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.modal-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.modal-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-text,
.btn-loading {
    display: inline-block;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-message.success {
    background: rgba(0, 255, 200, 0.1);
    border: 1px solid rgba(0, 255, 200, 0.3);
    color: var(--accent-green);
    display: block;
}

.form-message.error {
    background: rgba(255, 0, 100, 0.1);
    border: 1px solid rgba(255, 0, 100, 0.3);
    color: #ff0064;
    display: block;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }
    
    .contact-modal .modal-body {
        padding: 2rem;
    }

    .modal-artist-image {
        flex: none;
        max-width: 200px;
        margin: 0 auto;
    }

    .modal-artist-info h2 {
        font-size: 2rem;
    }

    .modal-artist-info p {
        font-size: 1rem;
    }

    .modal-content {
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-close {
        top: 10px;
        right: 10px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 2rem;
    }
    
    .hero-image-container {
        width: 60%;
    }
    
    .vertical-text {
        font-size: 0.6rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1.5rem 2rem;
    }
    
    .navbar {
        flex-wrap: wrap;
    }
    
    .nav-links {
        position: static;
        transform: none;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        gap: 1.5rem;
    }
    
    .social-links {
        display: none;
    }
    
    .hero {
        padding: 5rem 2rem 2rem;
    }
    
    .hero-image-container {
        width: 80%;
    }
    
    .vertical-text {
        display: none;
    }
    
    .blue-accent {
        width: 120px;
        height: 35px;
    }
    
    .artist-info,
    .brand-mark {
        position: static;
        text-align: center;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .logo a {
        font-size: 1.25rem;
    }
    
    .nav-links a {
        font-size: 0.7rem;
    }
    
    .hero-image-container {
        width: 90%;
    }
    
    .blue-accent {
        width: 100px;
        height: 30px;
        right: 15%;
    }
}

/* Mission Page Styles */
.mission-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: -1;
    animation: fadeIn 0.6s ease-out;
}

.mission-page {
    background: #000000;
}

.mission-content {
    padding: 7rem 3rem 4rem;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.content-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.mission-content h1 {
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: -0.03em;
    margin-bottom: 4rem;
    color: var(--text-white);
    animation: slideUp 0.8s ease-out;
    line-height: 1.1;
}

.mission-section,
.manifesto-section,
.promise-section {
    margin-bottom: 5rem;
    animation: slideUp 0.8s ease-out backwards;
}

.mission-section {
    animation-delay: 0.2s;
}

.manifesto-section {
    animation-delay: 0.3s;
}

.promise-section {
    animation-delay: 0.4s;
}

.mission-content h2 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    padding-bottom: 1rem;
}

.mission-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--accent-blue);
}

.manifesto-item {
    margin-bottom: 3.5rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.manifesto-item:hover {
    border-left-color: var(--accent-blue);
}

.manifesto-item h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-white);
    letter-spacing: -0.01em;
}

.mission-content p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.mission-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.welcome {
    font-size: 1.1rem;
    font-weight: 300;
    margin: 3rem auto 0;
    color: var(--text-white);
    letter-spacing: 0.05em;
    text-align: center;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.02);
    max-width: 400px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links a.active {
    color: var(--text-white);
    opacity: 1;
}

.nav-links a.active::after {
    width: 100%;
    background-color: var(--accent-blue);
}

/* Mission Page Responsive */
@media (max-width: 768px) {
    .mission-content {
        padding: 6rem 2rem 3rem;
    }
    
    .mission-content h1 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .mission-content h2 {
        font-size: 0.8rem;
    }
    
    .manifesto-item {
        padding-left: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .manifesto-item h3 {
        font-size: 1.2rem;
    }
    
    .mission-content p {
        font-size: 1rem;
    }
    
    .mission-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .mission-content {
        padding: 5rem 1.5rem 2rem;
    }
    
    .mission-content h1 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .mission-content h2 {
        font-size: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .manifesto-item {
        padding-left: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .manifesto-item h3 {
        font-size: 1.1rem;
    }
    
    .mission-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .mission-section p {
        font-size: 1rem;
    }
    
    .welcome {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
        max-width: 350px;
    }
}

/* Smoke Canvas */
#smoke-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.8;
}

/* Artist Gallery Styles */
.artist-gallery-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.gallery-header {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.gallery-header h2 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.gallery-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--text-gray);
    font-weight: 300;
}

.artist-gallery {
    position: absolute;
    bottom: 10vh;
    left: 0;
    width: 100%;
    height: 150px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    z-index: 10;
}

.artist-gallery::-webkit-scrollbar {
    display: none;
}

.artist-item {
    position: relative;
    min-width: 120px;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, min-width 0.3s ease;
    flex-shrink: 0;
}

.artist-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 255, 0.2);  /* Solid blue tint */
    mix-blend-mode: screen;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.artist-item:hover {
    transform: scale(1.1);
    z-index: 10;
    min-width: 140px;
}

.artist-item:hover::before {
    opacity: 0.7;
}

.artist-item img {
    width: auto;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) contrast(1.1);
}

.artist-item:hover img {
    filter: grayscale(60%) contrast(1.2) brightness(1.1) saturate(1.2);
}

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

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

.artist-name {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--text-white);
}

/* Scroll Indicator - Horizontal */
.scroll-indicator {
    position: absolute;
    bottom: calc(10vh - 40px);
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    z-index: 100;
}

.scroll-track {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.scroll-thumb {
    position: absolute;
    height: 1px;
    width: 60px;
    background: var(--text-white);
    left: 0;
    transition: left 0.1s ease;
    cursor: pointer;
}

.scroll-thumb::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    background: var(--text-white);
    border-radius: 50%;
}

/* Gallery Responsive */
@media (max-width: 1024px) {
    .artist-item {
        min-width: 100px;
    }
    
    .artist-item:hover {
        min-width: 120px;
    }
    
    .gallery-header h2 {
        font-size: 2.5rem;
    }
    
    .artist-gallery {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .artist-gallery-container {
        height: calc(100vh - 100px);
    }
    
    .artist-item {
        min-width: 80px;
    }
    
    .artist-item:hover {
        min-width: 100px;
    }
    
    .artist-gallery {
        height: 100px;
        bottom: 8vh;
    }
    
    .gallery-header h2 {
        font-size: 2rem;
    }
    
    .scroll-indicator {
        width: 200px;
        bottom: calc(8vh - 30px);
    }
}

@media (max-width: 480px) {
    .artist-item {
        min-width: 70px;
    }
    
    .artist-item:hover {
        min-width: 80px;
    }
    
    .artist-gallery {
        height: 80px;
        padding: 0 1rem;
    }
    
    .gallery-header h2 {
        font-size: 1.5rem;
    }
    
    .scroll-indicator {
        display: none;
    }
}