/* ============================================
   Y2K MAIN STYLESHEET - Bryn The Raccoon
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', 'Comic Sans MS', 'Arial', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(45deg, #00008b, #4b0082, #8b008b, #ff00ff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #00ffff;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
    line-height: 1.6;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.85);
    border: 5px solid #ff00ff;
    border-radius: 20px;
    box-shadow: 
        0 0 40px #00ffff,
        inset 0 0 40px rgba(255, 0, 255, 0.4),
        0 0 0 10px rgba(0, 0, 0, 0.3);
    padding: 25px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

/* Header Styles */
.glitch-container {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 3px solid #00ffff;
}

.glitch {
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0.05em 0 0 #ff00ff, -0.03em -0.04em 0 #00ffff;
    animation: glitch 725ms infinite;
    color: #ffff00;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

@keyframes glitch {
    0% { text-shadow: 0.05em 0 0 #ff00ff, -0.03em -0.04em 0 #00ffff; }
    15% { text-shadow: 0.05em 0 0 #ff00ff, -0.03em -0.04em 0 #00ffff; }
    16% { text-shadow: -0.05em -0.025em 0 #ff00ff, 0.025em 0.035em 0 #00ffff; }
    49% { text-shadow: -0.05em -0.025em 0 #ff00ff, 0.025em 0.035em 0 #00ffff; }
    50% { text-shadow: 0.05em 0.035em 0 #ff00ff, 0.03em 0 0 #00ffff; }
    99% { text-shadow: 0.05em 0.035em 0 #ff00ff, 0.03em 0 0 #00ffff; }
    100% { text-shadow: -0.05em 0 0 #ff00ff, -0.025em -0.04em 0 #00ffff; }
}

.subtitle {
    text-align: center;
    color: #ffff00;
    font-size: 1.3rem;
    margin-top: 10px;
    text-shadow: 2px 2px 0 #ff00ff;
    font-weight: bold;
}

/* Navigation */
nav {
    background: linear-gradient(to right, #0000ff, #ff00ff);
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    border: 3px solid #ffff00;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.nav-link {
    color: #ffff00;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link:hover, .nav-link.active {
    background: #00ffff;
    color: #000;
    border-color: #ffff00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav-link:hover::after {
    left: 100%;
}

/* Typography */
h1, h2, h3, h4 {
    text-transform: uppercase;
}

h2 {
    color: #ffff00;
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 3px 3px 0 #ff00ff;
    border-bottom: 3px dashed #ff00ff;
    padding-bottom: 15px;
    letter-spacing: 2px;
}

h3 {
    color: #00ffff;
    margin: 20px 0 15px;
    font-size: 1.8rem;
    text-shadow: 2px 2px 0 #000;
}

h4 {
    color: #ffff00;
    margin: 15px 0 10px;
    font-size: 1.4rem;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Home Page Specific */
.hero {
    padding: 30px;
    background: rgba(0, 0, 255, 0.2);
    border-radius: 15px;
    margin-bottom: 30px;
    border: 3px solid #00ffff;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.tagline {
    font-size: 1.4rem;
    color: #ffff00;
    margin-bottom: 30px;
    text-shadow: 2px 2px 0 #ff00ff;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.music-btn {
    background: linear-gradient(to right, #ff00ff, #8b008b);
    color: white;
}

.code-btn {
    background: linear-gradient(to right, #0000ff, #00ffff);
    color: white;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: #ffff00;
}

.hero-image {
    flex: 1;
    min-width: 300px;
}

.pixel-art {
    background: #000;
    padding: 20px;
    border-radius: 10px;
    border: 3px solid #ff00ff;
    text-align: center;
}

.pixel-grid {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
    background: #111;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
    gap: 2px;
}

.pixel-label {
    color: #ffff00;
    font-family: monospace;
    font-size: 1.2rem;
}

/* Quick Links */
.quick-links {
    margin-bottom: 40px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.link-card {
    background: linear-gradient(to bottom right, #0000ff, #8b008b);
    padding: 25px;
    border-radius: 15px;
    text-decoration: none;
    color: #00ffff;
    border: 2px solid #ffff00;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
}

.link-icon {
    font-size: 2.5rem;
    color: #ffff00;
    margin-bottom: 15px;
}

.link-card h3 {
    color: #ffff00;
    margin-bottom: 10px;
}

.link-arrow {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.5rem;
    color: #ff00ff;
    transition: transform 0.3s;
}

.link-card:hover .link-arrow {
    transform: translateX(10px);
}

/* About Section */
.about {
    background: rgba(139, 0, 139, 0.2);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 3px solid #00ffff;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 25px;
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.skills-showcase {
    margin: 25px 0;
}

.skills-bars {
    margin-top: 20px;
}

.skill {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.skill-name {
    width: 150px;
    color: #ffff00;
    font-weight: bold;
}

.skill-bar {
    flex: 1;
    height: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #00ffff;
}

.skill-level {
    height: 100%;
    background: linear-gradient(to right, #ff00ff, #00ffff);
    border-radius: 10px;
    animation: fillBar 2s ease-out;
}

@keyframes fillBar {
    from { width: 0; }
}

.skill-percent {
    width: 50px;
    text-align: right;
    color: #ffff00;
    font-weight: bold;
}

.currently-working ul {
    padding-left: 25px;
    margin-top: 15px;
}

.currently-working li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-bullet {
    color: #ff00ff;
}

.about-stats {
    flex: 1;
    min-width: 250px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #ff00ff;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffff00;
    text-shadow: 2px 2px 0 #ff00ff;
    margin-bottom: 5px;
}

.stat-label {
    color: #00ffff;
    font-size: 0.9rem;
}

/* Recent Activity */
.recent-activity {
    margin-bottom: 40px;
}

.activity-timeline {
    margin-top: 25px;
    position: relative;
    padding-left: 30px;
}

.activity-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #ff00ff, #00ffff);
    border-radius: 2px;
}

.activity-item {
    position: relative;
    margin-bottom: 25px;
    padding-left: 30px;
}

.activity-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: #ffff00;
    border-radius: 50%;
    border: 3px solid #ff00ff;
}

.activity-date {
    color: #ff00ff;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.activity-content {
    background: rgba(0, 0, 255, 0.2);
    padding: 15px;
    border-radius: 10px;
    border-left: 5px solid #00ffff;
}

.activity-content h4 {
    color: #ffff00;
    margin-bottom: 5px;
}

.activity-tag {
    display: inline-block;
    background: rgba(255, 0, 255, 0.3);
    color: #ffff00;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-top: 10px;
    border: 1px solid #00ffff;
}

/* Footer */
footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 3px dashed #00ffff;
}

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

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #ffff00;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00ffff;
    text-decoration: underline;
}

.footer-copyright {
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.visitor-counter, .audio-info, .code-stats, .response-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid #ff00ff;
    color: #ffff00;
    font-size: 0.9rem;
}

/* Music Page Specific */
.featured-track {
    margin-bottom: 40px;
}

.featured-player {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: rgba(0, 0, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #ff00ff;
    margin-top: 25px;
}

.player-artwork {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vinyl {
    width: 250px;
    height: 250px;
    background: #000;
    border-radius: 50%;
    position: relative;
    animation: spin 20s linear infinite;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vinyl-disc {
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    background: linear-gradient(45deg, #000, #222, #444, #000);
    border-radius: 50%;
    border: 5px solid #333;
}

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff00ff;
    color: #000;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    text-transform: uppercase;
    border: 3px solid #ffff00;
}

.player-info {
    flex: 2;
    min-width: 300px;
}

.track-meta {
    color: #ffff00;
    margin: 10px 0 20px;
    font-size: 1.1rem;
}

.track-desc {
    margin-bottom: 25px;
    line-height: 1.8;
}

.player-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.control-btn {
    padding: 12px 25px;
    background: linear-gradient(to bottom, #ff00ff, #8b008b);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.control-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
    border-color: #ffff00;
}

.play-btn {
    background: linear-gradient(to bottom, #00ffff, #0000ff);
}

.audio-visualizer {
    background: #000;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #00ffff;
    margin-top: 20px;
}

.audio-visualizer canvas {
    width: 100%;
    height: 100px;
    display: block;
}

/* Music Grid */
.music-grid-section {
    margin-bottom: 40px;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #00ffff;
    border: 2px solid #ff00ff;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: #00ffff;
    color: #000;
    border-color: #ffff00;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.track-card {
    background: linear-gradient(to bottom right, #0000ff, #8b008b);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #ffff00;
    transition: all 0.3s;
}

.track-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

.track-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.track-badge {
    background: rgba(255, 255, 0, 0.2);
    color: #ffff00;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    border: 1px solid #00ffff;
}

.track-description {
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.track-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #ffff00;
}

.track-player {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.mini-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #ff00ff, #8b008b);
    color: white;
    border: 2px solid #ffff00;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.mini-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #ff00ff;
}

.waveform-mini {
    flex: 1;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    border: 1px solid #00ffff;
    position: relative;
    overflow: hidden;
}

.waveform-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 0, 255, 0.3) 25%, 
        rgba(0, 255, 255, 0.3) 50%, 
        rgba(255, 255, 0, 0.3) 75%, 
        transparent 100%);
    animation: waveMove 2s linear infinite;
}

.track-links {
    display: flex;
    justify-content: space-between;
    border-top: 1px dashed #ff00ff;
    padding-top: 15px;
}

.track-links a {
    color: #00ffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.track-links a:hover {
    color: #ffff00;
}

/* Audio Tools */
.audio-tools {
    margin-bottom: 40px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.tool-card {
    background: rgba(0, 0, 255, 0.2);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #00ffff;
    transition: transform 0.3s;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

.tool-icon {
    font-size: 2.5rem;
    color: #ffff00;
    margin-bottom: 15px;
}

.tool-card h3 {
    color: #ffff00;
    margin-bottom: 10px;
}

.tool-tech {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.tool-tech span {
    background: rgba(255, 0, 255, 0.3);
    color: #ffff00;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #00ffff;
}

.tool-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s;
}

.tool-link:hover {
    color: #ffff00;
    gap: 12px;
}

/* Music Stats */
.music-stats {
    margin-bottom: 40px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.stat-item {
    background: linear-gradient(45deg, #8b008b, #0000ff);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #ffff00;
}

.stat-value {
    font-size: 3rem;
    font-weight: bold;
    color: #ffff00;
    text-shadow: 3px 3px 0 #ff00ff;
    margin-bottom: 10px;
}

.stat-label {
    color: #00ffff;
    font-size: 1.1rem;
}

/* Projects Page Specific */
.featured-project {
    margin-bottom: 40px;
}

.project-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 25px;
}

.project-preview {
    flex: 1;
    min-width: 300px;
}

.browser-window {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #00ffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.browser-header {
    background: linear-gradient(to right, #0000ff, #8b008b);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5555; }
.dot.yellow { background: #ffff55; }
.dot.green { background: #55ff55; }

.browser-url {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 15px;
    border-radius: 20px;
    color: #ffff00;
    font-family: monospace;
    font-size: 0.9rem;
    border: 1px solid #00ffff;
}

.browser-content {
    padding: 20px;
    height: 300px;
    background: #111;
}

.daw-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.daw-track {
    height: 60px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 0, 255, 0.2) 50%, 
        transparent 100%);
    border-radius: 5px;
    border: 1px solid #00ffff;
    animation: trackGlow 2s infinite;
}

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

.project-details {
    flex: 1;
    min-width: 300px;
}

.project-tagline {
    color: #ffff00;
    font-size: 1.2rem;
    margin: 15px 0 25px;
    text-shadow: 2px 2px 0 #ff00ff;
}

.project-features {
    margin: 25px 0;
}

.project-features ul {
    padding-left: 25px;
    margin-top: 15px;
}

.project-features li {
    margin-bottom: 10px;
    color: #00ffff;
    position: relative;
    padding-left: 10px;
}

.project-features li::before {
    content: '▶';
    color: #ff00ff;
    position: absolute;
    left: -15px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;
}

.tech {
    background: rgba(255, 255, 0, 0.2);
    color: #ffff00;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid #00ffff;
}

.project-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.project-link {
    padding: 12px 25px;
    background: linear-gradient(to right, #ff00ff, #8b008b);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.project-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
    border-color: #ffff00;
}

/* Projects Grid */
.projects-grid {
    margin-bottom: 40px;
}

.projects-filter {
    display: flex;
    gap: 10px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.project-card {
    background: linear-gradient(45deg, rgba(0, 0, 255, 0.2), rgba(139, 0, 139, 0.2));
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #00ffff;
    transition: all 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
    border-color: #ffff00;
}

.project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.project-status {
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
}

.project-status.live {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid #00ff00;
}

.project-status.active {
    background: rgba(255, 255, 0, 0.2);
    color: #ffff00;
    border: 1px solid #ffff00;
}

.project-status.dev {
    background: rgba(255, 0, 255, 0.2);
    color: #ff00ff;
    border: 1px solid #ff00ff;
}

.project-status.complete {
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    border: 1px solid #00ffff;
}

.project-description {
    color: #00ffff;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.project-tech {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.project-tech span {
    background: rgba(255, 255, 0, 0.2);
    color: #ffff00;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #00ffff;
}

.project-links {
    display: flex;
    gap: 15px;
    border-top: 1px dashed #ff00ff;
    padding-top: 15px;
}

.project-links a {
    color: #00ffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.project-links a:hover {
    color: #ffff00;
}

/* Code Snippets */
.code-snippets {
    margin-bottom: 40px;
}

.snippet-tabs {
    display: flex;
    gap: 10px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.snippet-tab {
    padding: 10px 25px;
    background: rgba(0, 0, 0, 0.5);
    color: #00ffff;
    border: 2px solid #ff00ff;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.snippet-tab:hover, .snippet-tab.active {
    background: #00ffff;
    color: #000;
    border-color: #ffff00;
}

.snippet-content {
    margin-top: 25px;
}

.code-snippet {
    display: none;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #00ffff;
}

.code-snippet.active {
    display: block;
}

.snippet-header {
    background: linear-gradient(to right, #0000ff, #8b008b);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.snippet-header h4 {
    color: #ffff00;
    margin: 0;
}

.copy-btn {
    background: rgba(0, 0, 0, 0.5);
    color: #00ffff;
    border: 2px solid #ffff00;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.copy-btn:hover {
    background: #00ffff;
    color: #000;
}

.code-snippet pre {
    margin: 0;
    padding: 20px;
    overflow-x: auto;
}

.code-snippet code {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #00ffff;
}

/* GitHub Stats */
.github-stats {
    margin-bottom: 40px;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.stat-card {
    background: linear-gradient(45deg, #8b008b, #0000ff);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 3px solid #ffff00;
}

.stat-icon {
    font-size: 2.5rem;
    color: #ffff00;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffff00;
    text-shadow: 2px 2px 0 #ff00ff;
    margin-bottom: 5px;
}

.stat-label {
    color: #00ffff;
    font-size: 1rem;
}

.github-link {
    text-align: center;
    margin-top: 30px;
}

.github-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: linear-gradient(to right, #000, #333);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    border: 2px solid #00ffff;
    transition: all 0.3s;
}

.github-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
    background: linear-gradient(to right, #333, #000);
}

/* Contact Page Specific */
.collaboration {
    margin-bottom: 40px;
}

.collab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.collab-card {
    background: linear-gradient(to bottom right, #0000ff, #8b008b);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #ffff00;
    transition: all 0.3s;
}

.collab-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 255, 0.3);
}

.collab-icon {
    font-size: 2.5rem;
    color: #ffff00;
    margin-bottom: 15px;
}

.collab-card h3 {
    color: #ffff00;
    margin-bottom: 15px;
}

.collab-card ul {
    padding-left: 20px;
}

.collab-card li {
    color: #00ffff;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form-section {
    margin-bottom: 40px;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 25px;
}

.y2k-form {
    flex: 2;
    min-width: 300px;
    background: rgba(0, 0, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #00ffff;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffff00;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #ff00ff;
    border-radius: 10px;
    color: #00ffff;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffff00;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.5);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300ffff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.file-upload {
    border: 2px dashed #ff00ff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.file-upload:hover {
    border-color: #ffff00;
    background: rgba(255, 0, 255, 0.1);
}

.file-upload input[type="file"] {
    display: none;
}

.file-info {
    color: #00ffff;
    font-size: 0.9rem;
}

.file-size {
    display: block;
    color: #ffff00;
    margin-top: 5px;
    font-size: 0.8rem;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.submit-btn, .reset-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-btn {
    background: linear-gradient(to right, #ff00ff, #00ffff);
    color: #000;
    border: 2px solid #ffff00;
}

.reset-btn {
    background: rgba(0, 0, 0, 0.5);
    color: #00ffff;
    border: 2px solid #ff00ff;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

.reset-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
}

/* Form Sidebar */
.form-sidebar {
    flex: 1;
    min-width: 250px;
    background: rgba(139, 0, 139, 0.2);
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #ff00ff;
}

.form-sidebar h3 {
    color: #ffff00;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(to bottom, #ff00ff, #00ffff);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffff00;
    margin-bottom: 5px;
}

.step-content p {
    color: #00ffff;
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Info */
.contact-info-section {
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.contact-method {
    background: linear-gradient(45deg, rgba(0, 0, 255, 0.2), rgba(139, 0, 139, 0.2));
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #00ffff;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
    border-color: #ffff00;
}

.contact-icon {
    font-size: 2.5rem;
    color: #ffff00;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #ffff00;
    margin-bottom: 5px;
}

.contact-details p {
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.contact-link:hover {
    color: #ffff00;
    gap: 12px;
}

.copy-discord {
    background: none;
    border: none;
    color: #00ffff;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.copy-discord:hover {
    color: #ffff00;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 40px;
}

.faq-container {
    margin-top: 25px;
}

.faq-item {
    margin-bottom: 15px;
    border: 2px solid #ff00ff;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: linear-gradient(to right, #0000ff, #8b008b);
    color: #ffff00;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: linear-gradient(to right, #8b008b, #0000ff);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    background: rgba(0, 0, 0, 0.5);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    color: #00ffff;
    margin: 0;
}

/* Status Section */
.status-section {
    margin-bottom: 40px;
}

.status-container {
    background: linear-gradient(45deg, #0000ff, #8b008b);
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #ffff00;
    margin-top: 25px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.status-light {
    width: 20px;
    height: 20px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 20px #00ff00;
    animation: pulse 2s infinite;
}

.status-text h3 {
    color: #ffff00;
    margin-bottom: 5px;
}

.status-text p {
    color: #00ffff;
    margin: 0;
    font-size: 0.9rem;
}

.current-projects {
    border-top: 2px dashed #ff00ff;
    padding-top: 30px;
}

.current-projects h4 {
    color: #ffff00;
    margin-bottom: 15px;
}

.current-projects ul {
    padding-left: 25px;
}

.current-projects li {
    color: #00ffff;
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

.current-projects li::before {
    content: '▶';
    color: #ff00ff;
    position: absolute;
    left: -15px;
}

/* Terminal */
.terminal {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #00ffff;
    margin: 30px auto;
    max-width: 600px;
}

.terminal-header {
    background: linear-gradient(to right, #0000ff, #8b008b);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.terminal-dots {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dots.red { background: #ff5555; }
.terminal-dots.yellow { background: #ffff55; }
.terminal-dots.green { background: #55ff55; }

.terminal-title {
    flex: 1;
    color: #ffff00;
    font-family: monospace;
    font-size: 0.9rem;
}

.terminal-body {
    padding: 20px;
    font-family: monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.terminal-body p {
    color: #00ffff;
    margin: 0 0 10px;
}

.terminal-link {
    color: #ffff00;
    text-decoration: underline;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .glitch {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    nav {
        justify-content: center;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .tracks-grid,
    .tools-grid,
    .links-grid,
    .collab-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-player,
    .project-showcase,
    .form-container {
        flex-direction: column;
    }
    
    .player-artwork,
    .project-preview,
    .project-details {
        width: 100%;
    }
    
    .vinyl {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .glitch {
        font-size: 2rem;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .hero-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .stats-container,
    .stats-cards {
        grid-template-columns: 1fr;
    }
}