/* K-POP MEDIA WORLD - Modern Cyberpunk Neon Design */
/* Font: Orbitron (headings), Rajdhani (body) */
/* Color Space: OKLCH */

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

:root {
    --bg-primary: oklch(0.1 0.01 280);
    --bg-secondary: oklch(0.15 0.01 280);
    --text-primary: oklch(0.95 0.01 280);
    --text-secondary: oklch(0.7 0.01 280);
    --neon-pink: #FF1493;
    --neon-cyan: #00FFFF;
    --neon-purple: #DA70D6;
    --neon-green: #39FF14;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', 'Noto Sans KR', ui-sans-serif, system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    position: relative;
    font-size: 16px;
    font-weight: 400;
}

/* Background Pattern Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(0, 255, 255, 0.03) 35px,
            rgba(0, 255, 255, 0.03) 70px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 35px,
            rgba(255, 20, 147, 0.03) 35px,
            rgba(255, 20, 147, 0.03) 70px
        );
    pointer-events: none;
    z-index: 0;
    animation: neonLines 8s linear infinite;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-cyan);
    text-transform: uppercase;
}

.nav-brand h1 span {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.brand-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    color: var(--neon-cyan);
    margin-top: -5px;
    text-shadow: 0 0 5px var(--neon-cyan);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-family: 'Rajdhani', sans-serif;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--neon-pink);
}

.nav-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.nav-link:hover::before {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--neon-cyan);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--neon-cyan);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 20, 147, 0.1) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(0, 255, 255, 0.1) 50%, transparent 70%);
    animation: neonLines 8s linear infinite;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/hero-silhouettes.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(10, 10, 10, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-primary);
    animation: fadeInUp 1s ease;
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle-box {
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #DA70D6;
    text-shadow: 0 0 10px rgba(218, 112, 214, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 2px solid #DA70D6;
    padding: 0.8rem 2rem;
    display: inline-block;
    box-shadow: 0 0 15px rgba(218, 112, 214, 0.2);
    border-radius: 30px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: var(--text-primary);
    text-shadow: 
        0 0 20px var(--neon-pink),
        0 0 40px var(--neon-cyan),
        0 0 60px var(--neon-purple);
    line-height: 1.1;
}

.hero-title .media-span {
    color: var(--neon-pink);
    text-shadow: 0 0 20px var(--neon-pink);
}

.hero-title .world-span {
    color: #00FFFF;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.hero-description {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 2rem auto;
    max-width: 600px;
    line-height: 1.8;
}

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

.hero-button {
    padding: 0.9rem 2.5rem;
    background: transparent;
    border: 2px dashed;
    border-radius: 0;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-size: 0.95rem;
    position: relative;
    cursor: pointer;
    color: #f5f5f5;
}

.hero-button:nth-child(1) {
    border-color: #00FFFF;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.hero-button:nth-child(1):hover {
    background: #00FFFF;
    color: #0a0a1a;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    transform: translateY(-5px);
}

.hero-button:nth-child(2) {
    border-color: #DA70D6;
    box-shadow: 0 0 10px rgba(218, 112, 214, 0.3);
}

.hero-button:nth-child(2):hover {
    background: #DA70D6;
    color: #0a0a1a;
    box-shadow: 0 0 20px rgba(218, 112, 214, 0.8);
    transform: translateY(-5px);
}

.hero-button:nth-child(3) {
    border-color: #00FFFF;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.hero-button:nth-child(3):hover {
    background: #00FFFF;
    color: #0a0a1a;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    transform: translateY(-5px);
}

.hero-button:nth-child(4) {
    border-color: #DA70D6;
    box-shadow: 0 0 10px rgba(218, 112, 214, 0.3);
}

.hero-button:nth-child(4):hover {
    background: #DA70D6;
    color: #0a0a1a;
    box-shadow: 0 0 20px rgba(218, 112, 214, 0.8);
    transform: translateY(-5px);
}

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

.scroll-dot {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--neon-cyan);
    border-radius: 15px;
    position: relative;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.scroll-dot::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    animation: scroll 2s infinite;
    box-shadow: 0 0 5px var(--neon-cyan);
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

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

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 20px var(--neon-pink);
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    margin: 0 auto 1rem;
    border-radius: 2px;
    box-shadow: 0 0 20px var(--neon-pink), 0 0 40px var(--neon-cyan);
}

.section-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-description {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

/* MVV Section */
.mvv-section {
    background: rgba(0, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 0;
    border: 2px solid var(--neon-cyan);
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.mvv-section:hover {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.25), 0 0 15px rgba(255, 20, 147, 0.1);
    border-color: var(--neon-pink);
}

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

.mvv-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mvv-section h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 0 5px var(--neon-cyan);
}

.mvv-section p {
    font-family: 'Rajdhani', sans-serif;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    padding: 2rem;
    background: rgba(255, 20, 147, 0.05);
    border-radius: 0;
    border: 2px solid var(--neon-pink);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.1);
}

.value-card:hover {
    background: rgba(255, 20, 147, 0.1);
    box-shadow: 0 0 25px rgba(255, 20, 147, 0.2), 0 0 15px rgba(0, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
}

.value-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.value-card p {
    font-family: 'Rajdhani', sans-serif;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* History Section */
.history-section {
    margin-top: 60px;
    padding: 40px 0;
}

.history-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.history-timeline {
    position: relative;
    padding: 20px 0;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--neon-pink), var(--neon-cyan));
    box-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-cyan);
}

.history-item {
    margin-bottom: 40px;
    position: relative;
}

.history-item:nth-child(odd) {
    margin-left: 0;
    margin-right: 50%;
    text-align: right;
    padding-right: 40px;
}

.history-item:nth-child(even) {
    margin-left: 50%;
    margin-right: 0;
    text-align: left;
    padding-left: 40px;
}

.history-year {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--neon-pink);
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--neon-pink);
}

.history-content {
    background: rgba(0, 255, 255, 0.05);
    padding: 20px;
    border-radius: 0;
    border-left: 4px solid var(--neon-cyan);
    border-top: 2px solid var(--neon-pink);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
}

.history-content p {
    font-family: 'Rajdhani', sans-serif;
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.6;
    margin: 5px 0;
}

.history-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--bg-primary);
    border: 3px solid var(--neon-pink);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 10px var(--neon-pink);
}

/* Artists Section */
.artists {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.artist-group {
    margin-bottom: 4rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 0;
    padding: 3rem;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
    border: 2px solid var(--neon-cyan);
    transition: all 0.3s ease;
}

.artist-group:hover {
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.2), 0 0 20px rgba(255, 20, 147, 0.1);
    border-color: var(--neon-pink);
}

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

.artist-logo {
    width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.artist-intro h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    text-shadow: 0 0 15px var(--neon-pink);
}

.debut-date {
    font-family: 'Rajdhani', sans-serif;
    color: var(--neon-cyan);
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px var(--neon-cyan);
}

.artist-description {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.official-link {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    color: var(--neon-pink);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.official-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    transform: translateX(5px);
}

/* Discography Section */
.discography {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 255, 255, 0.2);
}

.discography h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.album-card {
    background: rgba(255, 20, 147, 0.05);
    border: 2px solid var(--neon-pink);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.1);
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 20, 147, 0.2), 0 0 15px rgba(0, 255, 255, 0.1);
    border-color: var(--neon-cyan);
    background: rgba(255, 20, 147, 0.1);
}

.album-cover {
    margin-bottom: 1rem;
    overflow: hidden;
}

.album-cover img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.3));
}

.album-card h5 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.album-type {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: var(--neon-cyan);
    margin-bottom: 0.3rem;
}

.release-date {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Members Section */
.members {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 255, 255, 0.2);
}

.members h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.member-card {
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid var(--neon-cyan);
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.2), 0 0 15px rgba(255, 20, 147, 0.1);
    border-color: var(--neon-pink);
    background: rgba(0, 255, 255, 0.1);
}

.member-image {
    margin-bottom: 1rem;
    overflow: hidden;
    height: 250px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.member-info h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-name-kr {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
}

.member-role {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    font-weight: 600;
}

.member-details {
    list-style: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.member-details li {
    margin-bottom: 0.5rem;
}

.member-details strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Business Section */
.business {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.business-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.business-card {
    background: rgba(0, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
}

.business-card:hover {
    border-color: var(--neon-pink);
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.2), 0 0 15px rgba(255, 20, 147, 0.1);
    background: rgba(255, 20, 147, 0.05);
}

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

.business-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.business-card p {
    font-family: 'Rajdhani', sans-serif;
    color: var(--text-secondary);
    line-height: 1.6;
}

.main-business {
    max-width: 900px;
    margin: 0 auto;
}

.main-business h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px var(--neon-cyan);
}

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

.main-business-item {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(0, 255, 255, 0.05));
    padding: 2rem;
    border-radius: 0;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 2px solid var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.1);
}

.main-business-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 20, 147, 0.2), 0 0 15px rgba(0, 255, 255, 0.1);
    border-color: var(--neon-cyan);
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.15), rgba(0, 255, 255, 0.1));
}

.main-business-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-business-item p {
    font-family: 'Rajdhani', sans-serif;
    opacity: 0.95;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 3rem 0 2rem;
    border-top: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.footer-content {
    text-align: center;
}

.footer-brand h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-brand p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 2rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
}

.footer-info p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    opacity: 0.6;
    font-family: 'Rajdhani', sans-serif;
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        border-bottom: 2px solid var(--neon-cyan);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .artist-logo {
        width: 150px;
    }

    .artist-intro h3 {
        font-size: 2rem;
    }

    .history-timeline::before {
        left: 20px;
    }

    .history-item:nth-child(odd),
    .history-item:nth-child(even) {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
        padding-left: 40px;
        padding-right: 0;
    }

    .history-item::before {
        left: 20px;
    }
}

@media (max-width: 480px) {
    .nav-brand h1 {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .tag {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }

    section {
        padding: 3rem 0;
    }

    .artist-group {
        padding: 1.5rem;
    }
}

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