* { box-sizing: border-box; }
body { margin: 0; background-color: #050505; color: #e6c66a; font-family: Arial, sans-serif; display: flex; flex-direction: column; align-items: center; min-height: 100vh; overflow-x: hidden; }

.tribute-header { width: 100%; text-align: center; padding: 15px 0; font-size: 16px; letter-spacing: 6px; color: #e6c66a !important; text-transform: uppercase; background: #000; border-bottom: 1px solid #111; font-weight: bold; }
nav { width: 100%; padding: 25px 0; text-align: center; background: #000; position: relative; z-index: 10; }
nav a { color: #fff; text-decoration: none; margin: 0 20px; font-weight: bold; font-size: 20px; }

.vinyl-artifact {
    position: relative;
    width: 850px;
    height: 850px;
    margin: 60px auto;
    border-radius: 50%;
    background: #0a0a0a;
    box-shadow: 0 0 0 10px #0a0a0a, 0 0 0 30px #050505, 0 0 0 32px #181818, 0 0 0 60px #050505, 0 0 0 62px #181818, 0 0 0 80px #e6c66a;
    display: flex; flex-direction: column; align-items: center; justify-content: center; border: 3px solid #e6c66a; padding: 60px;
}

.white-title { color: #ffffff !important; font-size: 50px; letter-spacing: 4px; text-transform: uppercase; margin: 0; text-align: center; }
.tagline { font-size: 18px; color: #fff; margin-top: 5px; letter-spacing: 2px; text-align: center; width: 100%; display: block; }

/* The Half-Size Horizontal 8 */
.interlaced-8-horizontal { 
    width: 110px; /* Reduced from 210px */
    height: 60px; /* Reduced from 110px */
    animation: heartbeat 2s infinite ease-in-out; 
    margin: 20px 0; 
    display: flex; 
    flex-direction: row; 
    justify-content: center; 
    align-items: center; 
}
.vinyl-record { 
    width: 50px; /* Reduced from 100px */
    height: 50px; /* Reduced from 100px */
    min-width: 50px; 
    min-height: 50px; 
    background: #fff; 
    border-radius: 50%; 
    animation: spin 3s linear infinite; 
    box-shadow: 0 0 10px rgba(255,255,255,0.4); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    margin: 0 -3px; 
}
.label { width: 15px; height: 15px; background: #000; border-radius: 50%; display: flex; justify-content: center; align-items: center; }
.hole { width: 2px; height: 2px; background: #fff; border-radius: 50%; }

.content-container { width: 100%; color: #fff; text-align: center; padding: 0 20px; }
.tool-grid p { font-size: 20px; margin-bottom: 15px; font-weight: bold; line-height: 1.4; }

.color-bb { color: #ff0000 !important; }
.color-ab-yellow { color: #ffff00 !important; }
.color-ab-green { color: #00ff00 !important; }
.color-pp-blue { color: #00bfff !important; }
.color-ap { color: #ffff00 !important; }

@keyframes heartbeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Mobile Calibration */
@media (max-width: 768px) {
    .vinyl-artifact { 
        width: 95vw !important; 
        height: 95vw !important; 
        aspect-ratio: 1 / 1 !important; 
        margin: 15px auto; 
        padding: 15px 10px;
        box-shadow: 0 0 0 5px #0a0a0a, 0 0 0 12px #050505, 0 0 0 13px #181818, 0 0 0 22px #050505, 0 0 0 23px #181818, 0 0 0 32px #e6c66a; 
    }
    .white-title { font-size: 24px !important; }
    .tagline { font-size: 11px; margin-bottom: 5px; }
    .tool-grid p { font-size: 11px !important; margin-bottom: 6px; line-height: 1.2; }
    
    /* Horizontal 8 Mobile Scale - Making sure it doesn't cover text */
    .interlaced-8-horizontal { transform: scale(0.8); height: 50px; margin: 10px 0; }
}

































