@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;500&display=swap');

:root {
    --primary-black: #000000;
    --anthrazit: #0d0d0f;
    --dark-gray: #1a1a1f;
    --electric-purple: #a855f7;
    --cyan: #06b6d4;
    --cyber-magenta: #ec4899;
    --neon-green: #10f896;
    --text-light: #e0e0e6;
    --text-dim: #9ca3af;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-black);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    background: rgba(13, 13, 15, 0.9);
    padding: 0.5rem;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(10px);
}

.lang-btn {
    width: 40px;
    height: 40px;
    border: 2px solid transparent;
    border-radius: 8px;
    background: rgba(26, 26, 31, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    overflow: hidden;
}

.lang-btn:hover {
    transform: translateY(-2px);
    border-color: var(--electric-purple);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.3);
}

.lang-btn.active {
    border-color: var(--cyan);
    background: rgba(6, 182, 212, 0.2);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

/* Noise Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii43NSIgbnVtT2N0YXZlcz0iNCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iLjA1Ii8+PC9zdmc+');
    mix-blend-mode: overlay;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, var(--dark-gray) 0%, var(--primary-black) 100%);
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInDown 1s ease forwards;
}

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

.logo {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 30px var(--electric-purple));
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 30px var(--electric-purple));
    }
    50% {
        transform: scale(1.05) rotate(2deg);
        filter: drop-shadow(0 0 50px var(--cyan));
    }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--cyan);
    border-radius: 50%;
    animation: float 20s infinite linear;
    filter: blur(1px);
}

@keyframes float {
    from {
        transform: translateY(100vh) translateX(0);
    }
    to {
        transform: translateY(-100vh) translateX(100px);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

h1 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--electric-purple), var(--cyan), var(--cyber-magenta));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulseGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px var(--electric-purple));
    position: relative;
    max-width: 90vw;
    word-wrap: break-word;
}

@keyframes pulseGlow {
    0%, 100% {
        filter: drop-shadow(0 0 30px var(--electric-purple));
    }
    50% {
        filter: drop-shadow(0 0 50px var(--cyan));
    }
}

.glitch {
    position: relative;
    transition: all 0.1s;
}

.glitch:hover {
    animation: glitch 0.3s infinite;
}

@keyframes glitch {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
}

.tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    word-wrap: break-word;
    max-width: 90vw;
}

.btn-primary {
    background: transparent;
    border: 2px solid var(--electric-purple);
    color: var(--text-light);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--cyan);
    color: var(--text-light);
}

.btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-primary::before {
    background: var(--electric-purple);
}

.btn-secondary::before {
    background: var(--cyan);
}

.btn:hover {
    color: var(--primary-black);
}

.btn-primary:hover {
    box-shadow: 0 0 30px var(--electric-purple);
}

.btn-secondary:hover {
    box-shadow: 0 0 30px var(--cyan);
}

.btn:hover::before {
    width: 100%;
    height: 100%;
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 5vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(90deg, var(--cyber-magenta), var(--electric-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* About Section */
.about-section {
    background: var(--anthrazit);
}

.about-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(26, 26, 31, 0.5);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
    border-color: var(--electric-purple);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    color: var(--electric-purple);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-dim);
    line-height: 1.6;
}

/* Releases Section */
.releases-section {
    background: var(--anthrazit);
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .releases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .releases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .releases-grid {
        grid-template-columns: 1fr;
    }
}

.release-card {
    background: rgba(26, 26, 31, 0.5);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.release-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--electric-purple) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
    border-color: var(--electric-purple);
}

.release-card:hover::before {
    opacity: 0.05;
}

.release-cover {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--electric-purple), var(--cyan));
    border-radius: 8px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    font-size: 3rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.release-card:hover .play-button {
    opacity: 0.8;
}

.release-info {
    padding: 0.5rem 0;
}

.release-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.release-artist {
    color: var(--cyan);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.release-meta {
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* Artists/Personas Section */
.artists-section {
    background: var(--anthrazit);
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-button,
.shuffle-button {
    padding: 0.7rem 1.5rem;
    background: rgba(26, 26, 31, 0.5);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--text-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-button:hover,
.shuffle-button:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: var(--electric-purple);
    transform: translateY(-2px);
}

.filter-button.active {
    background: var(--electric-purple);
    border-color: var(--electric-purple);
    color: var(--primary-black);
}

.persona-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .persona-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .persona-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .persona-grid {
        grid-template-columns: 1fr;
    }
}

.persona-card {
    background: rgba(26, 26, 31, 0.5);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.persona-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--electric-purple) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.persona-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
    border-color: var(--electric-purple);
}

.persona-card:hover::before {
    opacity: 0.05;
}

.persona-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.persona-emoji {
    z-index: 3;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.genre-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(13, 13, 15, 0.8);
    backdrop-filter: blur(5px);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 4;
    color: var(--text-light);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.gender-indicator {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(13, 13, 15, 0.8);
    backdrop-filter: blur(5px);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 4;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.gender-indicator.male {
    color: var(--cyan);
}

.gender-indicator.female {
    color: var(--cyber-magenta);
}

.persona-content {
    padding: 0.5rem 0;
}

.persona-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.persona-genre {
    color: var(--cyan);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.persona-desc {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    background: var(--anthrazit);
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-link {
    padding: 0.8rem 1.5rem;
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid var(--electric-purple);
    border-radius: 8px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    word-wrap: break-word;
    max-width: calc(90vw - 2rem);
    text-align: center;
}

.social-link:hover {
    background: var(--electric-purple);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.5);
}

.email-contact {
    margin-top: 2rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    color: var(--text-dim);
    font-size: 0.9rem;
}

.footer-tagline {
    margin-top: 0.5rem;
    font-style: italic;
    opacity: 0.7;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    overflow-y: auto;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

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

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

.modal-content {
    background: linear-gradient(135deg, var(--anthrazit) 0%, var(--dark-gray) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 24px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 0 100px rgba(168, 85, 247, 0.3);
}

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

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

.modal-close:hover {
    background: var(--electric-purple);
    transform: rotate(90deg);
    box-shadow: 0 0 20px var(--electric-purple);
}

.modal-header {
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.modal-cover {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--electric-purple), var(--cyan));
    flex-shrink: 0;
}

.modal-title-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.modal-title-section p {
    color: var(--cyan);
    font-size: 1.1rem;
}

.modal-body {
    padding: 0 3rem 3rem;
}

.modal-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dim);
    flex-wrap: wrap;
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section h3 {
    font-family: 'Orbitron', monospace;
    color: var(--electric-purple);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.modal-section p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Persona Modal Specific */
.persona-modal-header {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
}

.modal-video {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.stats {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
    gap: 1rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--electric-purple);
    font-family: 'Orbitron', monospace;
}

.stat-label {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        text-align: center;
    }

    .modal-header {
        flex-direction: column;
        text-align: center;
    }

    .modal-cover {
        width: 150px;
        height: 150px;
    }

    .modal-body {
        padding: 2rem;
    }

    .modal-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .persona-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .stats {
        flex-direction: column;
    }
}

@media (min-width: 1200px) {
    .persona-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Additional Mobile Fixes */
@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Fix container */
    .container {
        width: 95%;
        padding: 0 2.5%;
    }
    
    /* Fix hero section */
    .hero-content {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    h1 {
        font-size: clamp(2rem, 6vw, 4rem);
        letter-spacing: 0.02em;
    }
    
    .tagline {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    /* Fix buttons */
    .cta-buttons {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 200px;
        max-width: 85vw;
    }
    
    /* Fix social links */
    .social-links {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .social-link {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        flex: 1 1 calc(50% - 1rem);
        min-width: 120px;
        max-width: calc(45vw - 1rem);
    }
    
    /* Fix sections */
    section {
        padding: 3rem 0;
    }
    
    h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    /* Fix text blocks */
    .story-text,
    .vision-text {
        padding: 0 1rem;
        font-size: 1rem;
    }
    
    /* Fix contact section */
    .contact-content {
        padding: 0 1rem;
    }
    
    .email-contact .btn {
        font-size: 0.85rem;
        padding: 0.8rem 1rem;
        word-break: break-all;
    }
    
    /* Fix language switcher */
    .language-switcher {
        top: 10px;
        left: 10px;
        transform: scale(0.9);
    }
    
    /* Fix release/persona cards - they look good already */
    .release-card,
    .persona-card {
        margin: 0 auto;
        max-width: 90vw;
    }
    
    /* Modal fixes */
    .modal-content {
        width: 95%;
        margin: 1rem auto;
    }
    
    /* Prevent glitch effect on mobile to avoid overflow */
    .glitch:hover {
        animation: none;
        transform: scale(1.02);
    }
}

/* Very small screens */
@media (max-width: 380px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    
    .social-link {
        flex: 1 1 100%;
        max-width: 85vw;
    }
}
