JIT
Create a comprehensive phonk music app for all fans
make a working phonk only app with all phonk ever

Phonk App with All Phonk Music

I'll help you create a Phonk music app. Phonk is a genre that blends Memphis rap with funk and electronic elements. Here's a basic Phonk music player app structure:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Phonk Music Player</title>
    <style>
        body {
            font-family: 'Courier New', monospace;
            background-color: #0f0f0f;
            color: #00ff00;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100vh;
        }
        .player {
            width: 90%;
            max-width: 500px;
            background-color: #1a1a1a;
            border: 2px solid #00ff00;
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
        }
        .controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
        }
        button {
            background-color: #00ff00;
            color: #0f0f0f;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s;
        }
        button:hover {
            background-color: #0f0f0f;
            color: #00ff00;
            border: 1px solid #00ff00;
        }
        .progress-container {
            width: 100%;
            height: 10px;
            background-color: #333;
            border-radius: 5px;
            margin: 20px 0;
            cursor: pointer;
        }
        .progress {
            height: 100%;
            background-color: #00ff00;
            border-radius: 5px;
            width: 0%;
        }
        .playlist {
            width: 100%;
            max-height: 300px;
            overflow-y: auto;
            margin-top: 20px;
        }
        .song {
            padding: 10px;
            border-bottom: 1px solid #333;
            cursor: pointer;
            transition: all 0.2s;
        }
        .song:hover {
            background-color: #333;
        }
        .song.active {
            color: #00ff00;
            font-weight: bold;
        }
        h1 {
            text-align: center;
            margin-top: 20px;
            text-shadow: 0 0 10px #00ff00;
        }
    </style>
</head>
<body>
    <h1>PHONK MUSIC PLAYER</h1>
    <div class="player">
        <div class="controls">
            <button id="prev"></button>
            <button id="play"></button>
            <button id="next"></button>
        </div>
        <div class="progress-container">
            <div class="progress" id="progress"></div>
        </div>
        <div class="playlist" id="playlist">
            <!-- Songs will be added here -->
        </div>
    </div>

    <script>
        const songs = 
Preview not available