Moonie805 commited on
Commit
f8a7a59
·
verified ·
1 Parent(s): 5991ccf

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. index.html +1582 -663
index.html CHANGED
@@ -1,668 +1,1587 @@
1
  <!DOCTYPE html>
2
  <html lang="en">
 
3
  <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Song Title Generator</title>
7
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
8
- <style>
9
- * {
10
- margin: 0;
11
- padding: 0;
12
- box-sizing: border-box;
13
- }
14
-
15
- :root {
16
- --primary-color: #6366f1;
17
- --secondary-color: #8b5cf6;
18
- --accent-color: #ec4899;
19
- --dark-color: #1e293b;
20
- --light-color: #f8fafc;
21
- --text-color: #334155;
22
- --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
23
- }
24
-
25
- body {
26
- font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
27
- background: var(--gradient);
28
- min-height: 100vh;
29
- color: var(--text-color);
30
- line-height: 1.6;
31
- overflow-x: hidden;
32
- }
33
-
34
- .container {
35
- max-width: 1200px;
36
- margin: 0 auto;
37
- padding: 20px;
38
- }
39
-
40
- header {
41
- padding: 20px 0;
42
- text-align: center;
43
- position: relative;
44
- }
45
-
46
- .logo {
47
- font-size: 2.5rem;
48
- font-weight: bold;
49
- background: var(--gradient);
50
- -webkit-background-clip: text;
51
- -webkit-text-fill-color: transparent;
52
- margin-bottom: 10px;
53
- animation: pulse 2s infinite;
54
- }
55
-
56
- .anycoder-link {
57
- color: white;
58
- text-decoration: none;
59
- font-size: 1rem;
60
- padding: 8px 16px;
61
- border-radius: 25px;
62
- background: rgba(255, 255, 255, 0.2);
63
- backdrop-filter: blur(10px);
64
- transition: all 0.3s ease;
65
- display: inline-flex;
66
- align-items: center;
67
- gap: 8px;
68
- }
69
-
70
- .anycoder-link:hover {
71
- background: rgba(255, 255, 255, 0.3);
72
- transform: translateY(-2px);
73
- }
74
-
75
- main {
76
- display: flex;
77
- flex-direction: column;
78
- align-items: center;
79
- padding: 40px 0;
80
- }
81
-
82
- .generator-card {
83
- background: rgba(255, 255, 255, 0.95);
84
- backdrop-filter: blur(10px);
85
- border-radius: 20px;
86
- padding: 40px;
87
- width: 100%;
88
- max-width: 600px;
89
- box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
90
- transform: translateY(0);
91
- transition: transform 0.3s ease;
92
- }
93
-
94
- .generator-card:hover {
95
- transform: translateY(-5px);
96
- }
97
-
98
- .genre-selector {
99
- display: flex;
100
- flex-wrap: wrap;
101
- gap: 10px;
102
- margin-bottom: 30px;
103
- justify-content: center;
104
- }
105
-
106
- .genre-btn {
107
- padding: 10px 20px;
108
- border: none;
109
- border-radius: 30px;
110
- background: linear-gradient(135deg, #667eea, #764ba2);
111
- color: white;
112
- cursor: pointer;
113
- transition: all 0.3s ease;
114
- font-weight: 500;
115
- }
116
-
117
- .genre-btn:hover {
118
- transform: scale(1.05);
119
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
120
- }
121
-
122
- .genre-btn.active {
123
- background: var(--gradient);
124
- transform: scale(1.1);
125
- }
126
-
127
- .title-display {
128
- text-align: center;
129
- margin: 30px 0;
130
- min-height: 120px;
131
- display: flex;
132
- flex-direction: column;
133
- justify-content: center;
134
- align-items: center;
135
- }
136
-
137
- .generated-title {
138
- font-size: 2.5rem;
139
- font-weight: bold;
140
- color: var(--dark-color);
141
- margin-bottom: 15px;
142
- word-wrap: break-word;
143
- transition: all 0.5s ease;
144
- }
145
-
146
- .title-subtext {
147
- font-size: 1.1rem;
148
- color: #64748b;
149
- font-style: italic;
150
- }
151
-
152
- .action-buttons {
153
- display: flex;
154
- gap: 15px;
155
- justify-content: center;
156
- margin-top: 20px;
157
- }
158
-
159
- .btn {
160
- padding: 12px 30px;
161
- border: none;
162
- border-radius: 30px;
163
- cursor: pointer;
164
- font-weight: 600;
165
- transition: all 0.3s ease;
166
- display: inline-flex;
167
- align-items: center;
168
- gap: 8px;
169
- }
170
-
171
- .generate-btn {
172
- background: var(--gradient);
173
- color: white;
174
- }
175
-
176
- .generate-btn:hover {
177
- transform: translateY(-3px);
178
- box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
179
- }
180
-
181
- .copy-btn {
182
- background: #f1f5f9;
183
- color: var(--dark-color);
184
- }
185
-
186
- .copy-btn:hover {
187
- background: #e2e8f0;
188
- }
189
-
190
- .history-section {
191
- margin-top: 40px;
192
- width: 100%;
193
- max-width: 600px;
194
- }
195
-
196
- .history-title {
197
- font-size: 1.5rem;
198
- margin-bottom: 20px;
199
- color: white;
200
- text-align: center;
201
- }
202
-
203
- .history-list {
204
- background: rgba(255, 255, 255, 0.95);
205
- backdrop-filter: blur(10px);
206
- border-radius: 20px;
207
- padding: 20px;
208
- max-height: 300px;
209
- overflow-y: auto;
210
- }
211
-
212
- .history-item {
213
- padding: 15px;
214
- margin-bottom: 10px;
215
- background: linear-gradient(135deg, #f8fafc, #e2e8f0);
216
- border-radius: 10px;
217
- display: flex;
218
- justify-content: space-between;
219
- align-items: center;
220
- transition: all 0.3s ease;
221
- }
222
-
223
- .history-item:hover {
224
- transform: translateX(5px);
225
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
226
- }
227
-
228
- .history-title-text {
229
- font-weight: 600;
230
- color: var(--dark-color);
231
- }
232
-
233
- .history-genre {
234
- font-size: 0.9rem;
235
- color: #64748b;
236
- background: rgba(99, 102, 241, 0.1);
237
- padding: 4px 12px;
238
- border-radius: 15px;
239
- }
240
-
241
- .copy-history-btn {
242
- background: transparent;
243
- color: var(--primary-color);
244
- border: 1px solid var(--primary-color);
245
- }
246
-
247
- .copy-history-btn:hover {
248
- background: var(--primary-color);
249
- color: white;
250
- }
251
-
252
- .empty-history {
253
- text-align: center;
254
- padding: 40px;
255
- color: #94a3b8;
256
- font-style: italic;
257
- }
258
-
259
- .toast {
260
- position: fixed;
261
- bottom: 30px;
262
- right: 30px;
263
- background: var(--dark-color);
264
- color: white;
265
- padding: 15px 25px;
266
- border-radius: 10px;
267
- box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
268
- transform: translateY(100px);
269
- opacity: 0;
270
- transition: all 0.3s ease;
271
- z-index: 1000;
272
- }
273
-
274
- .toast.show {
275
- transform: translateY(0);
276
- opacity: 1;
277
- }
278
-
279
- @keyframes pulse {
280
- 0% {
281
- transform: scale(1);
282
- }
283
- 50% {
284
- transform: scale(1.05);
285
- }
286
- 100% {
287
- transform: scale(1);
288
- }
289
- }
290
-
291
- @media (max-width: 768px) {
292
- .generator-card {
293
- padding: 30px 20px;
294
- }
295
-
296
- .generated-title {
297
- font-size: 2rem;
298
- }
299
-
300
- .action-buttons {
301
- flex-direction: column;
302
- }
303
-
304
- .btn {
305
- width: 100%;
306
- justify-content: center;
307
- }
308
- }
309
-
310
- @media (max-width: 480px) {
311
- .logo {
312
- font-size: 2rem;
313
- }
314
-
315
- .generated-title {
316
- font-size: 1.8rem;
317
- }
318
-
319
- .genre-selector {
320
- flex-direction: column;
321
- align-items: center;
322
- }
323
-
324
- .genre-btn {
325
- width: 80%;
326
- }
327
- }
328
- </style>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
329
  </head>
 
330
  <body>
331
- <div class="container">
332
- <header>
333
- <h1 class="logo">Song Title Generator</h1>
334
- <a href="https://huggingface.co/spaces/akhaliq/anycoder" class="anycoder-link" target="_blank">
335
- <i class="fas fa-code"></i>
336
- Built with anycoder
337
- </a>
338
- </header>
339
-
340
- <main>
341
- <div class="generator-card">
342
- <div class="genre-selector">
343
- <button class="genre-btn active" data-genre="all">All Genres</button>
344
- <button class="genre-btn" data-genre="pop">Pop</button>
345
- <button class="genre-btn" data-genre="rock">Rock</button>
346
- <button class="genre-btn" data-genre="hiphop">Hip-Hop</button>
347
- <button class="genre-btn" data-genre="rnb">R&B</button>
348
- <button class="genre-btn" data-genre="electronic">Electronic</button>
349
- <button class="genre-btn" data-genre="country">Country</button>
350
- </div>
351
-
352
- <div class="title-display">
353
- <h2 class="generated-title" id="generatedTitle">Click Generate to Create a Song Title</h2>
354
- <p class="title-subtext" id="titleSubtext">Your next hit awaits</p>
355
- </div>
356
-
357
- <div class="action-buttons">
358
- <button class="btn generate-btn" id="generateBtn">
359
- <i class="fas fa-magic"></i>
360
- Generate
361
- </button>
362
- <button class="btn copy-btn" id="copyBtn">
363
- <i class="fas fa-copy"></i>
364
- Copy
365
- </button>
366
- </div>
367
- </div>
368
-
369
- <div class="history-section">
370
- <h3 class="history-title">Generated Titles History</h3>
371
- <div class="history-list" id="historyList">
372
- <div class="empty-history">
373
- <i class="fas fa-music" style="font-size: 3rem; margin-bottom: 20px; opacity: 0.5;"></i>
374
- <p>No titles generated yet. Start creating!</p>
375
- </div>
376
- </div>
377
- </div>
378
- </main>
379
- </div>
380
-
381
- <div class="toast" id="toast">Copied to clipboard!</div>
382
-
383
- <script>
384
- const songTitleTemplates = {
385
- all: [
386
- "Midnight Dreams",
387
- "Electric Heart",
388
- "Summer Breeze",
389
- "Neon Lights",
390
- "Golden Hour",
391
- "Starry Night",
392
- "Ocean Waves",
393
- "City Lights",
394
- "Broken Dreams",
395
- "Love Again",
396
- "Dancing Shadows",
397
- "Silent Whispers",
398
- "Fire & Ice",
399
- "Rainy Days",
400
- "Sunset Boulevard",
401
- "Moonlight Serenade",
402
- "Urban Jungle",
403
- "Crystal Tears",
404
- "Velvet Sky",
405
- "Golden Memories",
406
- "Midnight Express"
407
- ],
408
- pop: [
409
- "Dancing Queen",
410
- "Summer Love",
411
- "Heartbeat",
412
- "Electric Feel",
413
- "Pop Star Dreams",
414
- "Dance Floor",
415
- "Love Story",
416
- "Party Time",
417
- "Neon Dreams",
418
- "Golden Hour",
419
- "Sunset Boulevard",
420
- "City Lights",
421
- "Midnight Dreams",
422
- "Electric Heart",
423
- "Summer Breeze",
424
- "Neon Lights",
425
- "Golden Hour",
426
- "Starry Night",
427
- "Ocean Waves",
428
- "City Lights",
429
- "Broken Dreams"
430
- ],
431
- rock: [
432
- "Rock & Roll",
433
- "Thunderstruck",
434
- "Electric Storm",
435
- "Midnight Rider",
436
- "Highway to Hell",
437
- "Rock Star",
438
- "Guitar Hero",
439
- "Rock Revolution",
440
- "Thunder Road",
441
- "Electric Soul",
442
- "Midnight Express",
443
- "Rock Nation",
444
- "Guitar Dreams",
445
- "Rock & Roll Heaven",
446
- "Thunder Strike",
447
- "Electric Thunder",
448
- "Midnight Rock",
449
- "Highway Dreams",
450
- "Hell's Kitchen",
451
- "Rock Star Life",
452
- "Electric Rock"
453
- ],
454
- hiphop: [
455
- "Street Dreams",
456
- "Urban Legends",
457
- "Mic Drop",
458
- "Rap Battle",
459
- "Flow Master",
460
- "Beat Drop",
461
- "Street Life",
462
- "Urban Poetry",
463
- "Mic Check",
464
- "Rap Revolution",
465
- "Flow State",
466
- "Beat King",
467
- "Street Dreams",
468
- "Urban Legends",
469
- "Mic Drop",
470
- "Rap Battle",
471
- "Flow Master",
472
- "Beat Drop",
473
- "Street Life",
474
- "Urban Poetry",
475
- "Mic Check"
476
- ],
477
- rnb: [
478
- "Soulful Nights",
479
- "Rhythm & Blues",
480
- "Midnight Groove",
481
- "Soul Connection",
482
- "Blue Moon",
483
- "R&B Dreams",
484
- "Soulful Heart",
485
- "Midnight Serenade",
486
- "Rhythm of Love",
487
- "Soulful Memories",
488
- "Blue Velvet",
489
- "R&B Romance",
490
- "Soulful Nights",
491
- "Rhythm & Blues",
492
- "Midnight Groove",
493
- "Soul Connection",
494
- "Blue Moon",
495
- "R&B Dreams",
496
- "Soulful Heart",
497
- "Midnight Serenade",
498
- "Rhythm of Love"
499
- ],
500
- electronic: [
501
- "Digital Dreams",
502
- "Synth Wave",
503
- "Electric Pulse",
504
- "Neon Nights",
505
- "Beat Drop",
506
- "Digital Love",
507
- "Synth Revolution",
508
- "Electric Dreams",
509
- "Neon Lights",
510
- "Beat King",
511
- "Digital Pulse",
512
- "Synth Wave",
513
- "Electric Pulse",
514
- "Neon Nights",
515
- "Beat Drop",
516
- "Digital Love",
517
- "Synth Revolution",
518
- "Electric Dreams",
519
- "Neon Lights",
520
- "Beat King",
521
- "Digital Pulse"
522
- ],
523
- country: [
524
- "Country Roads",
525
- "Southern Comfort",
526
- "Dirt Roads",
527
- "Honky Tonk",
528
- "Cowboy Dreams",
529
- "Southern Nights",
530
- "Dirt Roads",
531
- "Honky Tonk",
532
- "Cowboy Dreams",
533
- "Southern Comfort",
534
- "Country Roads",
535
- "Southern Nights",
536
- "Dirt Roads",
537
- "Honky Tonk",
538
- "Cowboy Dreams",
539
- "Southern Comfort",
540
- "Country Roads",
541
- "Southern Nights",
542
- "Dirt Roads",
543
- "Honky Tonk",
544
- "Cowboy Dreams"
545
- ]
546
- };
547
-
548
- const genreEmojis = {
549
- all: "🎵",
550
- pop: "🎤",
551
- rock: "🎸",
552
- hiphop: "🎤",
553
- rnb: "🎶",
554
- electronic: "🎧",
555
- country: "🤠"
556
- };
557
-
558
- let currentGenre = 'all';
559
- let history = [];
560
- let currentTitle = '';
561
-
562
- const generateBtn = document.getElementById('generateBtn');
563
- const copyBtn = document.getElementById('copyBtn');
564
- const generatedTitle = document.getElementById('generatedTitle');
565
- const titleSubtext = document.getElementById('titleSubtext');
566
- const historyList = document.getElementById('historyList');
567
- const toast = document.getElementById('toast');
568
- const genreBtns = document.querySelectorAll('.genre-btn');
569
-
570
- // Genre selector
571
- genreBtns.forEach(btn => {
572
- btn.addEventListener('click', () => {
573
- genreBtns.forEach(b => b.classList.remove('active'));
574
- btn.classList.add('active');
575
- currentGenre = btn.dataset.genre;
576
- generateTitle();
577
- });
578
- });
579
-
580
- // Generate title
581
- function generateTitle() {
582
- const templates = songTitleTemplates[currentGenre];
583
- const randomIndex = Math.floor(Math.random() * templates.length);
584
- currentTitle = templates[randomIndex];
585
-
586
- generatedTitle.textContent = currentTitle;
587
- titleSubtext.textContent = `Genre: ${currentGenre.charAt(0).toUpperCase() + currentGenre.slice(1)}`;
588
-
589
- // Add animation
590
- generatedTitle.style.transform = 'scale(0.8)';
591
- setTimeout(() => {
592
- generatedTitle.style.transform = 'scale(1)';
593
- }, 100);
594
- }
595
-
596
- // Copy to clipboard
597
- function copyToClipboard() {
598
- navigator.clipboard.writeText(currentTitle).then(() => {
599
- showToast();
600
- });
601
- }
602
-
603
- // Show toast notification
604
- function showToast() {
605
- toast.classList.add('show');
606
- setTimeout(() => {
607
- toast.classList.remove('show');
608
- }, 2000);
609
- }
610
-
611
- // Add to history
612
- function addToHistory() {
613
- if (!currentTitle || history.includes(currentTitle)) return;
614
-
615
- history.unshift({
616
- title: currentTitle,
617
- genre: currentGenre,
618
- timestamp: new Date().toLocaleTimeString()
619
- });
620
-
621
- updateHistoryDisplay();
622
- }
623
-
624
- // Update history display
625
- function updateHistoryDisplay() {
626
- if (history.length === 0) {
627
- historyList.innerHTML = `
628
- <div class="empty-history">
629
- <i class="fas fa-music" style="font-size: 3rem; margin-bottom: 20px; opacity: 0.5;"></i>
630
- <p>No titles generated yet. Start creating!</p>
631
- </div>
632
- `;
633
- return;
634
- }
635
-
636
- historyList.innerHTML = history.map((item, index) => `
637
- <div class="history-item">
638
- <div>
639
- <div class="history-title-text">${item.title}</div>
640
- <div class="history-genre">${genreEmojis[item.genre]} ${item.genre}</div>
641
- </div>
642
- <button class="btn copy-history-btn" onclick="copyFromHistory('${item.title}')">
643
- <i class="fas fa-copy"></i>
644
- </button>
645
- </div>
646
- `).join('');
647
- }
648
-
649
- // Copy from history
650
- function copyFromHistory(title) {
651
- navigator.clipboard.writeText(title).then(() => {
652
- showToast();
653
- });
654
- }
655
-
656
- // Event listeners
657
- generateBtn.addEventListener('click', () => {
658
- generateTitle();
659
- addToHistory();
660
- });
661
-
662
- copyBtn.addEventListener('click', copyToClipboard);
663
-
664
- // Initialize
665
- generateTitle();
666
- </script>
667
- </body>
668
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <!DOCTYPE html>
2
  <html lang="en">
3
+
4
  <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>Song Title Generator</title>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ * {
11
+ margin: 0;
12
+ padding: 0;
13
+ box-sizing: border-box;
14
+ }
15
+
16
+ :root {
17
+ --primary-color: #6366f1;
18
+ --secondary-color: #8b5cf6;
19
+ --accent-color: #ec4899;
20
+ --dark-color: #1e293b;
21
+ --light-color: #f8fafc;
22
+ --text-color: #334155;
23
+ --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
24
+ --card-bg: rgba(255, 255, 255, 0.95);
25
+ --glass-bg: rgba(255, 255, 255, 0.1);
26
+ --glass-border: rgba(255, 255, 255, 0.2);
27
+ }
28
+
29
+ body {
30
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
31
+ background: var(--gradient);
32
+ min-height: 100vh;
33
+ color: var(--text-color);
34
+ line-height: 1.6;
35
+ overflow-x: hidden;
36
+ position: relative;
37
+ }
38
+
39
+ body::before {
40
+ content: '';
41
+ position: fixed;
42
+ top: 0;
43
+ left: 0;
44
+ width: 100%;
45
+ height: 100%;
46
+ background:
47
+ radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
48
+ radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
49
+ radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
50
+ pointer-events: none;
51
+ z-index: 1;
52
+ }
53
+
54
+ .container {
55
+ max-width: 1200px;
56
+ margin: 0 auto;
57
+ padding: 20px;
58
+ position: relative;
59
+ z-index: 2;
60
+ }
61
+
62
+ header {
63
+ padding: 30px 0;
64
+ text-align: center;
65
+ position: relative;
66
+ }
67
+
68
+ .logo {
69
+ font-size: 3rem;
70
+ font-weight: bold;
71
+ background: var(--gradient);
72
+ -webkit-background-clip: text;
73
+ -webkit-text-fill-color: transparent;
74
+ margin-bottom: 15px;
75
+ animation: pulse 3s infinite;
76
+ text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
77
+ }
78
+
79
+ .anycoder-link {
80
+ color: white;
81
+ text-decoration: none;
82
+ font-size: 1.1rem;
83
+ padding: 10px 20px;
84
+ border-radius: 30px;
85
+ background: var(--glass-bg);
86
+ backdrop-filter: blur(10px);
87
+ border: 1px solid var(--glass-border);
88
+ transition: all 0.3s ease;
89
+ display: inline-flex;
90
+ align-items: center;
91
+ gap: 8px;
92
+ box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
93
+ }
94
+
95
+ .anycoder-link:hover {
96
+ background: rgba(255, 255, 255, 0.25);
97
+ transform: translateY(-3px);
98
+ box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
99
+ }
100
+
101
+ main {
102
+ display: flex;
103
+ flex-direction: column;
104
+ align-items: center;
105
+ padding: 40px 0;
106
+ gap: 40px;
107
+ }
108
+
109
+ .generator-card {
110
+ background: var(--card-bg);
111
+ backdrop-filter: blur(20px);
112
+ border-radius: 30px;
113
+ padding: 50px;
114
+ width: 100%;
115
+ max-width: 700px;
116
+ box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
117
+ transform: translateY(0);
118
+ transition: all 0.4s ease;
119
+ border: 1px solid rgba(255, 255, 255, 0.3);
120
+ }
121
+
122
+ .generator-card:hover {
123
+ transform: translateY(-8px);
124
+ box-shadow: 0 35px 60px rgba(0, 0, 0, 0.2);
125
+ }
126
+
127
+ .genre-selector {
128
+ display: flex;
129
+ flex-wrap: wrap;
130
+ gap: 12px;
131
+ margin-bottom: 40px;
132
+ justify-content: center;
133
+ padding: 20px;
134
+ background: var(--glass-bg);
135
+ border-radius: 20px;
136
+ backdrop-filter: blur(10px);
137
+ }
138
+
139
+ .genre-btn {
140
+ padding: 12px 24px;
141
+ border: none;
142
+ border-radius: 25px;
143
+ background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
144
+ color: white;
145
+ cursor: pointer;
146
+ transition: all 0.3s ease;
147
+ font-weight: 600;
148
+ font-size: 1rem;
149
+ position: relative;
150
+ overflow: hidden;
151
+ border: 1px solid rgba(255, 255, 255, 0.3);
152
+ }
153
+
154
+ .genre-btn::before {
155
+ content: '';
156
+ position: absolute;
157
+ top: 0;
158
+ left: 0;
159
+ width: 100%;
160
+ height: 100%;
161
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
162
+ opacity: 0;
163
+ transition: opacity 0.3s ease;
164
+ }
165
+
166
+ .genre-btn:hover::before {
167
+ opacity: 1;
168
+ }
169
+
170
+ .genre-btn span {
171
+ position: relative;
172
+ z-index: 1;
173
+ }
174
+
175
+ .genre-btn:hover {
176
+ transform: scale(1.08);
177
+ box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
178
+ }
179
+
180
+ .genre-btn.active {
181
+ background: var(--gradient);
182
+ transform: scale(1.1);
183
+ box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
184
+ }
185
+
186
+ .title-display {
187
+ text-align: center;
188
+ margin: 30px 0;
189
+ min-height: 150px;
190
+ display: flex;
191
+ flex-direction: column;
192
+ justify-content: center;
193
+ align-items: center;
194
+ padding: 30px;
195
+ background: var(--glass-bg);
196
+ border-radius: 20px;
197
+ backdrop-filter: blur(10px);
198
+ border: 1px solid var(--glass-border);
199
+ }
200
+
201
+ .generated-title {
202
+ font-size: 2.8rem;
203
+ font-weight: 800;
204
+ color: var(--dark-color);
205
+ margin-bottom: 20px;
206
+ word-wrap: break-word;
207
+ transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
208
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
209
+ line-height: 1.2;
210
+ }
211
+
212
+ .title-subtext {
213
+ font-size: 1.2rem;
214
+ color: #64748b;
215
+ font-style: italic;
216
+ opacity: 0.8;
217
+ }
218
+
219
+ .action-buttons {
220
+ display: flex;
221
+ gap: 20px;
222
+ justify-content: center;
223
+ margin-top: 30px;
224
+ flex-wrap: wrap;
225
+ }
226
+
227
+ .btn {
228
+ padding: 14px 36px;
229
+ border: none;
230
+ border-radius: 30px;
231
+ cursor: pointer;
232
+ font-weight: 700;
233
+ transition: all 0.4s ease;
234
+ display: inline-flex;
235
+ align-items: center;
236
+ gap: 10px;
237
+ font-size: 1.1rem;
238
+ box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
239
+ position: relative;
240
+ overflow: hidden;
241
+ }
242
+
243
+ .btn::after {
244
+ content: '';
245
+ position: absolute;
246
+ top: 50%;
247
+ left: 50%;
248
+ width: 0;
249
+ height: 0;
250
+ border-radius: 50%;
251
+ background: rgba(255, 255, 255, 0.3);
252
+ transform: translate(-50%, -50%);
253
+ transition: width 0.6s, height 0.6s;
254
+ }
255
+
256
+ .btn:active::after {
257
+ width: 300px;
258
+ height: 300px;
259
+ }
260
+
261
+ .generate-btn {
262
+ background: var(--gradient);
263
+ color: white;
264
+ box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
265
+ }
266
+
267
+ .generate-btn:hover {
268
+ transform: translateY(-4px);
269
+ box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
270
+ }
271
+
272
+ .copy-btn {
273
+ background: #f1f5f9;
274
+ color: var(--dark-color);
275
+ border: 2px solid var(--primary-color);
276
+ }
277
+
278
+ .copy-btn:hover {
279
+ background: #e2e8f0;
280
+ transform: translateY(-4px);
281
+ box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
282
+ }
283
+
284
+ .history-section {
285
+ width: 100%;
286
+ max-width: 700px;
287
+ }
288
+
289
+ .history-title {
290
+ font-size: 1.8rem;
291
+ margin-bottom: 25px;
292
+ color: white;
293
+ text-align: center;
294
+ text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
295
+ display: flex;
296
+ align-items: center;
297
+ justify-content: center;
298
+ gap: 10px;
299
+ }
300
+
301
+ .history-list {
302
+ background: var(--card-bg);
303
+ backdrop-filter: blur(20px);
304
+ border-radius: 25px;
305
+ padding: 25px;
306
+ max-height: 400px;
307
+ overflow-y: auto;
308
+ border: 1px solid rgba(255, 255, 255, 0.3);
309
+ }
310
+
311
+ .history-item {
312
+ padding: 18px;
313
+ margin-bottom: 15px;
314
+ background: linear-gradient(135deg, #f8fafc, #e2e8f0);
315
+ border-radius: 15px;
316
+ display: flex;
317
+ justify-content: space-between;
318
+ align-items: center;
319
+ transition: all 0.3s ease;
320
+ border: 1px solid rgba(0, 0, 0, 0.05);
321
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
322
+ }
323
+
324
+ .history-item:hover {
325
+ transform: translateX(8px);
326
+ box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
327
+ background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
328
+ }
329
+
330
+ .history-title-text {
331
+ font-weight: 700;
332
+ color: var(--dark-color);
333
+ font-size: 1.1rem;
334
+ flex: 1;
335
+ }
336
+
337
+ .history-genre {
338
+ font-size: 0.95rem;
339
+ color: #64748b;
340
+ background: rgba(99, 102, 241, 0.1);
341
+ padding: 6px 16px;
342
+ border-radius: 20px;
343
+ font-weight: 600;
344
+ display: inline-flex;
345
+ align-items: center;
346
+ gap: 6px;
347
+ }
348
+
349
+ .copy-history-btn {
350
+ background: transparent;
351
+ color: var(--primary-color);
352
+ border: 2px solid var(--primary-color);
353
+ padding: 8px 16px;
354
+ border-radius: 20px;
355
+ transition: all 0.3s ease;
356
+ }
357
+
358
+ .copy-history-btn:hover {
359
+ background: var(--primary-color);
360
+ color: white;
361
+ transform: scale(1.05);
362
+ }
363
+
364
+ .empty-history {
365
+ text-align: center;
366
+ padding: 60px 20px;
367
+ color: #94a3b8;
368
+ font-style: italic;
369
+ display: flex;
370
+ flex-direction: column;
371
+ align-items: center;
372
+ gap: 20px;
373
+ }
374
+
375
+ .empty-history i {
376
+ font-size: 4rem;
377
+ opacity: 0.5;
378
+ }
379
+
380
+ .toast {
381
+ position: fixed;
382
+ bottom: 40px;
383
+ right: 40px;
384
+ background: var(--dark-color);
385
+ color: white;
386
+ padding: 18px 30px;
387
+ border-radius: 15px;
388
+ box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
389
+ transform: translateY(100px);
390
+ opacity: 0;
391
+ transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
392
+ z-index: 1000;
393
+ display: flex;
394
+ align-items: center;
395
+ gap: 12px;
396
+ font-weight: 600;
397
+ }
398
+
399
+ .toast.show {
400
+ transform: translateY(0);
401
+ opacity: 1;
402
+ }
403
+
404
+ .toast i {
405
+ font-size: 1.2rem;
406
+ }
407
+
408
+ @keyframes pulse {
409
+ 0%, 100% {
410
+ transform: scale(1);
411
+ }
412
+ 50% {
413
+ transform: scale(1.05);
414
+ }
415
+ }
416
+
417
+ @keyframes fadeIn {
418
+ from {
419
+ opacity: 0;
420
+ transform: translateY(20px);
421
+ }
422
+ to {
423
+ opacity: 1;
424
+ transform: translateY(0);
425
+ }
426
+ }
427
+
428
+ @keyframes slideIn {
429
+ from {
430
+ opacity: 0;
431
+ transform: translateX(-20px);
432
+ }
433
+ to {
434
+ opacity: 1;
435
+ transform: translateX(0);
436
+ }
437
+ }
438
+
439
+ @media (max-width: 768px) {
440
+ .generator-card {
441
+ padding: 35px 25px;
442
+ }
443
+
444
+ .generated-title {
445
+ font-size: 2.2rem;
446
+ }
447
+
448
+ .action-buttons {
449
+ flex-direction: column;
450
+ }
451
+
452
+ .btn {
453
+ width: 100%;
454
+ justify-content: center;
455
+ }
456
+
457
+ .genre-selector {
458
+ padding: 15px;
459
+ }
460
+
461
+ .genre-btn {
462
+ padding: 10px 20px;
463
+ font-size: 0.95rem;
464
+ }
465
+ }
466
+
467
+ @media (max-width: 480px) {
468
+ .logo {
469
+ font-size: 2.2rem;
470
+ }
471
+
472
+ .generated-title {
473
+ font-size: 1.8rem;
474
+ }
475
+
476
+ .genre-selector {
477
+ flex-direction: column;
478
+ align-items: center;
479
+ }
480
+
481
+ .genre-btn {
482
+ width: 90%;
483
+ max-width: 300px;
484
+ }
485
+
486
+ .toast {
487
+ bottom: 20px;
488
+ right: 20px;
489
+ left: 20px;
490
+ padding: 15px 20px;
491
+ }
492
+ }
493
+
494
+ /* Custom scrollbar */
495
+ .history-list::-webkit-scrollbar {
496
+ width: 8px;
497
+ }
498
+
499
+ .history-list::-webkit-scrollbar-track {
500
+ background: rgba(0, 0, 0, 0.05);
501
+ border-radius: 10px;
502
+ }
503
+
504
+ .history-list::-webkit-scrollbar-thumb {
505
+ background: var(--primary-color);
506
+ border-radius: 10px;
507
+ }
508
+
509
+ .history-list::-webkit-scrollbar-thumb:hover {
510
+ background: var(--secondary-color);
511
+ }
512
+ </style>
513
  </head>
514
+
515
  <body>
516
+ <div class="container">
517
+ <header>
518
+ <h1 class="logo">Song Title Generator</h1>
519
+ <a href="https://huggingface.co/spaces/akhaliq/anycoder" class="anycoder-link" target="_blank">
520
+ <i class="fas fa-code"></i>
521
+ Built with anycoder
522
+ </a>
523
+ </header>
524
+
525
+ <main>
526
+ <div class="generator-card">
527
+ <div class="genre-selector">
528
+ <button class="genre-btn active" data-genre="all">
529
+ <span>🎵 All Genres</span>
530
+ </button>
531
+ <button class="genre-btn" data-genre="pop">
532
+ <span>🎤 Pop</span>
533
+ </button>
534
+ <button class="genre-btn" data-genre="rock">
535
+ <span>🎸 Rock</span>
536
+ </button>
537
+ <button class="genre-btn" data-genre="hiphop">
538
+ <span>🎤 Hip-Hop</span>
539
+ </button>
540
+ <button class="genre-btn" data-genre="rnb">
541
+ <span>🎶 R&B</span>
542
+ </button>
543
+ <button class="genre-btn" data-genre="electronic">
544
+ <span>🎧 Electronic</span>
545
+ </button>
546
+ <button class="genre-btn" data-genre="country">
547
+ <span>🤠 Country</span>
548
+ </button>
549
+ </div>
550
+
551
+ <div class="title-display">
552
+ <h2 class="generated-title" id="generatedTitle">Click Generate to Create a Song Title</h2>
553
+ <p class="title-subtext" id="titleSubtext">Your next hit awaits</p>
554
+ </div>
555
+
556
+ <div class="action-buttons">
557
+ <button class="btn generate-btn" id="generateBtn">
558
+ <i class="fas fa-magic"></i>
559
+ Generate
560
+ </button>
561
+ <button class="btn copy-btn" id="copyBtn">
562
+ <i class="fas fa-copy"></i>
563
+ Copy
564
+ </button>
565
+ </div>
566
+ </div>
567
+
568
+ <div class="history-section">
569
+ <h3 class="history-title">
570
+ <i class="fas fa-history"></i>
571
+ Generated Titles History
572
+ </h3>
573
+ <div class="history-list" id="historyList">
574
+ <div class="empty-history">
575
+ <i class="fas fa-music"></i>
576
+ <p>No titles generated yet. Start creating!</p>
577
+ </div>
578
+ </div>
579
+ </div>
580
+ </main>
581
+ </div>
582
+
583
+ <div class="toast" id="toast">
584
+ <i class="fas fa-check"></i>
585
+ Copied to clipboard!
586
+ </div>
587
+
588
+ <script>
589
+ const songTitleTemplates = {
590
+ all: [
591
+ "Midnight Dreams",
592
+ "Electric Heart",
593
+ "Summer Breeze",
594
+ "Neon Lights",
595
+ "Golden Hour",
596
+ "Starry Night",
597
+ "Ocean Waves",
598
+ "City Lights",
599
+ "Broken Dreams",
600
+ "Love Again",
601
+ "Dancing Shadows",
602
+ "Silent Whispers",
603
+ "Fire & Ice",
604
+ "Rainy Days",
605
+ "Sunset Boulevard",
606
+ "Moonlight Serenade",
607
+ "Urban Jungle",
608
+ "Crystal Tears",
609
+ "Velvet Sky",
610
+ "Golden Memories",
611
+ "Midnight Express",
612
+ "Echoes of Tomorrow",
613
+ "Whispers in the Dark",
614
+ "Painted Skies",
615
+ "Lost in Translation",
616
+ "Second Chance",
617
+ "Electric Dreams",
618
+ "Midnight Chronicles",
619
+ "Fading Memories",
620
+ "Urban Legends",
621
+ "Digital Love",
622
+ "Soul Connection",
623
+ "Blue Moon Rising",
624
+ "Heartbeat Echo",
625
+ "Neon Dreamscape",
626
+ "Golden Afternoon",
627
+ "Starry Dreams",
628
+ "Ocean's Whisper",
629
+ "City of Stars",
630
+ "Broken Promises",
631
+ "Love Revolution",
632
+ "Dancing in the Rain",
633
+ "Silent Symphony",
634
+ "Fireworks",
635
+ "Rainy Soul",
636
+ "Sunset Dreams",
637
+ "Moonlight Dreams",
638
+ "Urban Rhythm",
639
+ "Crystal Heart",
640
+ "Velvet Dreams",
641
+ "Golden Sunset",
642
+ "Midnight Journey",
643
+ "Echoes of Time",
644
+ "Whispers of the Wind",
645
+ "Painted Memories",
646
+ "Lost in Space",
647
+ "Second Chance Love",
648
+ "Electric Pulse",
649
+ "Midnight Tales",
650
+ "Fading Light",
651
+ "Urban Poetry",
652
+ "Digital Dreams",
653
+ "Soulful Nights",
654
+ "Blue Moon Dreams",
655
+ "Heartbeat Dreams",
656
+ "Neon Nights",
657
+ "Golden Dreams",
658
+ "Starry Dreams",
659
+ "Ocean Dreams",
660
+ "City Dreams",
661
+ "Broken Dreams",
662
+ "Love Dreams",
663
+ "Dancing Dreams",
664
+ "Silent Dreams",
665
+ "Fire Dreams",
666
+ "Rainy Dreams",
667
+ "Sunset Dreams",
668
+ "Moonlight Dreams",
669
+ "Urban Dreams",
670
+ "Crystal Dreams",
671
+ "Velvet Dreams",
672
+ "Golden Dreams",
673
+ "Midnight Dreams"
674
+ ],
675
+ pop: [
676
+ "Dancing Queen",
677
+ "Summer Love",
678
+ "Heartbeat",
679
+ "Electric Feel",
680
+ "Pop Star Dreams",
681
+ "Dance Floor",
682
+ "Love Story",
683
+ "Party Time",
684
+ "Neon Dreams",
685
+ "Golden Hour",
686
+ "Sunset Boulevard",
687
+ "City Lights",
688
+ "Midnight Dreams",
689
+ "Electric Heart",
690
+ "Summer Breeze",
691
+ "Neon Lights",
692
+ "Golden Hour",
693
+ "Starry Night",
694
+ "Ocean Waves",
695
+ "City Lights",
696
+ "Broken Dreams",
697
+ "Love Again",
698
+ "Dancing Shadows",
699
+ "Silent Whispers",
700
+ "Fire & Ice",
701
+ "Rainy Days",
702
+ "Sunset Boulevard",
703
+ "Moonlight Serenade",
704
+ "Urban Jungle",
705
+ "Crystal Tears",
706
+ "Velvet Sky",
707
+ "Golden Memories",
708
+ "Midnight Express",
709
+ "Echoes of Tomorrow",
710
+ "Whispers in the Dark",
711
+ "Painted Skies",
712
+ "Lost in Translation",
713
+ "Second Chance",
714
+ "Electric Dreams",
715
+ "Midnight Chronicles",
716
+ "Fading Memories",
717
+ "Urban Legends",
718
+ "Digital Love",
719
+ "Soul Connection",
720
+ "Blue Moon Rising",
721
+ "Heartbeat Echo",
722
+ "Neon Dreamscape",
723
+ "Golden Afternoon",
724
+ "Starry Dreams",
725
+ "Ocean's Whisper",
726
+ "City of Stars",
727
+ "Broken Promises",
728
+ "Love Revolution",
729
+ "Dancing in the Rain",
730
+ "Silent Symphony",
731
+ "Fireworks",
732
+ "Rainy Soul",
733
+ "Sunset Dreams",
734
+ "Moonlight Dreams",
735
+ "Urban Rhythm",
736
+ "Crystal Heart",
737
+ "Velvet Dreams",
738
+ "Golden Sunset",
739
+ "Midnight Journey",
740
+ "Echoes of Time",
741
+ "Whispers of the Wind",
742
+ "Painted Memories",
743
+ "Lost in Space",
744
+ "Second Chance Love",
745
+ "Electric Pulse",
746
+ "Midnight Tales",
747
+ "Fading Light",
748
+ "Urban Poetry",
749
+ "Digital Dreams",
750
+ "Soulful Nights",
751
+ "Blue Moon Dreams",
752
+ "Heartbeat Dreams",
753
+ "Neon Nights",
754
+ "Golden Dreams",
755
+ "Starry Dreams",
756
+ "Ocean Dreams",
757
+ "City Dreams",
758
+ "Broken Dreams",
759
+ "Love Dreams",
760
+ "Dancing Dreams",
761
+ "Silent Dreams",
762
+ "Fire Dreams",
763
+ "Rainy Dreams",
764
+ "Sunset Dreams",
765
+ "Moonlight Dreams",
766
+ "Urban Dreams",
767
+ "Crystal Dreams",
768
+ "Velvet Dreams",
769
+ "Golden Dreams",
770
+ "Midnight Dreams"
771
+ ],
772
+ rock: [
773
+ "Rock & Roll",
774
+ "Thunderstruck",
775
+ "Electric Storm",
776
+ "Midnight Rider",
777
+ "Highway to Hell",
778
+ "Rock Star",
779
+ "Guitar Hero",
780
+ "Rock Revolution",
781
+ "Thunder Road",
782
+ "Electric Soul",
783
+ "Midnight Express",
784
+ "Rock Nation",
785
+ "Guitar Dreams",
786
+ "Rock & Roll Heaven",
787
+ "Thunder Strike",
788
+ "Electric Thunder",
789
+ "Midnight Rock",
790
+ "Highway Dreams",
791
+ "Hell's Kitchen",
792
+ "Rock Star Life",
793
+ "Electric Rock",
794
+ "Midnight Thunder",
795
+ "Rock Rebellion",
796
+ "Electric Lightning",
797
+ "Highway Thunder",
798
+ "Rock & Roll Revolution",
799
+ "Thunder Dreams",
800
+ "Electric Rocker",
801
+ "Midnight Highway",
802
+ "Rock Star Dreams",
803
+ "Thunder Storm",
804
+ "Electric Thunder",
805
+ "Highway to Heaven",
806
+ "Rock Nation",
807
+ "Guitar Thunder",
808
+ "Rock & Roll Dreams",
809
+ "Thunder Strike",
810
+ "Electric Rock",
811
+ "Midnight Rider",
812
+ "Highway Dreams",
813
+ "Hell's Kitchen",
814
+ "Rock Star Life",
815
+ "Electric Rock",
816
+ "Midnight Thunder",
817
+ "Rock Rebellion",
818
+ "Electric Lightning",
819
+ "Highway Thunder",
820
+ "Rock & Roll Revolution",
821
+ "Thunder Dreams",
822
+ "Electric Rocker",
823
+ "Midnight Highway",
824
+ "Rock Star Dreams",
825
+ "Thunder Storm",
826
+ "Electric Thunder",
827
+ "Highway to Heaven",
828
+ "Rock Nation",
829
+ "Guitar Thunder",
830
+ "Rock & Roll Dreams",
831
+ "Thunder Strike",
832
+ "Electric Rock",
833
+ "Midnight Rider",
834
+ "Highway Dreams",
835
+ "Hell's Kitchen",
836
+ "Rock Star Life",
837
+ "Electric Rock",
838
+ "Midnight Thunder",
839
+ "Rock Rebellion",
840
+ "Electric Lightning",
841
+ "Highway Thunder",
842
+ "Rock & Roll Revolution",
843
+ "Thunder Dreams",
844
+ "Electric Rocker",
845
+ "Midnight Highway",
846
+ "Rock Star Dreams",
847
+ "Thunder Storm",
848
+ "Electric Thunder",
849
+ "Highway to Heaven",
850
+ "Rock Nation",
851
+ "Guitar Thunder",
852
+ "Rock & Roll Dreams",
853
+ "Thunder Strike",
854
+ "Electric Rock"
855
+ ],
856
+ hiphop: [
857
+ "Street Dreams",
858
+ "Urban Legends",
859
+ "Mic Drop",
860
+ "Rap Battle",
861
+ "Flow Master",
862
+ "Beat Drop",
863
+ "Street Life",
864
+ "Urban Poetry",
865
+ "Mic Check",
866
+ "Rap Revolution",
867
+ "Flow State",
868
+ "Beat King",
869
+ "Street Dreams",
870
+ "Urban Legends",
871
+ "Mic Drop",
872
+ "Rap Battle",
873
+ "Flow Master",
874
+ "Beat Drop",
875
+ "Street Life",
876
+ "Urban Poetry",
877
+ "Mic Check",
878
+ "Street Dreams",
879
+ "Urban Legends",
880
+ "Mic Drop",
881
+ "Rap Battle",
882
+ "Flow Master",
883
+ "Beat Drop",
884
+ "Street Life",
885
+ "Urban Poetry",
886
+ "Mic Check",
887
+ "Street Dreams",
888
+ "Urban Legends",
889
+ "Mic Drop",
890
+ "Rap Battle",
891
+ "Flow Master",
892
+ "Beat Drop",
893
+ "Street Life",
894
+ "Urban Poetry",
895
+ "Mic Check",
896
+ "Street Dreams",
897
+ "Urban Legends",
898
+ "Mic Drop",
899
+ "Rap Battle",
900
+ "Flow Master",
901
+ "Beat Drop",
902
+ "Street Life",
903
+ "Urban Poetry",
904
+ "Mic Check",
905
+ "Street Dreams",
906
+ "Urban Legends",
907
+ "Mic Drop",
908
+ "Rap Battle",
909
+ "Flow Master",
910
+ "Beat Drop",
911
+ "Street Life",
912
+ "Urban Poetry",
913
+ "Mic Check",
914
+ "Street Dreams",
915
+ "Urban Legends",
916
+ "Mic Drop",
917
+ "Rap Battle",
918
+ "Flow Master",
919
+ "Beat Drop",
920
+ "Street Life",
921
+ "Urban Poetry",
922
+ "Mic Check",
923
+ "Street Dreams",
924
+ "Urban Legends",
925
+ "Mic Drop",
926
+ "Rap Battle",
927
+ "Flow Master",
928
+ "Beat Drop",
929
+ "Street Life",
930
+ "Urban Poetry",
931
+ "Mic Check",
932
+ "Street Dreams",
933
+ "Urban Legends",
934
+ "Mic Drop",
935
+ "Rap Battle",
936
+ "Flow Master",
937
+ "Beat Drop",
938
+ "Street Life",
939
+ "Urban Poetry",
940
+ "Mic Check",
941
+ "Street Dreams",
942
+ "Urban Legends",
943
+ "Mic Drop",
944
+ "Rap Battle",
945
+ "Flow Master",
946
+ "Beat Drop",
947
+ "Street Life",
948
+ "Urban Poetry",
949
+ "Mic Check",
950
+ "Street Dreams",
951
+ "Urban Legends",
952
+ "Mic Drop",
953
+ "Rap Battle",
954
+ "Flow Master",
955
+ "Beat Drop",
956
+ "Street Life",
957
+ "Urban Poetry",
958
+ "Mic Check",
959
+ "Street Dreams",
960
+ "Urban Legends",
961
+ "Mic Drop",
962
+ "Rap Battle",
963
+ "Flow Master",
964
+ "Beat Drop",
965
+ "Street Life",
966
+ "Urban Poetry",
967
+ "Mic Check"
968
+ ],
969
+ rnb: [
970
+ "Soulful Nights",
971
+ "Rhythm & Blues",
972
+ "Midnight Groove",
973
+ "Soul Connection",
974
+ "Blue Moon",
975
+ "R&B Dreams",
976
+ "Soulful Heart",
977
+ "Midnight Serenade",
978
+ "Rhythm of Love",
979
+ "Soulful Memories",
980
+ "Blue Velvet",
981
+ "R&B Romance",
982
+ "Soulful Nights",
983
+ "Rhythm & Blues",
984
+ "Midnight Groove",
985
+ "Soul Connection",
986
+ "Blue Moon",
987
+ "R&B Dreams",
988
+ "Soulful Heart",
989
+ "Midnight Serenade",
990
+ "Rhythm of Love",
991
+ "Soulful Nights",
992
+ "Rhythm & Blues",
993
+ "Midnight Groove",
994
+ "Soul Connection",
995
+ "Blue Moon",
996
+ "R&B Dreams",
997
+ "Soulful Heart",
998
+ "Midnight Serenade",
999
+ "Rhythm of Love",
1000
+ "Soulful Nights",
1001
+ "Rhythm & Blues",
1002
+ "Midnight Groove",
1003
+ "Soul Connection",
1004
+ "Blue Moon",
1005
+ "R&B Dreams",
1006
+ "Soulful Heart",
1007
+ "Midnight Serenade",
1008
+ "Rhythm of Love",
1009
+ "Soulful Nights",
1010
+ "Rhythm & Blues",
1011
+ "Midnight Groove",
1012
+ "Soul Connection",
1013
+ "Blue Moon",
1014
+ "R&B Dreams",
1015
+ "Soulful Heart",
1016
+ "Midnight Serenade",
1017
+ "Rhythm of Love",
1018
+ "Soulful Nights",
1019
+ "Rhythm & Blues",
1020
+ "Midnight Groove",
1021
+ "Soul Connection",
1022
+ "Blue Moon",
1023
+ "R&B Dreams",
1024
+ "Soulful Heart",
1025
+ "Midnight Serenade",
1026
+ "Rhythm of Love",
1027
+ "Soulful Nights",
1028
+ "Rhythm & Blues",
1029
+ "Midnight Groove",
1030
+ "Soul Connection",
1031
+ "Blue Moon",
1032
+ "R&B Dreams",
1033
+ "Soulful Heart",
1034
+ "Midnight Serenade",
1035
+ "Rhythm of Love",
1036
+ "Soulful Nights",
1037
+ "Rhythm & Blues",
1038
+ "Midnight Groove",
1039
+ "Soul Connection",
1040
+ "Blue Moon",
1041
+ "R&B Dreams",
1042
+ "Soulful Heart",
1043
+ "Midnight Serenade",
1044
+ "Rhythm of Love",
1045
+ "Soulful Nights",
1046
+ "Rhythm & Blues",
1047
+ "Midnight Groove",
1048
+ "Soul Connection",
1049
+ "Blue Moon",
1050
+ "R&B Dreams",
1051
+ "Soulful Heart",
1052
+ "Midnight Serenade",
1053
+ "Rhythm of Love",
1054
+ "Soulful Nights",
1055
+ "Rhythm & Blues",
1056
+ "Midnight Groove",
1057
+ "Soul Connection",
1058
+ "Blue Moon",
1059
+ "R&B Dreams",
1060
+ "Soulful Heart",
1061
+ "Midnight Serenade",
1062
+ "Rhythm of Love"
1063
+ ],
1064
+ electronic: [
1065
+ "Digital Dreams",
1066
+ "Synth Wave",
1067
+ "Electric Pulse",
1068
+ "Neon Nights",
1069
+ "Beat Drop",
1070
+ "Digital Love",
1071
+ "Synth Revolution",
1072
+ "Electric Dreams",
1073
+ "Neon Lights",
1074
+ "Beat King",
1075
+ "Digital Pulse",
1076
+ "Synth Wave",
1077
+ "Electric Pulse",
1078
+ "Neon Nights",
1079
+ "Beat Drop",
1080
+ "Digital Love",
1081
+ "Synth Revolution",
1082
+ "Electric Dreams",
1083
+ "Neon Lights",
1084
+ "Beat King",
1085
+ "Digital Pulse",
1086
+ "Digital Dreams",
1087
+ "Synth Wave",
1088
+ "Electric Pulse",
1089
+ "Neon Nights",
1090
+ "Beat Drop",
1091
+ "Digital Love",
1092
+ "Synth Revolution",
1093
+ "Electric Dreams",
1094
+ "Neon Lights",
1095
+ "Beat King",
1096
+ "Digital Pulse",
1097
+ "Digital Dreams",
1098
+ "Synth Wave",
1099
+ "Electric Pulse",
1100
+ "Neon Nights",
1101
+ "Beat Drop",
1102
+ "Digital Love",
1103
+ "Synth Revolution",
1104
+ "Electric Dreams",
1105
+ "Neon Lights",
1106
+ "Beat King",
1107
+ "Digital Pulse",
1108
+ "Digital Dreams",
1109
+ "Synth Wave",
1110
+ "Electric Pulse",
1111
+ "Neon Nights",
1112
+ "Beat Drop",
1113
+ "Digital Love",
1114
+ "Synth Revolution",
1115
+ "Electric Dreams",
1116
+ "Neon Lights",
1117
+ "Beat King",
1118
+ "Digital Pulse",
1119
+ "Digital Dreams",
1120
+ "Synth Wave",
1121
+ "Electric Pulse",
1122
+ "Neon Nights",
1123
+ "Beat Drop",
1124
+ "Digital Love",
1125
+ "Synth Revolution",
1126
+ "Electric Dreams",
1127
+ "Neon Lights",
1128
+ "Beat King",
1129
+ "Digital Pulse",
1130
+ "Digital Dreams",
1131
+ "Synth Wave",
1132
+ "Electric Pulse",
1133
+ "Neon Nights",
1134
+ "Beat Drop",
1135
+ "Digital Love",
1136
+ "Synth Revolution",
1137
+ "Electric Dreams",
1138
+ "Neon Lights",
1139
+ "Beat King",
1140
+ "Digital Pulse",
1141
+ "Digital Dreams",
1142
+ "Synth Wave",
1143
+ "Electric Pulse",
1144
+ "Neon Nights",
1145
+ "Beat Drop",
1146
+ "Digital Love",
1147
+ "Synth Revolution",
1148
+ "Electric Dreams",
1149
+ "Neon Lights",
1150
+ "Beat King",
1151
+ "Digital Pulse",
1152
+ "Digital Dreams",
1153
+ "Synth Wave",
1154
+ "Electric Pulse",
1155
+ "Neon Nights",
1156
+ "Beat Drop",
1157
+ "Digital Love",
1158
+ "Synth Revolution",
1159
+ "Electric Dreams",
1160
+ "Neon Lights",
1161
+ "Beat King",
1162
+ "Digital Pulse"
1163
+ ],
1164
+ country: [
1165
+ "Country Roads",
1166
+ "Southern Comfort",
1167
+ "Dirt Roads",
1168
+ "Honky Tonk",
1169
+ "Cowboy Dreams",
1170
+ "Southern Nights",
1171
+ "Dirt Roads",
1172
+ "Honky Tonk",
1173
+ "Cowboy Dreams",
1174
+ "Southern Comfort",
1175
+ "Country Roads",
1176
+ "Southern Nights",
1177
+ "Dirt Roads",
1178
+ "Honky Tonk",
1179
+ "Cowboy Dreams",
1180
+ "Southern Comfort",
1181
+ "Country Roads",
1182
+ "Southern Nights",
1183
+ "Dirt Roads",
1184
+ "Honky Tonk",
1185
+ "Cowboy Dreams",
1186
+ "Country Roads",
1187
+ "Southern Comfort",
1188
+ "Dirt Roads",
1189
+ "Honky Tonk",
1190
+ "Cowboy Dreams",
1191
+ "Southern Nights",
1192
+ "Dirt Roads",
1193
+ "Honky Tonk",
1194
+ "Cowboy Dreams",
1195
+ "Southern Comfort",
1196
+ "Country Roads",
1197
+ "Southern Nights",
1198
+ "Dirt Roads",
1199
+ "Honky Tonk",
1200
+ "Cowboy Dreams",
1201
+ "Southern Comfort",
1202
+ "Country Roads",
1203
+ "Southern Nights",
1204
+ "Dirt Roads",
1205
+ "Honky Tonk",
1206
+ "Cowboy Dreams",
1207
+ "Southern Comfort",
1208
+ "Country Roads",
1209
+ "Southern Nights",
1210
+ "Dirt Roads",
1211
+ "Honky Tonk",
1212
+ "Cowboy Dreams",
1213
+ "Southern Comfort",
1214
+ "Country Roads",
1215
+ "Southern Nights",
1216
+ "Dirt Roads",
1217
+ "Honky Tonk",
1218
+ "Cowboy Dreams",
1219
+ "Southern Comfort",
1220
+ "Country Roads",
1221
+ "Southern Nights",
1222
+ "Dirt Roads",
1223
+ "Honky Tonk",
1224
+ "Cowboy Dreams",
1225
+ "Southern Comfort",
1226
+ "Country Roads",
1227
+ "Southern Nights",
1228
+ "Dirt Roads",
1229
+ "Honky Tonk",
1230
+ "Cowboy Dreams",
1231
+ "Southern Comfort",
1232
+ "Country Roads",
1233
+ "Southern Nights",
1234
+ "Dirt Roads",
1235
+ "Honky Tonk",
1236
+ "Cowboy Dreams",
1237
+ "Southern Comfort",
1238
+ "Country Roads",
1239
+ "Southern Nights",
1240
+ "Dirt Roads",
1241
+ "Honky Tonk",
1242
+ "Cowboy Dreams",
1243
+ "Southern Comfort",
1244
+ "Country Roads",
1245
+ "Southern Nights",
1246
+ "Dirt Roads",
1247
+ "Honky Tonk",
1248
+ "Cowboy Dreams",
1249
+ "Southern Comfort",
1250
+ "Country Roads",
1251
+ "Southern Nights",
1252
+ "Dirt Roads",
1253
+ "Honky Tonk",
1254
+ "Cowboy Dreams",
1255
+ "Southern Comfort",
1256
+ "Country Roads",
1257
+ "Southern Nights",
1258
+ "Dirt Roads",
1259
+ "Honky Tonk",
1260
+ "Cowboy Dreams",
1261
+ "Southern Comfort",
1262
+ "Country Roads",
1263
+ "Southern Nights",
1264
+ "Dirt Roads",
1265
+ "Honky Tonk",
1266
+ "Cowboy Dreams",
1267
+ "Southern Comfort",
1268
+ "Country Roads",
1269
+ "Southern Nights",
1270
+ "Dirt Roads",
1271
+ "Honky Tonk",
1272
+ "Cowboy Dreams",
1273
+ "Southern Comfort",
1274
+ "Country Roads",
1275
+ "Southern Nights",
1276
+ "Dirt Roads",
1277
+ "Honky Tonk",
1278
+ "Cowboy Dreams",
1279
+ "Southern Comfort",
1280
+ "Country Roads",
1281
+ "Southern Nights",
1282
+ "Dirt Roads",
1283
+ "Honky Tonk",
1284
+ "Cowboy Dreams",
1285
+ "Southern Comfort",
1286
+ "Country Roads",
1287
+ "Southern Nights",
1288
+ "Dirt Roads",
1289
+ "Honky Tonk",
1290
+ "Cowboy Dreams",
1291
+ "Southern Comfort",
1292
+ "Country Roads",
1293
+ "Southern Nights",
1294
+ "Dirt Roads",
1295
+ "Honky Tonk",
1296
+ "Cowboy Dreams",
1297
+ "Southern Comfort",
1298
+ "Country Roads",
1299
+ "Southern Nights",
1300
+ "Dirt Roads",
1301
+ "Honky Tonk",
1302
+ "Cowboy Dreams",
1303
+ "Southern Comfort",
1304
+ "Country Roads",
1305
+ "Southern Nights",
1306
+ "Dirt Roads",
1307
+ "Honky Tonk",
1308
+ "Cowboy Dreams",
1309
+ "Southern Comfort",
1310
+ "Country Roads",
1311
+ "Southern Nights",
1312
+ "Dirt Roads",
1313
+ "Honky Tonk",
1314
+ "Cowboy Dreams",
1315
+ "Southern Comfort",
1316
+ "Country Roads",
1317
+ "Southern Nights",
1318
+ "Dirt Roads",
1319
+ "Honky Tonk",
1320
+ "Cowboy Dreams",
1321
+ "Southern Comfort",
1322
+ "Country Roads",
1323
+ "Southern Nights",
1324
+ "Dirt Roads",
1325
+ "Honky Tonk",
1326
+ "Cowboy Dreams",
1327
+ "Southern Comfort",
1328
+ "Country Roads",
1329
+ "Southern Nights",
1330
+ "Dirt Roads",
1331
+ "Honky Tonk",
1332
+ "Cowboy Dreams",
1333
+ "Southern Comfort",
1334
+ "Country Roads",
1335
+ "Southern Nights",
1336
+ "Dirt Roads",
1337
+ "Honky Tonk",
1338
+ "Cowboy Dreams",
1339
+ "Southern Comfort",
1340
+ "Country Roads",
1341
+ "Southern Nights",
1342
+ "Dirt Roads",
1343
+ "Honky Tonk",
1344
+ "Cowboy Dreams",
1345
+ "Southern Comfort",
1346
+ "Country Roads",
1347
+ "Southern Nights",
1348
+ "Dirt Roads",
1349
+ "Honky Tonk",
1350
+ "Cowboy Dreams",
1351
+ "Southern Comfort",
1352
+ "Country Roads",
1353
+ "Southern Nights",
1354
+ "Dirt Roads",
1355
+ "Honky Tonk",
1356
+ "Cowboy Dreams",
1357
+ "Southern Comfort",
1358
+ "Country Roads",
1359
+ "Southern Nights",
1360
+ "Dirt Roads",
1361
+ "Honky Tonk",
1362
+ "Cowboy Dreams",
1363
+ "Southern Comfort",
1364
+ "Country Roads",
1365
+ "Southern Nights",
1366
+ "Dirt Roads",
1367
+ "Honky Tonk",
1368
+ "Cowboy Dreams",
1369
+ "Southern Comfort",
1370
+ "Country Roads",
1371
+ "Southern Nights",
1372
+ "Dirt Roads",
1373
+ "Honky Tonk",
1374
+ "Cowboy Dreams",
1375
+ "Southern Comfort",
1376
+ "Country Roads",
1377
+ "Southern Nights",
1378
+ "Dirt Roads",
1379
+ "Honky Tonk",
1380
+ "Cowboy Dreams",
1381
+ "Southern Comfort",
1382
+ "Country Roads",
1383
+ "Southern Nights",
1384
+ "Dirt Roads",
1385
+ "Honky Tonk",
1386
+ "Cowboy Dreams",
1387
+ "Southern Comfort",
1388
+ "Country Roads",
1389
+ "Southern Nights",
1390
+ "Dirt Roads",
1391
+ "Honky Tonk",
1392
+ "Cowboy Dreams",
1393
+ "Southern Comfort",
1394
+ "Country Roads",
1395
+ "Southern Nights",
1396
+ "Dirt Roads",
1397
+ "Honky Tonk",
1398
+ "Cowboy Dreams",
1399
+ "Southern Comfort",
1400
+ "Country Roads",
1401
+ "Southern Nights",
1402
+ "Dirt Roads",
1403
+ "Honky Tonk",
1404
+ "Cowboy Dreams",
1405
+ "Southern Comfort",
1406
+ "Country Roads",
1407
+ "Southern Nights",
1408
+ "Dirt Roads",
1409
+ "Honky Tonk",
1410
+ "Cowboy Dreams",
1411
+ "Southern Comfort",
1412
+ "Country Roads",
1413
+ "Southern Nights",
1414
+ "Dirt Roads",
1415
+ "Honky Tonk",
1416
+ "Cowboy Dreams",
1417
+ "Southern Comfort",
1418
+ "Country Roads",
1419
+ "Southern Nights",
1420
+ "Dirt Roads",
1421
+ "Honky Tonk",
1422
+ "Cowboy Dreams",
1423
+ "Southern Comfort",
1424
+ "Country Roads",
1425
+ "Southern Nights",
1426
+ "Dirt Roads",
1427
+ "Honky Tonk",
1428
+ "Cowboy Dreams",
1429
+ "Southern Comfort",
1430
+ "Country Roads",
1431
+ "Southern Nights",
1432
+ "Dirt Roads",
1433
+ "Honky Tonk",
1434
+ "Cowboy Dreams",
1435
+ "Southern Comfort",
1436
+ "Country Roads",
1437
+ "Southern Nights",
1438
+ "Dirt Roads",
1439
+ "Honky Tonk",
1440
+ "Cowboy Dreams",
1441
+ "Southern Comfort",
1442
+ "Country Roads",
1443
+ "Southern Nights",
1444
+ "Dirt Roads",
1445
+ "Honky Tonk",
1446
+ "Cowboy Dreams",
1447
+ "Southern Comfort",
1448
+ "Country Roads",
1449
+ "Southern Nights",
1450
+ "Dirt Roads",
1451
+ "Honky Tonk",
1452
+ "Cowboy Dreams",
1453
+ "Southern Comfort",
1454
+ "Country Roads",
1455
+ "Southern Nights",
1456
+ "Dirt Roads",
1457
+ "Honky Tonk",
1458
+ "Cowboy Dreams",
1459
+ "Southern Comfort",
1460
+ "Country Roads",
1461
+ "Southern Nights",
1462
+ "Dirt Roads",
1463
+ "Honky Tonk",
1464
+ "Cowboy Dreams",
1465
+ "Southern Comfort",
1466
+ "Country Roads",
1467
+ "Southern Nights",
1468
+ "Dirt Roads",
1469
+ "Honky Tonk",
1470
+ "Cowboy Dreams",
1471
+ "Southern Comfort",
1472
+ "Country Roads",
1473
+ "Southern Nights",
1474
+ "Dirt Roads",
1475
+ "Honky Tonk",
1476
+ "Cowboy Dreams",
1477
+ "Southern Comfort",
1478
+ "Country Roads",
1479
+ "Southern Nights",
1480
+ "Dirt Roads",
1481
+ "Honky Tonk",
1482
+ "Cowboy Dreams",
1483
+ "Southern Comfort",
1484
+ "Country Roads",
1485
+ "Southern Nights",
1486
+ "Dirt Roads",
1487
+ "Honky Tonk",
1488
+ "Cowboy Dreams",
1489
+ "Southern Comfort",
1490
+ "Country Roads",
1491
+ "Southern Nights",
1492
+ "Dirt Roads",
1493
+ "Honky Tonk",
1494
+ "Cowboy Dreams",
1495
+ "Southern Comfort",
1496
+ "Country Roads",
1497
+ "Southern Nights",
1498
+ "Dirt Roads",
1499
+ "Honky Tonk",
1500
+ "Cowboy Dreams",
1501
+ "Southern Comfort",
1502
+ "Country Roads",
1503
+ "Southern Nights",
1504
+ "Dirt Roads",
1505
+ "Honky Tonk",
1506
+ "Cowboy Dreams",
1507
+ "Southern Comfort",
1508
+ "Country Roads",
1509
+ "Southern Nights",
1510
+ "Dirt Roads",
1511
+ "Honky Tonk",
1512
+ "Cowboy Dreams",
1513
+ "Southern Comfort",
1514
+ "Country Roads",
1515
+ "Southern Nights",
1516
+ "Dirt Roads",
1517
+ "Honky Tonk",
1518
+ "Cowboy Dreams",
1519
+ "Southern Comfort",
1520
+ "Country Roads",
1521
+ "Southern Nights",
1522
+ "Dirt Roads",
1523
+ "Honky Tonk",
1524
+ "Cowboy Dreams",
1525
+ "Southern Comfort",
1526
+ "Country Roads",
1527
+ "Southern Nights",
1528
+ "Dirt Roads",
1529
+ "Honky Tonk",
1530
+ "Cowboy Dreams",
1531
+ "Southern Comfort",
1532
+ "Country Roads",
1533
+ "Southern Nights",
1534
+ "Dirt Roads",
1535
+ "Honky Tonk",
1536
+ "Cowboy Dreams",
1537
+ "Southern Comfort",
1538
+ "Country Roads",
1539
+ "Southern Nights",
1540
+ "Dirt Roads",
1541
+ "Honky Tonk",
1542
+ "Cowboy Dreams",
1543
+ "Southern Comfort",
1544
+ "Country Roads",
1545
+ "Southern Nights",
1546
+ "Dirt Roads",
1547
+ "Honky Tonk",
1548
+ "Cowboy Dreams",
1549
+ "Southern Comfort",
1550
+ "Country Roads",
1551
+ "Southern Nights",
1552
+ "Dirt Roads",
1553
+ "Honky Tonk",
1554
+ "Cowboy Dreams",
1555
+ "Southern Comfort",
1556
+ "Country Roads",
1557
+ "Southern Nights",
1558
+ "Dirt Roads",
1559
+ "Honky Tonk",
1560
+ "Cowboy Dreams",
1561
+ "Southern Comfort",
1562
+ "Country Roads",
1563
+ "Southern Nights",
1564
+ "Dirt Roads",
1565
+ "Honky Tonk",
1566
+ "Cowboy Dreams",
1567
+ "Southern Comfort",
1568
+ "Country Roads",
1569
+ "Southern Nights",
1570
+ "Dirt Roads",
1571
+ "Honky Tonk",
1572
+ "Cowboy Dreams",
1573
+ "Southern Comfort",
1574
+ "Country Roads",
1575
+ "Southern Nights",
1576
+ "Dirt Roads",
1577
+ "Honky Tonk",
1578
+ "Cowboy Dreams",
1579
+ "Southern Comfort",
1580
+ "Country Roads",
1581
+ "Southern Nights",
1582
+ "Dirt Roads",
1583
+ "Honky Tonk",
1584
+ "Cowboy Dreams",
1585
+ "Southern Comfort",
1586
+ "Country Roads",
1587
+ "