/* ========================================
   INLINE STYLES - Extracted from index.html
   ======================================== */

body {
    background-color: #12100e;
    color: #eebb77;
    overflow-x: hidden;
    cursor: none;
}

/* === CUSTOM CURSOR === */
#cursor-dot, #cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    border-radius: 50%;
}

#cursor-dot {
    width: 8px;
    height: 8px;
    background: #eebb77;
    box-shadow: 0 0 10px #cd7f32;
}

#cursor-ring {
    width: 40px;
    height: 40px;
    border: 2px solid #cd7f32;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover #cursor-ring {
    width: 50px;
    height: 50px;
}

/* === STEAM CANVAS === */
#steam-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* === METAL PANEL === */
.metal-panel {
    background: linear-gradient(135deg, #2a1f18 0%, #362820 100%);
    border: 4px solid #5c4033;
    box-shadow: 
        inset 0 0 30px rgba(0,0,0,0.8),
        0 10px 30px rgba(0,0,0,0.5),
        0 0 0 2px #1a120b,
        0 0 0 6px #cd7f32;
    position: relative;
}

/* === RIVETTI === */
.rivet {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle at 30% 30%, #eebb77, #805030);
    border-radius: 50%;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    z-index: 10;
}

.rivet-tl {
    top: 10px;
    left: 10px;
}

.rivet-tr {
    top: 10px;
    right: 10px;
}

.rivet-bl {
    bottom: 10px;
    left: 10px;
}

.rivet-br {
    bottom: 10px;
    right: 10px;
}

/* === TEXT EFFECTS === */
.text-engraved {
    color: #cd7f32;
    text-shadow: 
        1px 1px 0px rgba(255,255,255,0.1),
        -1px -1px 0px rgba(0,0,0,0.8);
    font-weight: 900;
}

/* === PIPES === */
.pipe-h {
    height: 20px;
    background: linear-gradient(to bottom, #5c4033 0%, #a07050 50%, #3d2b1f 100%);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.8);
    position: relative;
    z-index: 1;
}

.pipe-v {
    width: 20px;
    background: linear-gradient(to right, #5c4033 0%, #a07050 50%, #3d2b1f 100%);
    border-left: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(0,0,0,0.8);
}

/* === GAUGES === */
.gauge {
    width: 60px;
    height: 60px;
    background: #f4e4bc;
    border: 4px solid #cd7f32;
    border-radius: 50%;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.gauge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 25px;
    background: red;
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(-45deg);
    animation: gaugeWiggle 2s ease-in-out infinite alternate;
}

@keyframes gaugeWiggle {
    0% {
        transform: translate(-50%, -100%) rotate(-45deg);
    }
    100% {
        transform: translate(-50%, -100%) rotate(45deg);
    }
}

/* === SCROLL REVEAL === */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.reveal-zoom {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s ease;
}

.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* === TICKER === */
.ticker-wrapper {
    position: relative;
    overflow: hidden;
    background: #1a120b;
    border-top: 2px solid #cd7f32;
    border-bottom: 2px solid #cd7f32;
    height: 50px;
    display: flex;
    align-items: center;
}

.ticker-content {
    display: flex;
    animation: ticker 40s linear infinite;
    white-space: nowrap;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
