:root {
  --accent: var(--accent-dark);
  --primary-color: var(--primary);
  --bg-light: var(--bg-color);
  --primary-hover: var(--primary);
  --secondary-color: var(--secondary);
  --accent-warm: var(--primary);
  --text: var(--text-color);
  --text-main: var(--text-color);
}

:root {
    --primary: hsl(71, 70%, 60%);    
    --secondary: hsl(15, 80%, 50%);  
    --accent-dark: hsl(15, 40%, 20%); 
    --text-color: hsl(71, 10%, 9%);
    --bg-color: hsl(71, 7%, 96%);
    --nav-height: 70px;
}
body {
    margin: 0;
    padding-top: var(--nav-height); 
    font-family: "Playfair Display", "Georgia", serif; 
    background-color: var(--bg-color);
}

.pixel_drift {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: var(--bg-color);
    border-bottom: 3px solid var(--text-color); 
    z-index: 1000;
    box-sizing: border-box;
}
.phantomShift {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    box-sizing: border-box;
}

.blur_99 {
    display: flex;
    align-items: center;
}
.byteStream {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.echoPulse {
    background-color: var(--secondary);
    color: white;
    font-weight: bold;
    font-size: 24px;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--text-color); 
}
.skyShade {
    font-size: 26px;
    font-weight: 900;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.orbitPath {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
}
.zenith_point {
    height: 100%;
    display: flex;
    align-items: center;
}
.marble_core {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 15px;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    border-left: 1px solid transparent;
}
.marble_core:hover {
    background-color: var(--primary);
    color: var(--text-color);
}

.fire_burst {
    margin-left: 10px;
}
.cobalt_m {
    text-decoration: none;
    background-color: var(--text-color);
    color: var(--bg-color); 
    padding: 10px 25px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    border: 2px solid var(--text-color);
    transition: transform 0.1s active;
}
.cobalt_m:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

.prism_light {
    display: none; 
}
.moonGaze {
    display: none; 
    cursor: pointer;
    padding: 10px;
}
.alphaVortex, 
.alphaVortex::before, 
.alphaVortex::after {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s;
    position: relative;
}
.alphaVortex::before, 
.alphaVortex::after {
    content: "";
    position: absolute;
}
.alphaVortex::before { top: -8px; }
.alphaVortex::after { top: 8px; }

@media (max-width: 992px) {.moonGaze {
        display: block;
    }
.orbitPath {
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        height: auto;
        background-color: var(--bg-color);
        flex-direction: column;
        border-bottom: 3px solid var(--text-color);
        display: none; 
    }
.prism_light:checked ~ .orbitPath {
        display: flex;
    }
.zenith_point {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
.marble_core {
        width: 100%;
        padding: 20px 30px;
        font-size: 18px;
    }
.fire_burst {
        margin: 20px 30px;
        width: calc(100% - 60px);
    }
.cobalt_m {
        display: block;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
.prism_light:checked + .moonGaze .alphaVortex {
        background-color: transparent;
    }
.prism_light:checked + .moonGaze .alphaVortex::before {
        transform: rotate(45deg);
        top: 0;
    }
.prism_light:checked + .moonGaze .alphaVortex::after {
        transform: rotate(-45deg);
        top: 0;
    }}

:root {
    --primary: hsl(71, 70%, 60%);    
    --secondary: hsl(15, 80%, 50%);  
    --accent-dark: hsl(15, 40%, 20%); 
    --text-color: hsl(71, 10%, 9%);
    --bg-color: hsl(71, 7%, 96%);
    --nav-height: 70px;
    }
@media (max-width: 992px) {
  .moonGaze {
    display: block;
    }
  
    .orbitPath {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: auto;
    background-color: var(--bg-color);
    flex-direction: column;
    border-bottom: 3px solid var(--text-color);
    display: none; 
    }
  
    .prism_light:checked ~ .orbitPath {
    display: flex;
    }
  
    .zenith_point {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    }
  
    .marble_core {
    width: 100%;
    padding: 20px 30px;
    font-size: 18px;
    }
  
    .fire_burst {
    margin: 20px 30px;
    width: calc(100% - 60px);
    }
  
    .cobalt_m {
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    }
  
    .prism_light:checked + .moonGaze .alphaVortex {
    background-color: transparent;
    }
  
    .prism_light:checked + .moonGaze .alphaVortex::before {
    transform: rotate(45deg);
    top: 0;
    }
  
    .prism_light:checked + .moonGaze .alphaVortex::after {
    transform: rotate(-45deg);
    top: 0;
    }
}
@media (max-width: 768px) {
  .alphaWave { grid-template-columns: 1fr; }
  
    .bright_ray h1 { font-size: 2.5rem; }
  
    .neonHaze { padding: 30px; }
}

    body {
    margin: 0;
    padding-top: var(--nav-height); 
    font-family: "Playfair Display", "Georgia", serif; 
    background-color: var(--bg-color);
    }

    .pixel_drift {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: var(--bg-color);
    border-bottom: 3px solid var(--text-color); 
    z-index: 1000;
    box-sizing: border-box;
    }

    .phantomShift {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    box-sizing: border-box;
    }

    .blur_99 {
    display: flex;
    align-items: center;
    }

    .byteStream {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    }

    .echoPulse {
    background-color: var(--secondary);
    color: white;
    font-weight: bold;
    font-size: 24px;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--text-color); 
    }

    .skyShade {
    font-size: 26px;
    font-weight: 900;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: -1px;
    }

    .orbitPath {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
    }

    .zenith_point {
    height: 100%;
    display: flex;
    align-items: center;
    }

    .marble_core {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 15px;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    border-left: 1px solid transparent;
    }

    .marble_core:hover {
    background-color: var(--primary);
    color: var(--text-color);
    }

    .fire_burst {
    margin-left: 10px;
    }

    .cobalt_m {
    text-decoration: none;
    background-color: var(--text-color);
    color: var(--bg-color); 
    padding: 10px 25px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    border: 2px solid var(--text-color);
    transition: transform 0.1s active;
    }

    .cobalt_m:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: white;
    }

    .prism_light {
    display: none; 
    }

    .moonGaze {
    display: none; 
    cursor: pointer;
    padding: 10px;
    }

    .alphaVortex,
    .alphaVortex::before,
    .alphaVortex::after {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s;
    position: relative;
    }

    .alphaVortex::before,
    .alphaVortex::after {
    content: "";
    position: absolute;
    }

    .alphaVortex::before { top: -8px; }

    .alphaVortex::after { top: 8px; }

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

    main {
    font-family: var(--font-serif);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    }

    .green_halo {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    }

    .section-padding {
    padding: 80px 0;
    }

    .bright_ray {
    background-color: var(--primary-color);
    border-bottom: 4px solid var(--text-color);
    padding: 100px 0;
    text-align: center;
    }

    .bright_ray h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    }

    .bright_ray p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 500;
    }

    .fastLoop {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    }

    .hyperBolt {
    display: inline-block;
    padding: 18px 36px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid var(--text-color);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    }

    .x42_peak {
    background-color: var(--text-color);
    color: var(--bg-color);
    }

    .x42_peak:hover {
    transform: translate(-4px, -4px);
    box-shadow: 6px 6px 0 var(--secondary-color);
    }

    .alphaWave {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 2px solid var(--text-color);
    }

    .neonHaze {
    padding: 60px;
    border: 1px solid var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    }

    .neonHaze h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    }

    .neonHaze p {
    margin-bottom: 24px;
    font-size: 1.1rem;
    }

    .slow_fuse {
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 500px;
    }

    .slow_fuse img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1);
    }

    .z9_portal {
    border-bottom: 2px solid var(--text-color);
    }

    .omegaPoint {
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 20px 0;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    }

    .nightGlow {
    color: var(--text-color);
    text-decoration: underline;
    font-weight: 700;
    text-decoration-thickness: 2px;
    }

    footer {
    background-color: var(--bg-color);
    border-top: 4px solid var(--text-color);
    padding: 60px 0;
    margin-top: 40px;
    }

    .blueMist {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    }

    .dev_mode {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    }

    .goldVein {
    display: flex;
    gap: 40px;
    }

    .goldVein ul {
    list-style: none;
    }

    .goldVein a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
    }

    .flurmBox {
    margin-top: 60px;
    font-size: 0.8rem;
    opacity: 0.8;
    }

    .silver_edge {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
    flex: 1;
    }

    .glorp_7 {
    position: relative;
    margin: 60px auto 0;
    max-width: 850px;
    border: 4px solid var(--text-color);
    background-color: var(--bg-color);
    box-shadow: 20px 20px 0 var(--secondary-color);
    overflow: hidden;
    transition: transform 0.3s ease;
    }

    .glorp_7:hover {
    transform: translate(-5px, -5px);
    box-shadow: 25px 25px 0 var(--secondary-color);
    }

    .glorp_7 img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    }

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  
    .qwerty_pad { padding: 40px 15px; }
}

    .sr-only { display: none; }

    .qwerty_pad {
    width: 100%;
    max-width: 1200px;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 2px solid var(--border);
    }

    .sysTick {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    }

    h1 {
    font-size: 4rem;
    margin: 10px 0 20px;
    color: var(--text);
    line-height: 1.1;
    text-transform: uppercase;
    }

    .cfg_init {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #444;
    }

    .zyx_node {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 18px 45px;
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid var(--border);
    transition: transform 0.2s, background-color 0.2s;
    cursor: pointer;
    
    border-radius: 0;
    box-shadow: 4px 4px 0px var(--border);
    }

    .zyx_node:hover {
    background-color: var(--primary-hover);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--border);
    }

    .solar_flare {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    padding: 40px 20px;
    }

    .plonkHit {
    background: var(--white);
    border: 2px solid var(--border);
    padding: 30px;
    position: relative;
    }

    .plonkHit h2 {
    font-size: 1.5rem;
    margin-top: 0;
    border-bottom: 4px solid var(--accent);
    display: inline-block;
    }

    .plonkHit p { font-size: 0.95rem; margin-bottom: 20px; }

    .mngTool {
    font-family: sans-serif;
    font-weight: bold;
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 4px;
    }

    .vaporTrail {
    background: var(--accent);
    width: 100%;
    padding: 50px 20px;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
    }

    .ctxState {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    }

    .db_shred { flex: 1; min-width: 280px; }

    .db_shred h3 { text-transform: uppercase; border-bottom: 1px solid var(--border); padding-bottom: 10px; }

    footer a { color: var(--accent); text-decoration: none; margin: 0 10px; }

@media (max-width: 768px) {
  
    section { padding: 20px; box-shadow: 4px 4px 0px var(--primary); }
}

    .aquaGlide { display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }

    .plasmaCoil { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }

    section {
    border: 2px solid var(--border-color);
    background: white;
    margin-bottom: 40px;
    padding: 40px;
    box-shadow: 8px 8px 0px var(--primary);
    }

    h1, h2, h3 {
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-top: 0;
    font-weight: 900;
    }

    h2 { font-size: 1.8rem; background: var(--primary); display: inline-block; padding: 5px 15px; margin-bottom: 25px; }

    h3 { font-size: 1.3rem; color: var(--accent-warm); }

    p { margin-bottom: 1.5rem; font-size: 1.1rem; }

    .terra_form {
    border: 2px solid var(--border-color);
    overflow: hidden;
    background: var(--secondary);
    }

    img {
    width: 100%;
    display: block;
    filter: saturate(1.2);
    transition: transform 0.3s ease;
    }

    img:hover { transform: scale(1.02); }

    a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid var(--primary);
    padding: 0 2px;
    }

    a:hover { background: var(--primary); }

    .lunarTide {
    display: inline-block;
    padding: 15px 35px;
    background: var(--text-color);
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    }

    footer p { font-size: 0.9rem; opacity: 0.8; }

    .sonic_boom {
    font-family: monospace;
    font-size: 0.8rem;
    background: var(--secondary);
    padding: 2px 8px;
    margin-bottom: 10px;
    display: inline-block;
    }

@media (max-width: 768px) {
  .aero_dynamic {
    flex-direction: column;
    }
}

    .nitro_boost {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
    }

    .synthWave {
    background-color: var(--primary);
    padding: 100px 24px;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }

    .cyber_mesh {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 3rem;
    }

    .plonkHit:hover {
    transform: translateY(-5px);
    }

    .cryo_freeze {
    margin: 3rem 0;
    overflow: hidden;
    border: 1px solid var(--text-color);
    }

    .cryo_freeze img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(1.2);
    }

    .aero_dynamic {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
    }

    ul {
    list-style: none;
    margin-bottom: 2rem;
    }

    ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-family: "Arial", sans-serif;
    display: flex;
    justify-content: space-between;
    }

    ul li strong {
    color: hsl(71, 10%, 30%);
    }

    .pyroClast {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid var(--secondary);
    transition: background 0.2s;
    }

    .pyroClast:hover {
    background-color: var(--secondary);
    }

@media (max-width: 768px) {
  .zetaByte {
    grid-template-columns: 1fr;
    }
  
    .exa_scale {
    order: 2;
    }
  
    .tera_watt {
    order: 1;
    height: 300px;
    }
  
    .bose_sound {
    flex-direction: column;
    }
}

    .marshall_amp {
    font-size: clamp(2rem, 5vw, 3.5rem);
    padding: 60px 5% 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 4px solid var(--text-dark);
    }

    .zetaByte {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 2px solid var(--text-dark);
    }

    .exa_scale {
    padding: 60px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--primary);
    }

    .tera_watt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    }

    .agfaColor {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
    }

    .fuji_film {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
    }

    .kodaChrome {
    background: #fff;
    border: 1px solid var(--text-dark);
    padding: 0;
    transition: transform 0.2s ease;
    }

    .kodaChrome:hover {
    transform: translateY(-5px);
    }

    .kodaChrome img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid var(--text-dark);
    }

    .canon_shot {
    padding: 25px;
    }

    .kodaChrome h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    }

    .kodak_mom {
    display: inline-block;
    background: var(--secondary);
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    border: 1px solid var(--text-dark);
    }

    .bose_sound {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 5%;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 50px;
    }

    .yotta_node {
    flex: 1;
    }

    .yotta_node h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
    }

    .neoSphere {
    list-style: none;
    margin-top: 20px;
    }

    .mega_byte {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #ccc;
    }

    .petaBit {
    background: #eee;
    border: 1px solid #999;
    border-radius: 3px;
    padding: 2px 6px;
    font-family: monospace;
    font-weight: bold;
    }

    .nikonLens {
    text-align: right;
    font-size: 0.9rem;
    font-weight: bold;
    color: #666;
    margin-bottom: 10px;
    }

    .retro_grade {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    }

    .gigaFlop {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    }

    .sonyPlay {
    border-top: 2px solid var(--text-dark);
    padding: 40px 5%;
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #fff;
    }

    .sonyPlay p {
    color: var(--text-dark);
    }

    .sonyPlay a {
    color: var(--text-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
    }

    .sonyPlay a:hover {
    color: var(--accent-warm);
    }

@media (max-width: 850px) {
  .roland_tr { grid-template-columns: 1fr; }
}

    .yamahaDX {
    font-family: sans-serif;
    font-size: 1.25rem;
    max-width: 800px;
    border-left: 8px solid var(--accent-warm);
    padding-left: 20px;
    }

    .gibson_les {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    }

    .ibanez_rg {
    border: 2px solid var(--text-main);
    background: #fff;
    position: relative;
    padding: 0;
    }

    .citizenEco {
    background: var(--primary);
    padding: 15px 25px;
    border-bottom: 2px solid var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

    .omegaSpeed {
    font-weight: bold;
    font-size: 1.5rem;
    }

    .moogSynth {
    font-family: sans-serif;
    font-weight: 600;
    background: var(--text-main);
    color: #fff;
    padding: 4px 12px;
    }

    .roland_tr {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    }

    .akai_mpc h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-warm);
    }

    .akai_mpc h3 {
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
    text-decoration: underline;
    }

    .korg_m1 {
    list-style: none;
    }

    .korg_m1 li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    }

    .korg_m1 li::before {
    content: "■";
    position: absolute;
    left: 0;
    color: var(--secondary);
    }

    .seiko_time {
    width: 100%;
    border: 1px solid var(--text-main);
    box-shadow: 8px 8px 0px var(--text-main);
    }

    .seiko_time img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(1.2);
    }

    .nightGlow:hover {
    border-bottom-color: var(--accent-warm);
    }

    .fenderStrat {
    font-family: sans-serif;
    opacity: 0.8;
    margin-bottom: 30px;
    }

    .casioKey {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    }

.cc-sec-area.active,
.cc-sec-area.cc-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}