/* 
   Vintage Audio / Retro Amp Theme for Neocities
*/

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #1a1512;
    background-image: repeating-linear-gradient(45deg,
            #1c1815,
            #1c1815 10px,
            #1a1512 10px,
            #1a1512 20px);
    color: #e5cdb5;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Typography Links */
a {
    color: #ff9d00;
    text-decoration: none;
}

a:hover {
    color: #ffcc66;
    text-shadow: 0 0 5px #ff9d00;
}

/* Amplifier Chassis */
.amplifier-chassis {
    background-color: #2b2b2b;
    border: 15px solid #4a2f1d;
    /* Wood case look */
    border-radius: 8px;
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Brushed Metal Panels */
.amp-panel {
    background: linear-gradient(180deg, #d8d8d8 0%, #b5b5b5 50%, #9c9c9c 100%);
    border-bottom: 2px solid #555;
    padding: 30px 20px;
    position: relative;
    color: #111;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

/* Screws */
.screw {
    width: 12px;
    height: 12px;
    background-color: #999;
    border-radius: 50%;
    position: absolute;
    box-shadow: inset 1px 1px 3px rgba(255, 255, 255, 0.7), inset -1px -1px 3px rgba(0, 0, 0, 0.5), 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.screw::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 2px;
    right: 2px;
    height: 1px;
    background-color: #333;
    transform: translateY(-50%) rotate(45deg);
}

.top-left {
    top: 10px;
    left: 10px;
}

.top-right {
    top: 10px;
    right: 10px;
}

.bottom-left {
    bottom: 10px;
    left: 10px;
}

.bottom-right {
    bottom: 10px;
    right: 10px;
}

/* VU Meters */
.vu-meters {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.vu-meter {
    width: 120px;
    height: 80px;
    background-color: #f4f0db;
    /* Vintage paper color */
    border: 4px solid #222;
    border-radius: 4px;
    position: relative;
    box-shadow: inset 0 0 15px rgba(200, 150, 0, 0.4), 0 5px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Glowing Amber Effect */
.vu-meter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center bottom, rgba(255, 170, 0, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.vu-background {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 40px;
    border-top: 1px solid #333;
    border-radius: 50% 50% 0 0;
}

.vu-needle {
    width: 2px;
    height: 50px;
    background-color: #cc0000;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform-origin: bottom center;
    transform: rotate(-30deg);
    transition: transform 0.1s linear;
}

.vu-label {
    position: absolute;
    bottom: 5px;
    width: 100%;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    color: #333;
    font-family: 'Arial', sans-serif;
}

/* Power Light */
.power-light {
    width: 20px;
    height: 20px;
    background-color: #ff3300;
    border-radius: 50%;
    align-self: flex-end;
    margin-bottom: 15px;
    border: 3px solid #666;
    box-shadow: 0 0 15px #ff3300, inset 0 0 5px #fff;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px #ff3300, inset 0 0 5px #fff;
    }

    100% {
        box-shadow: 0 0 25px #ff3300, 0 0 10px #ff3300, inset 0 0 5px #fff;
    }
}

/* Brand Plate */
.brand-plate h1 {
    font-size: 28px;
    letter-spacing: 4px;
    margin: 0;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8), -1px -1px 0 rgba(0, 0, 0, 0.5);
}

.brand-plate h2 {
    font-size: 14px;
    letter-spacing: 2px;
    color: #444;
    margin-top: 5px;
}

/* Retro Marquee */
.retro-marquee {
    background-color: #0a0a0a;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    padding: 5px;
    border: 2px inset #555;
    margin-top: 20px;
    font-size: 14px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
}

/* Controls */
.amp-controls {
    background-color: #222;
    padding: 30px 20px;
    display: flex;
    justify-content: space-around;
    border-top: 2px solid #111;
    border-bottom: 2px solid #111;
    box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.6);
}

.control-knob {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ccc;
}

.knob-dial {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 30%, #555 0%, #222 100%);
    border-radius: 50%;
    border: 2px solid #111;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.8), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    position: relative;
    margin-bottom: 10px;
    transition: transform 0.1s;
}

.control-knob:hover .knob-dial {
    transform: scale(1.05);
}

.control-knob:active .knob-dial {
    transform: scale(0.95);
}

/* The indicator line on the knob */
.knob-dial::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    width: 2px;
    height: 15px;
    background-color: #e5cdb5;
    transform: translateX(-50%);
}

.knob-label {
    font-size: 12px;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
    text-shadow: 1px 1px 0 #000;
}

.control-knob:hover .knob-label {
    color: #ff9d00;
}

/* Content Area */
.content-area {
    background: repeating-linear-gradient(0deg,
            #111,
            #111 2px,
            #1a1a1a 2px,
            #1a1a1a 4px);
    /* Speaker grille look */
    padding: 30px;
    min-height: 250px;
}

.content-window {
    background-color: #0f1210;
    /* Dark glowing LCD look */
    border: 3px inset #333;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(255, 150, 0, 0.1);
}

.content-window h2 {
    color: #ff9d00;
    border-bottom: 1px solid #ff9d00;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.content-window h3 {
    color: #ff9d00;
    margin-top: 25px;
    margin-bottom: 10px;
}

.content-window h4 {
    color: #e5cdb5;
    margin-top: 25px;
    margin-bottom: 10px;
}

.content-window p {
    margin-bottom: 15px;
    line-height: 1.5;
    color: #d1bfae;
}

.content-window ul {
    margin-bottom: 20px;
    margin-left: 20px;
    color: #d1bfae;
    line-height: 1.5;
}

.content-window li {
    margin-bottom: 5px;
}

.badges {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

/* Footer */
.amp-footer {
    background-color: #1a1a1a;
    padding: 15px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-top: 2px solid #000;
}

.hit-counter {
    background-color: #000;
    color: #ff0000;
    padding: 2px 6px;
    font-family: 'Courier New', Courier, monospace;
    border: 1px inset #333;
    letter-spacing: 2px;
}