@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=VT323&display=swap');

:root {
    --primary-color: #00ff00;
    --secondary-color: #ff00ff;
    --background-color: #121212;
    --text-color: #ffffff;
    --accent-color: #00ffff;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 255, 0, 0.3);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    font-family: 'VT323', monospace;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul li a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
}

/* Hero Section Styles */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #121212, #1a1a1a);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.5);
    font-family: 'VT323', monospace;
    letter-spacing: 5px;
}

.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-family: 'VT323', monospace;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--background-color);
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'VT323', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.cta-button:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.5);
}

.pixel-art-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: -1;
    animation: pixelate 10s infinite alternate;
}

@keyframes pixelate {
    0% { filter: none; }
    100% { filter: pixelate(6px); }
}

/* Drum Machine Styles */
.drum-machine-section {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.drum-machine-container {
    max-width: 1000px;
    margin: 0 auto;
}

.drum-machine {
    background: linear-gradient(45deg, #2c2c2c, #3c3c3c);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
}

.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 5px;
    color: var(--background-color);
    padding: 12px 24px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-family: 'VT323', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn:hover {
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 255, 0, 0.3);
}

.tempo-control {
    display: flex;
    align-items: center;
}

.tempo-control label {
    margin-right: 10px;
    color: var(--accent-color);
    font-family: 'VT323', monospace;
}

.tempo-control input[type="range"] {
    -webkit-appearance: none;
    width: 150px;
    height: 10px;
    background: #4a4a4a;
    outline: none;
    border-radius: 5px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.tempo-control input[type="range"]:hover {
    opacity: 1;
}

.tempo-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    cursor: pointer;
    border-radius: 50%;
}

.sequencer {
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    gap: 5px;
    margin-bottom: 30px;
}

.step {
    aspect-ratio: 1;
    background: #4a4a4a;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step.active {
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.step.current {
    box-shadow: 0 0 15px var(--accent-color);
}

.drum-pads {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.drum-pad {
    aspect-ratio: 1;
    background: linear-gradient(45deg, #3c3c3c, #4a4a4a);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'VT323', monospace;
    text-transform: uppercase;
}

.drum-pad:active {
    transform: translateY(2px);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    background: var(--primary-color);
    color: var(--background-color);
}

.effects {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.effect {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.effect label {
    margin-bottom: 5px;
    color: var(--accent-color);
    font-family: 'VT323', monospace;
}

/* About Section Styles */
.about-section {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.about-content {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    align-items: flex-start;
    background: rgba(60, 60, 60, 0.3);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.artist-avatar {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin-right: 30px;
    border: 5px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.artist-bio {
    flex: 1;
}

.artist-bio p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Footer Styles */
footer {
    background-color: #1a1a1a;
    color: var(--text-color);
    text-align: center;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-block;
    margin: 0 15px;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

/* Easter Egg Styles */
.easter-egg {
    position: fixed;
    bottom: -50px;
    right: 20px;
    width: 50px;
    height: 50px;
    transition: bottom 0.5s ease;
    cursor: pointer;
    z-index: 1000;
}

.pixel-monkey {
    width: 100%;
    height: 100%;
    background-image: url('/api/placeholder/50/50');
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero .tagline {
        font-size: 1.2rem;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .artist-avatar {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .drum-pads {
        grid-template-columns: repeat(2, 1fr);
    }

    .controls {
        flex-direction: column;
        align-items: stretch;
    }

    .controls > * {
        margin-bottom: 15px;
    }
}