/* Fish in a thong studios - Early 2000s Style Sheet */

@font-face {
    font-family: 'Fracturefont';
    src: url('/Fracturefont-Regular.ttf') format('truetype'),
         url('Fracturefont-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #000000;
    background-image: url('https://atmosfx.com/cdn/shop/products/BC_BoneyardBand_TV_H_800x.jpg?v=1629682195');
    background-repeat: repeat;
    background-size: 400px 400px;
    background-position: 0 0;
    margin: 0;
    padding: 20px;
    font-family: "Fracturefont", "Comic Sans MS", "Arial", sans-serif;
    animation: backgroundMove 20s linear infinite;
    min-height: 100vh;
    text-align: center;
}

@keyframes backgroundMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 400px 400px;
    }
}

/* Blink animation for browsers that don't support <blink> tag */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

blink {
    animation: blink 1s step-end infinite;
}

/* Navigation Links */
.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    padding: 5px 10px;
}

.nav-link:hover {
    color: #FFFF00;
    background-color: #0000FF;
    text-decoration: underline;
    font-size: 16px;
}

/* Social Media Links */
.social-link {
    color: #FFFF00;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 5px 15px;
    border: 2px solid #FFFF00;
    background-color: #0000FF;
}

.social-link:hover {
    color: #0000FF;
    background-color: #FFFF00;
    text-decoration: none;
    font-size: 18px;
}

/* Email Link */
.email-link {
    color: #FFFF00;
    text-decoration: underline;
    font-weight: bold;
}

.email-link:hover {
    color: #00FFFF;
    background-color: #000000;
    text-decoration: none;
}

/* Glowing text effect */
.glow {
    text-shadow: 0 0 10px #FFFF00, 0 0 20px #FFFF00, 0 0 30px #FFFF00;
}

/* Retro button style */
.retro-button {
    background-color: #FF00FF;
    border: 3px solid #FFFF00;
    color: #FFFFFF;
    padding: 10px 20px;
    font-family: "Fracturefont", "Comic Sans MS", sans-serif;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

button.retro-button {
    background-color: #FF00FF;
    border: 3px solid #FFFF00;
    color: #FFFFFF;
    padding: 10px 20px;
    font-family: "Fracturefont", "Comic Sans MS", sans-serif;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}

.retro-button:hover,
button.retro-button:hover {
    background-color: #FFFF00;
    color: #FF00FF;
    border-color: #FF00FF;
}

/* Table hover effects */
table:hover {
    border-color: #FFFF00 !important;
}

/* Scrollbar styling for early 2000s feel */
::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #FF00FF;
    border: 2px solid #FFFF00;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFFF00;
}

/* Additional retro effects */
center {
    text-align: center;
    display: block;
    width: 100%;
    margin: 0 auto;
}

/* Center main content table */
center > table {
    margin: 0 auto;
}

/* Center all tables within center tags */
center table {
    margin-left: auto;
    margin-right: auto;
}

/* Animated background pattern effect - removed as it wasn't working properly */

/* Volume slider styling */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: #000000;
    border: 2px solid #FFFF00;
    height: 20px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #FF00FF;
    border: 2px solid #FFFF00;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #FF00FF;
    border: 2px solid #FFFF00;
    cursor: pointer;
}

/* Progress bar alignment */
#progressContainer {
    text-align: left !important;
    display: block;
}

#progressBar {
    display: block !important;
    text-align: left !important;
    float: none !important;
    margin: 0 !important;
}
