:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #1a1a2e;
    --accent-cyan: #00f0ff;
    --accent-magenta: #ff00aa;
    --accent-violet: #7b2dff;
    --text-primary: #e0e0e0;
    --text-secondary: #888;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

section {
    padding: 100px 5%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateX(0);
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 240, 255, 0.15);
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    transition: text-shadow 0.3s ease;
}

.nav-logo:hover {
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
    box-shadow: 0 0 6px rgba(0, 240, 255, 0.5);
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-btn {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.35rem 0.8rem;
    background: transparent;
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--accent-cyan);
    color: var(--bg-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        gap: 2rem;
        transition: right 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
}

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.hero-name {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    margin-bottom: 1rem;
}

.glitch {
    position: relative;
}

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

@keyframes glitch {
    0% {
        text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
        transform: translate(0);
    }
    20% {
        text-shadow: -2px 0 var(--accent-magenta), 2px 0 var(--accent-cyan);
        transform: translate(-2px, 1px);
    }
    40% {
        text-shadow: 2px 0 var(--accent-magenta), -2px 0 var(--accent-cyan);
        transform: translate(2px, -1px);
    }
    60% {
        text-shadow: -1px 0 var(--accent-magenta), 1px 0 var(--accent-cyan);
        transform: translate(-1px, 2px);
    }
    80% {
        text-shadow: 1px 0 var(--accent-magenta), -1px 0 var(--accent-cyan);
        transform: translate(1px, -2px);
    }
    100% {
        text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
        transform: translate(0);
    }
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    min-height: 2rem;
    margin-bottom: 2.5rem;
}

.typed-text {
    color: var(--text-primary);
}

.cursor {
    color: var(--accent-cyan);
    animation: blink 0.8s step-end infinite;
}

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

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

.btn {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    border: 1px solid var(--accent-cyan);
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
}

.btn-outline:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-secondary);
    border-radius: 12px;
    position: relative;
}

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

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

#about {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.about-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.photo-frame {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    position: relative;
}

.photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(123, 45, 255, 0.1) 100%);
    pointer-events: none;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.badge {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-cyan);
    border: 1px solid var(--accent-violet);
    border-radius: 20px;
    padding: 0.3rem 0.9rem;
    transition: all 0.3s ease;
}

.badge:hover {
    box-shadow: 0 0 12px rgba(123, 45, 255, 0.4);
    border-color: var(--accent-cyan);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-photo {
        max-width: 250px;
        margin: 0 auto;
    }

    .about-badges {
        justify-content: center;
    }
}

#music {
    background: var(--bg-primary);
}

.bands-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.band-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.band-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.band-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
    transform: translateY(-4px);
}

.band-card:hover::before {
    opacity: 1;
}

.band-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.band-role {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.band-genre,
.band-period {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.card-link {
    display: inline-block;
    color: var(--accent-magenta);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: text-shadow 0.3s ease;
}

.band-card:hover .card-link {
    text-shadow: 0 0 8px rgba(255, 0, 170, 0.5);
}

#compositions {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.compositions-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.comp-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(123, 45, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.comp-card:hover {
    border-color: var(--accent-violet);
    box-shadow: 0 0 20px rgba(123, 45, 255, 0.3);
    transform: translateY(-4px);
}

.comp-card.featured {
    border-color: var(--accent-magenta);
    background: rgba(255, 0, 170, 0.05);
}

.comp-card.featured:hover {
    box-shadow: 0 0 20px rgba(255, 0, 170, 0.3);
}

.comp-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-magenta);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    border-radius: 20px;
    padding: 0.25rem 0.8rem;
}

.comp-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.comp-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

#tech {
    background: var(--bg-primary);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-violet), var(--accent-magenta));
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-dot {
    position: absolute;
    left: -36px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
    border: 2px solid var(--bg-primary);
}

.timeline-content {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 8px;
    padding: 1.5rem;
}

.timeline-date {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--accent-cyan);
    letter-spacing: 1px;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0.5rem 0 0.25rem;
}

.timeline-company {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.timeline-content p:last-child {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.publication-card {
    max-width: 800px;
    margin: 2rem auto 0;
    background: rgba(123, 45, 255, 0.08);
    border: 1px solid var(--accent-violet);
    border-radius: 12px;
    padding: 2rem;
}

.publication-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-violet);
    margin-bottom: 0.5rem;
}

.publication-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pub-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.8rem;
}

.pub-meta a {
    color: var(--accent-cyan);
}

#awards {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.awards-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.award-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 0, 170, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.award-card:hover {
    border-color: var(--accent-magenta);
    box-shadow: 0 0 20px rgba(255, 0, 170, 0.3);
    transform: translateY(-4px);
}

.award-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.award-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.award-year {
    color: var(--accent-magenta);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.award-card p:last-child {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

#links {
    background: var(--bg-secondary);
}

.links-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.5rem 1rem;
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.link-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    transform: translateY(-3px);
    color: var(--accent-cyan);
}

.link-icon {
    width: 28px;
    height: 28px;
    fill: var(--accent-cyan);
}

.link-card:hover .link-icon {
    fill: var(--accent-magenta);
}

.link-card span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
}

#contact {
    background:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        var(--bg-primary);
    background-size: 50px 50px;
}

.contact-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-email {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--accent-cyan);
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--accent-cyan);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

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

.contact-form input,
.contact-form textarea {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 8px;
    padding: 0.9rem 1.2rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
}

.contact-form .btn {
    align-self: flex-start;
}

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

footer {
    text-align: center;
    padding: 2rem 5%;
    color: var(--text-secondary);
    font-size: 0.85rem;
    border-top: 1px solid rgba(0, 240, 255, 0.15);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

#photography {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.photography-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: -2rem auto 3rem;
}

.photo-gallery {
    max-width: 1100px;
    margin: 0 auto 4rem;
    column-count: 3;
    column-gap: 1.25rem;
}

.photo-item {
    display: block;
    break-inside: avoid;
    margin-bottom: 1.25rem;
}

.photo-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease;
    border: 1px solid rgba(0, 240, 255, 0.15);
}

.photo-wrapper:hover {
    transform: scale(1.03);
    border-color: var(--accent-cyan);
}

.photo-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.85), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.photo-wrapper:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay span {
    color: var(--text-primary);
    font-size: 0.85rem;
    line-height: 1.4;
}

.origin-highlight {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    background: rgba(123, 45, 255, 0.06);
    border: 1px solid rgba(123, 45, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
}

.origin-image {
    flex: 0 0 320px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.15);
}

.origin-image img {
    width: 100%;
    display: block;
}

.origin-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--accent-cyan);
}

.origin-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.origin-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .photo-gallery {
        column-count: 2;
    }

    .origin-highlight {
        flex-direction: column;
        padding: 1.5rem;
    }

    .origin-image {
        flex: none;
        max-width: 390px;
        width: 100%;
    }
}

@media (max-width: 500px) {
    .photo-gallery {
        column-count: 1;
    }
}

@media (max-width: 480px) {
    .hero-name { letter-spacing: 4px; }
    .section-title { font-size: 2rem; }
    section { padding: 60px 4%; }
    .bands-grid { grid-template-columns: 1fr; }
    .links-grid { grid-template-columns: repeat(3, 1fr); }
    .awards-grid { grid-template-columns: 1fr 1fr; }
    .photo-gallery { column-count: 2; }
    .origin-highlight { flex-direction: column; padding: 1.5rem; }
    .origin-image { flex: none; max-width: 390px; width: 100%; }
}

@media (max-width: 360px) {
    .links-grid { grid-template-columns: repeat(2, 1fr); }
    .awards-grid { grid-template-columns: 1fr; }
    .photo-gallery { column-count: 1; }
}

@media (max-width: 360px) {
    .links-grid { grid-template-columns: repeat(2, 1fr); }
    .awards-grid { grid-template-columns: 1fr; }
    .photo-gallery { column-count: 1; }
}
