:root {
    --bg-color: #0d0d12;
    --text-color: #f0f0f0;
    --accent-1: #ff32c8; /* Neon Pink */
    --accent-2: #64ff64; /* Neon Green */
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    
    --green-flare: rgba(100, 255, 100, 0.15);
    --pink-flare: rgba(255, 50, 200, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Language Display Logic */
[data-lang="tr"] .en { display: none !important; }
[data-lang="en"] .tr { display: none !important; }

::selection {
    background: var(--accent-1);
    color: #fff;
}

/* Background Effects */
.background-glow {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    background: 
        radial-gradient(circle at 15% 20%, var(--green-flare) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, var(--green-flare) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, var(--pink-flare) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, var(--pink-flare) 0%, transparent 45%);
    filter: blur(50px);
    pointer-events: none;
}

.noise-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.03;
    z-index: 100;
    pointer-events: none;
}

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(100, 255, 100, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: left 0.1s ease-out, top 0.1s ease-out, background 0.3s;
}

/* Typography & Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 3rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: 2px;
}

.section-title span {
    color: transparent;
    -webkit-text-stroke: 1px var(--text-color);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.primary-btn {
    background: var(--accent-1);
    color: #fff;
    border: 1px solid var(--accent-1);
    box-shadow: 0 0 20px rgba(255, 50, 200, 0.4);
}

.primary-btn:hover {
    background: transparent;
    box-shadow: 0 0 30px rgba(255, 50, 200, 0.6);
}

.secondary-btn {
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.secondary-btn:hover {
    border-color: var(--accent-2);
    color: var(--accent-2);
    background: rgba(100, 255, 100, 0.05);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(100, 255, 100, 0.5);
}

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

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    background: rgba(255,255,255,0.05);
    padding: 4px;
    border-radius: 20px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #888;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: #fff;
}

.lang-btn.active {
    background: var(--accent-2);
    color: #000;
    box-shadow: 0 0 10px rgba(100, 255, 100, 0.4);
}

.social-links-nav a {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-left: 1.2rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.social-links-nav a:hover {
    color: var(--accent-1);
    text-shadow: 0 0 10px var(--accent-1);
}

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

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.subtitle {
    font-size: 1rem;
    letter-spacing: 10px;
    margin-bottom: 1rem;
    color: var(--accent-2);
    font-weight: 600;
}

.glitch-title {
    font-size: clamp(5rem, 15vw, 12rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 0 0 40px rgba(255,255,255,0.1);
    letter-spacing: -2px;
}

.glitch-title::before, .glitch-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0.8;
}

.glitch-title::before {
    left: 4px;
    text-shadow: -2px 0 var(--accent-1);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-title::after {
    left: -4px;
    text-shadow: -2px 0 var(--accent-2);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(71px, 9999px, 86px, 0); }
    20% { clip: rect(21px, 9999px, 50px, 0); }
    40% { clip: rect(6px, 9999px, 83px, 0); }
    60% { clip: rect(93px, 9999px, 20px, 0); }
    80% { clip: rect(100px, 9999px, 60px, 0); }
    100% { clip: rect(50px, 9999px, 30px, 0); }
}
@keyframes glitch-anim2 {
    0% { clip: rect(20px, 9999px, 90px, 0); }
    20% { clip: rect(60px, 9999px, 30px, 0); }
    40% { clip: rect(40px, 9999px, 10px, 0); }
    60% { clip: rect(80px, 9999px, 70px, 0); }
    80% { clip: rect(10px, 9999px, 50px, 0); }
    100% { clip: rect(30px, 9999px, 100px, 0); }
}

.hero-desc {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #aaa;
    font-weight: 300;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* Sections */
section {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
}

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

.about-text .highlight {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #fff;
}

.about-text p {
    color: #ccc;
    font-size: 1.15rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.stats {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 4.5rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--accent-1);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255,50,200,0.3);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #777;
    margin-top: 0.5rem;
    font-weight: 600;
}

.visual-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.visual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 40px rgba(100,255,100,0.15);
    border-color: rgba(100,255,100,0.3);
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(100,255,100,0.1) 0%, transparent 70%);
    z-index: 0;
}

.card-inner {
    position: relative;
    z-index: 1;
}

.card-inner i {
    font-size: 5rem;
    color: var(--accent-2);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(100,255,100,0.4));
}

.card-inner h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.card-inner p {
    color: #999;
    font-weight: 300;
}

/* Marquee */
.marquee-container {
    background: var(--accent-1);
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 8rem;
    transform: rotate(-3deg) scale(1.05);
    box-shadow: 0 0 30px rgba(255,50,200,0.3);
}

.marquee {
    display: inline-block;
    animation: marquee 25s linear infinite;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    letter-spacing: 5px;
}

.marquee span.dot {
    margin: 0 3rem;
    font-size: 1.5rem;
    vertical-align: middle;
}

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

/* Experience */
.venues-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.venue-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem;
    border-radius: 16px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.venue-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-2);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.venue-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.venue-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.venue-icon {
    font-size: 3rem;
    color: var(--accent-1);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.venue-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
    letter-spacing: 1px;
}

.venue-list {
    list-style: none;
}

.venue-list li {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
}

.venue-list li::before {
    content: '▹';
    color: var(--accent-2);
    margin-right: 15px;
    font-size: 1.2rem;
}

.venue-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.venue-note {
    margin-top: 3rem;
    font-size: 1rem;
    color: #666;
    font-style: italic;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
}

/* Listen */
.listen-section {
    background: rgba(0,0,0,0.4);
    border-top: 1px solid rgba(255,255,255,0.03);
}

.player-container {
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 10px;
    transition: transform 0.3s ease;
}

.player-container:hover {
    transform: scale(1.02);
}

/* Footer */
.footer {
    padding: 8rem 0 4rem;
    background: rgba(0,0,0,0.6);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 10px;
    margin-bottom: 2rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1.2rem 2.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.social-btn i {
    font-size: 1.5rem;
}

.social-btn:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
}

.social-btn.instagram:hover { background: #E1306C; border-color: #E1306C; box-shadow: 0 10px 20px rgba(225,48,108,0.3); }
.social-btn.soundcloud:hover { background: #ff5500; border-color: #ff5500; box-shadow: 0 10px 20px rgba(255,85,0,0.3); }
.social-btn.youtube:hover { background: #FF0000; border-color: #FF0000; box-shadow: 0 10px 20px rgba(255,0,0,0.3); }
.social-btn.email:hover { background: var(--accent-2); border-color: var(--accent-2); box-shadow: 0 10px 20px rgba(100,255,100,0.3); color: #000; }

.copyright {
    color: #444;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Animations & Responsive */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-up {
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .venues-grid { grid-template-columns: 1fr; }
    .glitch-title { font-size: clamp(3.5rem, 10vw, 4.5rem); }
    .cta-buttons { flex-direction: column; padding: 0 20px; }
    .section-title { font-size: clamp(2rem, 8vw, 3rem); }
    .stat-number { font-size: 3.5rem; }
    .social-links-large { flex-direction: column; padding: 0 20px; }
    .social-btn { justify-content: center; }
    .nav-right { gap: 1rem; }
    .social-links-nav { display: none; }
    .visual-card { padding: 3rem 1.5rem; }
    .venue-card { padding: 3rem 1.5rem; }
    .stats { flex-direction: column; gap: 2rem; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
    .navbar { padding: 1rem 5%; }
    .logo { font-size: 1.4rem; }
    .glitch-title { font-size: 3rem; }
    section { padding: 5rem 0; }
    .btn { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
    .stat-number { font-size: 3rem; }
    .footer { padding: 4rem 0 2rem; }
    .footer-logo { font-size: 2.5rem; }
}
