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

:root {
    --bg-dark: #05050a;
    --bg-card: #0d0d14;
    --bg-elevated: #14141f;
    --primary: #9d4edd;
    --primary-glow: #bf5af2;
    --secondary: #00ff88;
    --accent: #ff3366;
    --warning: #ff6600;
    --cyan: #00d4ff;
    --text: #e8e8e8;
    --text-dim: #777;
    --border: #1f1f2e;
    --voodoo-purple: #6b21a8;
    --voodoo-deep: #3b0764;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-dark);
    background-image:
        radial-gradient(ellipse at 20% 80%, rgba(157, 78, 221, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(107, 33, 168, 0.08) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background:
        linear-gradient(180deg, rgba(59, 7, 100, 0.75) 0%, rgba(5, 5, 10, 0.88) 100%),
        url('images/kb2uka_wallpaper1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--voodoo-purple);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(157, 78, 221, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 70% 50%, rgba(191, 90, 242, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

header .container {
    position: relative;
    z-index: 2;
}

.waveform-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(157, 78, 221, 0.05) 3px,
            rgba(157, 78, 221, 0.05) 6px
        );
    animation: scan 10s linear infinite;
}

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

header h1 {
    font-size: 5rem;
    margin-bottom: 15px;
    letter-spacing: 12px;
    font-weight: 700;
    color: var(--primary-glow);
    text-shadow:
        0 0 10px var(--primary),
        0 0 30px var(--primary),
        0 0 60px var(--voodoo-purple),
        0 0 100px rgba(157, 78, 221, 0.5);
    font-family: 'Courier New', monospace;
    animation: flicker 4s ease-in-out infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    96% { opacity: 0.9; }
    97% { opacity: 1; }
}

header .tagline {
    font-size: 1rem;
    color: var(--secondary);
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--secondary);
}

.signal-indicator {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 35px;
}

.signal-bar {
    width: 6px;
    background: linear-gradient(180deg, var(--secondary), var(--primary));
    border-radius: 3px;
    animation: voodoo-pulse 2s ease-in-out infinite;
    box-shadow:
        0 0 10px var(--primary),
        0 0 20px rgba(157, 78, 221, 0.5);
}

.signal-bar:nth-child(1) { height: 12px; animation-delay: 0s; }
.signal-bar:nth-child(2) { height: 22px; animation-delay: 0.15s; }
.signal-bar:nth-child(3) { height: 32px; animation-delay: 0.3s; }
.signal-bar:nth-child(4) { height: 22px; animation-delay: 0.45s; }
.signal-bar:nth-child(5) { height: 12px; animation-delay: 0.6s; }

@keyframes voodoo-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Forum Register Link */
.forum-register-link {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--secondary);
    border-radius: 4px;
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: register-flash 1.5s ease-in-out infinite;
}

.forum-register-link:hover {
    background: var(--secondary);
    color: var(--bg-dark);
    box-shadow: 0 0 30px var(--secondary);
}

@keyframes register-flash {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px var(--secondary), 0 0 20px var(--secondary);
        box-shadow: 0 0 15px var(--secondary);
    }
    50% {
        opacity: 0.6;
        text-shadow: none;
        box-shadow: 0 0 5px var(--secondary);
    }
}

/* Navigation */
nav {
    background: rgba(13, 13, 20, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li a {
    display: block;
    color: var(--text-dim);
    text-decoration: none;
    padding: 20px 30px;
    transition: all 0.3s;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-glow);
    text-shadow: 0 0 15px var(--primary);
}

nav ul li a.active {
    color: var(--primary-glow);
    border-bottom-color: var(--primary);
    text-shadow: 0 0 15px var(--primary);
}

/* Sections */
.section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.section:last-child {
    border-bottom: none;
}

.section h2 {
    color: var(--text);
    font-size: 1.6rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 20px auto 0;
    box-shadow: 0 0 15px var(--primary);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-dim);
}

/* Home Section */
.youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto 30px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    border-radius: 4px;
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.youtube-link svg {
    width: 24px;
    height: 24px;
    color: var(--primary-glow);
}

.youtube-link:hover {
    background: linear-gradient(135deg, var(--voodoo-purple), var(--primary));
    border-color: var(--primary-glow);
    color: var(--secondary);
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.4);
    transform: translateY(-2px);
}

#home {
    text-align: center;
}

.intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-dim);
}

.quick-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.stat:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.2);
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--voodoo-purple), var(--primary), var(--secondary));
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--secondary);
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 20px var(--secondary);
}

.stat-label {
    color: var(--text-dim);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: var(--bg-card);
    padding: 35px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transition: left 0.5s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    border-color: var(--primary);
    box-shadow:
        0 0 30px rgba(157, 78, 221, 0.15),
        inset 0 0 30px rgba(157, 78, 221, 0.03);
    transform: translateY(-3px);
}

.card h3 {
    color: var(--primary-glow);
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.3);
}

.card p {
    color: var(--text-dim);
}

/* Recordings Section */
.filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 28px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-dim);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary-glow);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--voodoo-purple), var(--primary));
    border-color: var(--primary);
    color: white;
    font-weight: 600;
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.4);
}

.recordings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.recording-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s;
    position: relative;
}

.recording-card:hover {
    border-color: var(--primary);
    box-shadow:
        0 0 40px rgba(157, 78, 221, 0.2),
        0 0 80px rgba(107, 33, 168, 0.1);
    transform: translateY(-5px);
}

/* VU Meter style decoration */
.recording-card::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg,
        var(--secondary) 0%,
        var(--secondary) 50%,
        var(--primary) 50%,
        var(--primary) 75%,
        var(--accent) 75%,
        var(--accent) 100%
    );
    box-shadow: 0 0 10px var(--secondary);
}

.recording-header {
    background: var(--bg-elevated);
    padding: 18px 22px;
    display: flex;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}

.band-tag {
    background: linear-gradient(135deg, var(--accent), #ff5577);
    color: white;
    padding: 5px 14px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.mode-tag {
    background: linear-gradient(135deg, var(--cyan), #00aadd);
    color: var(--bg-dark);
    padding: 5px 14px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.recording-card h3 {
    padding: 22px 22px 12px;
    color: var(--text);
    font-size: 1.1rem;
}

.recording-card > p {
    padding: 0 22px;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.audio-player {
    padding: 22px;
    background: linear-gradient(180deg, transparent, rgba(157, 78, 221, 0.03));
}

.audio-player audio {
    width: 100%;
    height: 50px;
    border-radius: 4px;
    filter: hue-rotate(260deg) saturate(1.5);
}

.recording-meta {
    padding: 16px 22px;
    background: var(--bg-elevated);
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-dim);
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    border-top: 1px solid var(--border);
}

/* Resources Section */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.resource-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.resource-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.15);
}

.resource-card h3 {
    color: var(--secondary);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.resource-card ul {
    list-style: none;
}

.resource-card ul li {
    margin-bottom: 14px;
}

.resource-card ul li a {
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.resource-card ul li a:hover {
    color: var(--primary-glow);
    text-shadow: 0 0 10px var(--primary);
}

.resource-card ul li a::before {
    content: '>';
    margin-right: 12px;
    color: var(--primary);
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 5px var(--primary);
}

/* Videos Section */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.video-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s;
}

.video-card:hover {
    border-color: var(--primary);
    box-shadow:
        0 0 40px rgba(157, 78, 221, 0.2),
        0 0 80px rgba(107, 33, 168, 0.1);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Under Construction */
.under-construction {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.under-construction p {
    font-size: 1.5rem;
    color: var(--warning);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 20px var(--warning);
    margin-bottom: 15px;
}

.under-construction .construction-note {
    font-size: 1rem;
    color: var(--text-dim);
    text-transform: none;
    letter-spacing: 1px;
    text-shadow: none;
    margin-bottom: 0;
}

/* Bio Section */
.bio-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.bio-content h3 {
    color: var(--primary-glow);
    margin-bottom: 30px;
    font-size: 1.3rem;
    text-shadow: 0 0 15px rgba(157, 78, 221, 0.3);
}

.bio-content p {
    color: var(--text-dim);
    margin-bottom: 25px;
    line-height: 1.8;
}

.bio-content p:last-child {
    margin-bottom: 0;
}

.bio-content a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.bio-content a:hover {
    color: var(--primary-glow);
    text-shadow: 0 0 10px var(--primary);
}

/* Audio Chain Diagram */
.audio-chain-diagram {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: center;
}

.audio-chain-diagram h3 {
    color: var(--primary-glow);
    margin-bottom: 25px;
    font-size: 1.3rem;
    text-shadow: 0 0 15px rgba(157, 78, 221, 0.3);
}

.audio-chain-diagram embed {
    border: 2px solid var(--primary);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.3);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    color: var(--secondary);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.contact-info > p {
    color: var(--text-dim);
}

.contact-detail {
    margin-top: 25px;
    padding: 18px;
    background: var(--bg-card);
    border-radius: 4px;
    border: 1px solid var(--border);
    font-family: 'Courier New', monospace;
    transition: all 0.3s;
}

.contact-detail:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.2);
}

.contact-detail strong {
    color: var(--primary-glow);
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
}

.contact-detail a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-detail a:hover {
    color: var(--primary-glow);
    text-shadow: 0 0 10px var(--primary);
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--voodoo-purple), var(--primary), var(--secondary));
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dim);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--bg-elevated);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow:
        0 0 15px rgba(157, 78, 221, 0.3),
        inset 0 0 15px rgba(157, 78, 221, 0.05);
}

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

.submit-btn {
    background: linear-gradient(135deg, var(--voodoo-purple), var(--primary));
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.submit-btn:hover {
    box-shadow:
        0 0 30px var(--primary),
        0 0 60px rgba(157, 78, 221, 0.3);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: var(--bg-card);
    color: var(--text-dim);
    text-align: center;
    padding: 35px 0;
    border-top: 1px solid var(--border);
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.8rem;
        letter-spacing: 6px;
    }

    nav ul {
        justify-content: center;
    }

    nav ul li a {
        padding: 16px 18px;
        font-size: 0.75rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .quick-stats {
        flex-direction: row;
        justify-content: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .recordings-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--primary);
    color: var(--bg-dark);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--voodoo-purple), var(--primary));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
}

/* Ambient glow effect on page */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 0% 100%, rgba(107, 33, 168, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(157, 78, 221, 0.08) 0%, transparent 50%);
    z-index: -1;
}
