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

body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: black;
}

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

h1 {
    text-align: center;
    margin-bottom: 40px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.upload-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid black;
}

.file-label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

#mp3-input,
#album-cover {
    margin: 10px 0;
}

.status {
    margin-top: 10px;
    font-weight: bold;
}

.editor-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.metadata-form {
    padding: 20px;
    border: 1px solid black;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    padding: 8px;
    border: 1px solid black;
    font-size: 14px;
}

.cover-preview {
    margin-top: 10px;
    width: 150px;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.cover-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.save-button {
    width: 100%;
    padding: 12px;
    background-color: black;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.save-button:hover {
    background-color: white;
    color: black;
    border: 1px solid black;
}

.preview-section {
    padding: 20px;
    border: 1px solid black;
}

.metadata-display {
    text-align: center;
    padding: 20px;
}

.metadata-display p {
    margin: 10px 0;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .editor-section {
        grid-template-columns: 1fr;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('images/background.gif');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#border-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: url('images/border.png') repeat-x;
    background-size: contain;
    z-index: 999;
}

#border-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: url('images/border.png') repeat-x;
    background-size: contain;
    z-index: 999;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    background: url('images/border.png') repeat-y;
    background-size: contain;
    z-index: 999;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: url('images/border.png') repeat-y;
    background-size: contain;
    z-index: 999;
}

.container {
    padding: 40px;
    width: 90%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}

.title-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 700px;
    height: auto;
    max-width: 90%;
}



.buttons-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 60px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    text-decoration: none;
}

.btn img {
    display: block;
}

.btn-left {
    text-align: center;
}

.btn-right {
    text-align: center;
}



.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 20px;
        min-height: 70vh;
    }
}

/* Header and paragraph styling: bright green fill, dark blue outline, white glow */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e5230e; /* bright green fill */
    -webkit-text-stroke: 1px pink; /* outline for WebKit browsers */
    text-shadow: 0 0 10px rgba(255,255,255,0.9),
                 -1px -1px 0 pink,
                 1px -1px 0 pink,
                 -1px 1px 0 pink,
                 1px 1px 0 pink; /* pink outline via shadows */
    margin: 0.2em 0;
    line-height: 1.1;
    font-family: Arial, sans-serif;
}

p {
    font-size: 1rem;
    color: #fffb00; /* bright yellow fill */
    text-shadow: 0 0 8px rgba(255,255,255,0.85),
                 -1px -1px 0 darkblue,
                 1px -1px 0 darkblue,
                 -1px 1px 0 darkblue,
                 1px 1px 0 darkblue; /* dark blue outline via shadows */
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Center chat embed and make it responsive */
.chat-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.chat-section .chat-embed {
    width: 100%;
    max-width: 900px;
    height: 450px;
    display: block;
    border: 3px solid #000;
}
pre {
    font-family: 'courier new', monospace;
    font-size: 1.2rem;
    background: linear-gradient(
        90deg,
        #ff0000 0%,
        #ff7f00 16%,
        #ffff00 32%,
        #00ff00 48%,
        #00ffff 64%,
        #0000ff 80%,
        #ff0000 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: ascii-rainbow 6s linear infinite;
}

@keyframes ascii-rainbow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}

.tagger-page,
.tagger-page h1,
.tagger-page h2,
.tagger-page .file-label,
.tagger-page .status,
.tagger-page .form-group label,
.tagger-page .metadata-display,
.tagger-page .metadata-display p {
    color: white;
    text-shadow: none;
}

.tagger-page .metadata-display strong {
    color: white;
}

.tagger-page .upload-section,
.tagger-page .metadata-form,
.tagger-page .preview-section,
.tagger-page .form-group input,
.tagger-page .cover-preview,
.tagger-page .save-button {
    border-color: white;
}

.tagger-page .save-button {
    border: 1px solid white;
}

.tagger-page .save-button:hover {
    border: 1px solid white;
}

.joiner-page,
.joiner-page h1,
.joiner-page h2,
.joiner-page .file-label,
.joiner-page .status,
.joiner-page .metadata-display,
.joiner-page .metadata-display p,
.joiner-page .track-list,
.joiner-page .track-info {
    color: white;
    text-shadow: none;
}

.joiner-page .upload-section,
.joiner-page .metadata-form,
.joiner-page .preview-section,
.joiner-page .track-item,
.joiner-page .save-button,
.joiner-page .order-btn {
    border: 1px solid white;
}

.joiner-page .track-list {
    width: 100%;
}

.joiner-page .track-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.joiner-page .track-item {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.joiner-page .track-controls {
    display: flex;
    gap: 8px;
}

.joiner-page .order-btn {
    background: black;
    color: white;
    padding: 6px 10px;
    cursor: pointer;
}

.joiner-page .order-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.about-page {
    padding-top: 48px;
    padding-bottom: 48px;
}

.about-page h1,
.about-page p {
    width: min(900px, calc(100% - 80px));
    margin-left: auto;
    margin-right: auto;
}

.home-button {
    position: fixed;
    top: 26px;
    right: 28px;
    z-index: 1200;
    display: inline-block;
}

.home-button img {
    display: block;
    max-width: 120px;
    height: auto;
}
 
#cdr{
  color: #fffb00;
}