:root {
    /* DEFAULT THEME (Archive Technical) */
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-color: #9e9d9c;
    --header-color: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    --font-main: 'Archivo', sans-serif;
    --font-mono: 'Geist Mono', monospace;
    --panel-bg: rgba(255, 255, 255, 0.05);

    /* Effects Persistence */
    --parallax-factor: 1;
}

[data-theme="beige-moss"] {
    --bg-color: #E6E1C5;
    --text-color: #362C21;
    --accent-color: #5B6636;
    --header-color: #362C21;
    --border-color: rgba(54, 44, 33, 0.2);
    --panel-bg: rgba(91, 102, 54, 0.08);
}

[data-theme="rust-black"] {
    --bg-color: #8B3D1E;
    --text-color: #ffffff;
    --accent-color: #D69F7E;
    --header-color: #ffffff;
    --border-color: rgba(214, 159, 126, 0.2);
    --panel-bg: rgba(0, 0, 0, 0.2);
}

[data-theme="sand-brown"] {
    --bg-color: #C8A864;
    --text-color: #1A1A1A;
    --accent-color: #362C21;
    --header-color: #1A1A1A;
    --border-color: rgba(54, 44, 33, 0.2);
    --panel-bg: rgba(54, 44, 33, 0.1);
}

[data-theme="slate-green"] {
    --bg-color: #6B9080;
    --text-color: #ffffff;
    --accent-color: #CCE3DE;
    --header-color: #ffffff;
    --border-color: rgba(204, 227, 222, 0.2);
    --panel-bg: rgba(0, 0, 0, 0.2);
}

[data-theme="tan-beige"] {
    --bg-color: #BF8B5B;
    --text-color: #1A1A1A;
    --accent-color: #362C1D;
    --header-color: #1A1A1A;
    --border-color: rgba(54, 44, 29, 0.2);
    --panel-bg: rgba(54, 44, 29, 0.1);
}

[data-theme="charcoal-black"] {
    --bg-color: #35312C;
    --text-color: #ffffff;
    --accent-color: #9e9d9c;
    --header-color: #ffffff;
    --border-color: rgba(158, 157, 156, 0.2);
    --panel-bg: rgba(0, 0, 0, 0.2);
}

[data-theme="olive-cream"] {
    --bg-color: #8D9965;
    --text-color: #F0EAD6;
    --accent-color: #F0EAD6;
    --header-color: #ffffff;
    --border-color: rgba(240, 234, 214, 0.2);
    --panel-bg: rgba(0, 0, 0, 0.15);
}

[data-theme="deep-purple"] {
    --bg-color: #1A0A2E;
    --text-color: #ffffff;
    --accent-color: #8A4FBD;
    --header-color: #ffffff;
    --border-color: rgba(138, 79, 189, 0.2);
    --panel-bg: rgba(0, 0, 0, 0.3);
}

[data-theme="cyber-cyan"] {
    --bg-color: #001A1A;
    --text-color: #00FFFF;
    --accent-color: #00CCCC;
    --header-color: #00FFFF;
    --border-color: rgba(0, 204, 204, 0.2);
    --panel-bg: rgba(0, 0, 0, 0.4);
}

[data-theme="copper-gold"] {
    --bg-color: #2A1B0E;
    --text-color: #F5E6D3;
    --accent-color: #D4A373;
    --header-color: #F5E6D3;
    --border-color: rgba(212, 163, 115, 0.2);
    --panel-bg: rgba(0, 0, 0, 0.3);
}

[data-theme="lime-toxic"] {
    --bg-color: #0A1405;
    --text-color: #CCFF00;
    --accent-color: #A3CC00;
    --header-color: #CCFF00;
    --border-color: rgba(204, 255, 0, 0.2);
    --panel-bg: rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    /* WebGL is the background */
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    padding-left: 120px;
    /* Prevent text overlap with sidebar */
    line-height: 1.2;
    padding: 100px 80px 60px 120px;
    /* Combined padding */
    font-size: 11px;
    transition: background-color 0.8s cubic-bezier(0.16, 1, 0.3, 1), color 0.5s;
}


canvas.webgl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: auto;
    display: block;
}

.archive-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.archive-section {
    padding-bottom: 2vh;
    opacity: 1;
    position: relative;
    will-change: transform;
}

#hover-info {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    padding: 12px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px) saturate(160%);
    -webkit-backdrop-filter: blur(15px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    width: 250px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#hover-info strong {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 8px;
}

.info-text {
    font-size: 12px;
    line-height: 1.4;
    opacity: 0.9;
}

.section-divider {
    width: 100%;
    height: 1px;
    background: #ffffff;
    opacity: 0.1;
    margin: 30px 0;
}

/* =========================================
   NAVIGATION (Updated)
   ========================================= */

.main-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center everything in the sidebar */
    align-items: center;
    width: 80px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Centered Vertically */
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: none;
    padding: 0;
    pointer-events: none;
}

.menu-links {
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    width: 100%;
}

/* Nav Link Base */
.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    position: relative;
    transition: color 0.3s, opacity 0.3s;
    z-index: 1;
}

.nav-link:hover {
    color: #ffffff !important;
    opacity: 1 !important;
    z-index: 10;
}

.nav-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2px;
    position: relative;
    z-index: 2;
}

.nav-link span {
    position: absolute;
    left: 55px;
    /* Slightly closer to icon */
    top: 50%;
    transform: translateY(-50%) translateX(-15px);

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 25px;
    border-radius: 50px;
    /* Full Rounded Pill */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

.nav-link:hover span {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* SECTION HEADER HIGHLIGHT */
.section-label,
h2,
h3,
h1 {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* HOME HERO */
.home-hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.signature-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
    position: relative;
    z-index: 1100;
    /* Stays above the config drawer (900) */
}

/* SIGNATURE LABEL (EXP.05 STYLE) */
.signature-label {
    display: flex;
    height: 60px;
    background: #ffffff;
    align-items: stretch;
    /* Ensure sidebars fill height */
}

.label-sidebar {
    width: 25px;
    background-color: #000000;
    /* Redesigned solid chevron for visual weight fidelity (6px height) */
    background-image: url("data:image/svg+xml,%3Csvg width='25' height='6' viewBox='0 0 25 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 0 L12.5 4.5 L22 0 L22 1.5 L12.5 6 L3 1.5 Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: repeat-y;
    background-position: center top;
    height: 100%;
    flex-shrink: 0;
}

.label-main {
    padding: 0 25px;
    display: flex;
    align-items: center;
}

.signature {
    font-family: 'Geist', sans-serif;
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    color: #000000 !important;
    line-height: 1;
    margin: 0;
}

/* ROLE LABEL (SPEC STYLE) */
.role-label {
    display: flex;
    height: 30px;
    background: #EEDD00;
    /* Technical yellow */
    align-items: stretch;
    width: fit-content;
    /* Trim to content width */
}

.role-sidebar {
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    background: #EEDD00;
}

.role-sidebar svg {
    width: 14px;
    height: 14px;
    color: #000000;
    display: block;
}

.role-main {
    flex: 1;
    padding: 0 25px;
    /* Balanced padding for same visual spacing on right */
    display: flex;
    align-items: center;
}

.role-title {
    font-family: var(--font-mono) !important;
    /* Force mono font */
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #000000 !important;
}

.role-icon-small {
    width: 12px;
    height: 12px;
}

/* SPA Transitions */
.page-content {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.page-content.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SLIDING DRAWER */
#detail-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100vh;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    pointer-events: none;
    overflow: hidden !important;
    /* Block any horizontal bleed */
}

#detail-drawer.open {
    transform: translateX(0);
}

.drawer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    clip-path: polygon(100px 0, 100% 0, 100% 100%, 0% 100%);
    box-shadow: -5px 0 20px rgba(255, 255, 255, 0.05);
    z-index: -1;
    pointer-events: auto;
}

#detail-drawer>button,
.drawer-content {
    pointer-events: auto;
}

.drawer-header {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: transparent;
}

.drawer-content {
    padding: 0 80px 0 140px;
    overflow: hidden;
    /* No vertical or horizontal scroll */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.drawer-title {
    font-family: 'Geist', sans-serif;
    font-weight: 800;
    font-size: 42px;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.1;
}

.drawer-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.drawer-tag {
    background: #000000;
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.drawer-banner {
    width: calc(100% + 60px);
    margin-left: -45px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    transform: skewX(-8.5deg);
    /* Adjusted to match panel visually */
    background-size: cover;
    background-position: center;
}

/* Un-skew the image inside so it stays straight */
.drawer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -15%;
    width: 130%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transform: skewX(8.5deg);
}

.drawer-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.drawer-desc {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    max-width: 600px;
}

/* DRAWER TOGGLE / CLOSE BUTTON */
.drawer-toggle {
    position: absolute;
    top: 50%;
    /* Vertically centered */
    left: 32.5px;
    /* Centered on X=50px (The diagonal line is exactly at 50px when at 50% height) */
    transform: translateY(-50%) skewX(-5.7deg);

    width: 35px;
    height: 80px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    /* Slightly more visible */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s;
    border-radius: 4px;
}

.drawer-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) skewX(-5.7deg) scale(1.05);
}

.drawer-toggle span {
    transform: skewX(5.7deg);
    /* Anti-skew icon */
}

/* Glass Utility (if needed elsewhere) */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.archive-header-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    opacity: 1 !important;
    /* Force visible */
}

.section-label {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 13px;
    color: var(--text-color);
    white-space: nowrap;
    text-transform: uppercase;
}

.dashed-line {
    flex-grow: 1;
    height: 1px;
    border-bottom: 1px dashed var(--border-color);
}

.archive-list {
    list-style: none;
    margin-bottom: 40px;
}

.archive-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 10px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 14px;
    position: relative;
    /* For arrow positioning */
    overflow: hidden;
}

.archive-item:hover {
    background-color: #ffffff;
    color: #000000;
    cursor: pointer;
    padding-left: 20px;
    /* Slide text right to make room for arrow */
}

/* DIAGONAL HOVER ARROW (NORTHEAST) - HARDENED */
.archive-list .archive-item::after {
    content: '\2197' !important;
    /* Unicode for ↗ */
    position: absolute !important;
    left: 4px !important;
    top: 50% !important;
    transform: translateY(-50%) translate(-10px, 10px) !important;
    opacity: 0 !important;
    font-family: var(--font-mono) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    pointer-events: none !important;
    color: inherit !important;
}

/* DIAGONAL HOVER ARROW (NORTHEAST) - HARDENED & PERSISTENT */
.archive-list .archive-item:hover::after,
.archive-list .archive-item.active::after {
    opacity: 1 !important;
    transform: translateY(-50%) translate(0, 0) !important;
    color: inherit !important;
}

/* ACTIVE/SELECTED STATE (HARDENED & INVERTED) */
.archive-list .archive-item.active {
    background-color: #000000 !important;
    color: #ffffff !important;
    padding-left: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    z-index: 5 !important;
}

.archive-list .archive-item.active::after {
    opacity: 1 !important;
    transform: translateY(-50%) translate(0, 0) !important;
    color: #ffffff !important;
    /* Force white arrow on black background */
}

.about-content {
    max-width: 600px;
    font-size: 13px;
    /* Increased for consistency */
    line-height: 1.6;
    margin-top: 20px;
    color: var(--text-color);
    opacity: 0.8;
}

.about-content p {
    margin-bottom: 20px;
}

#contact-content.active {
    display: block;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    width: 100%;
    max-width: 900px;
    /* Increased for full sticker width */
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

/* TECHNICAL STICKER CONTACT SYSTEM (HARDENED) */
#contact-content .contact-card.sticker {
    display: flex !important;
    flex-direction: column !important;
    height: 300px !important;
    width: 100% !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    position: relative !important;
    padding: 15px !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

#contact-content .contact-card.sticker::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

#contact-content .contact-card.sticker:hover::before {
    opacity: 1 !important;
}

.contact-card.sticker:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

/* Platform Hover Colors & Gradients */
#contact-content .contact-card.sticker.mail {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#contact-content .contact-card.sticker.mail::before {
    background: #ffffff !important;
    opacity: 0 !important;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#contact-content .contact-card.sticker.mail:hover {
    background: #ffffff !important;
    color: #000000 !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
}

#contact-content .contact-card.sticker.mail:hover .sticker-main {
    color: #ea4335 !important;
    /* Classic Gmail Red */
    border-bottom-color: #000000 !important;
}

#contact-content .contact-card.sticker.mail:hover .sticker-header,
#contact-content .contact-card.sticker.mail:hover .info-row .label,
#contact-content .contact-card.sticker.mail:hover .info-row .value {
    color: #000000 !important;
}

#contact-content .contact-card.sticker.mail:hover .qr-container {
    border-color: #000000 !important;
    filter: invert(1) !important;
    /* Flip QR to be black on white */
}

/* Decorative "Cut" Gmail Logo */
#contact-content .contact-card.sticker.mail::after {
    content: '' !important;
    position: absolute !important;
    bottom: -40px !important;
    right: -40px !important;
    width: 200px !important;
    height: 200px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ea4335' d='M24 4.5v15c0 .85-.65 1.5-1.5 1.5H21V7.38l-9 5.65-9-5.65V21H1.5c-.85 0-1.5-.65-1.5-1.5v-15c0-.4.15-.75.4-1.05l.3-.25c.2-.15.45-.2.7-.2H4.4l7.6 4.75L19.6 3h2.5c.25 0 .5.05.7.2l.3.25c.25.3.4.65.4 1.05z'/%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    opacity: 0 !important;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transform: rotate(-15deg) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

#contact-content .contact-card.sticker.mail:hover::after {
    opacity: 0.1 !important;
    bottom: -20px !important;
    right: -20px !important;
}

#contact-content .contact-card.sticker.mail:hover::before {
    opacity: 1 !important;
}

#contact-content .contact-card.sticker.linkedin::after {
    content: '' !important;
    position: absolute !important;
    bottom: -40px !important;
    right: -40px !important;
    width: 200px !important;
    height: 200px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2300bfff' d='M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z'/%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    opacity: 0 !important;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transform: rotate(-15deg) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

#contact-content .contact-card.sticker.linkedin:hover::after {
    opacity: 0.1 !important;
    bottom: -20px !important;
    right: -20px !important;
}

#contact-content .contact-card.sticker.linkedin:hover::before {
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            #00a0dc 0%, #0077b5 60%, #014182 100%) !important;
}

#contact-content .contact-card.sticker.twitter:hover {
    backdrop-filter: grayscale(100%) blur(20px) brightness(0.8) !important;
    -webkit-backdrop-filter: grayscale(100%) blur(20px) brightness(0.8) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
}

#contact-content .contact-card.sticker.twitter:hover::before {
    background-image:
        radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 255, 255, 0.1) 0%,
            rgba(0, 0, 0, 0.8) 80%),
        linear-gradient(rgba(255, 255, 255, 0.05) 50%, transparent 50%) !important;
    background-size: 100% 100%, 100% 4px !important;
    background-position: center, 0 0 !important;
    animation: scanMove 1s linear infinite !important;
}

#contact-content .contact-card.sticker.twitter::after {
    content: '' !important;
    position: absolute !important;
    bottom: -40px !important;
    right: -40px !important;
    width: 200px !important;
    height: 200px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.25 2.25h6.663l4.715 6.235 5.616-6.235zm-1.161 17.52h1.833L7.081 4.126H5.117L17.083 19.77z'/%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    opacity: 0 !important;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transform: rotate(-15deg) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

#contact-content .contact-card.sticker.twitter:hover::after {
    opacity: 1 !important;
    bottom: -20px !important;
    right: -20px !important;
}

@keyframes scanMove {
    from {
        background-position: center, 0 0;
    }

    to {
        background-position: center, 0 40px;
    }
}

/* Instagram Brand Gradient (Interactive Cursor Tracking) */
#contact-content .contact-card.sticker.instagram::after {
    content: '' !important;
    position: absolute !important;
    bottom: -40px !important;
    right: -40px !important;
    width: 200px !important;
    height: 200px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23d6249f' d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    opacity: 0 !important;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transform: rotate(-15deg) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

#contact-content .contact-card.sticker.instagram:hover::after {
    opacity: 0.1 !important;
    /* Subtle Presence */
    bottom: -20px !important;
    right: -20px !important;
}

#contact-content .contact-card.sticker.instagram:hover::before {
    background: radial-gradient(circle at var(--mouse-x, 30%) var(--mouse-y, 107%),
            #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
}

#contact-content .contact-card.sticker * {
    color: inherit !important;
    text-decoration: none !important;
}

.sticker-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 5px !important;
    position: relative !important;
    z-index: 1 !important;
}

.sticker-icons {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0.8;
}

.sticker-id {
    font-family: var(--font-mono);
    font-size: 10px;
    opacity: 0.6;
}

.sticker-category {
    font-family: var(--font-mono) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    opacity: 0.8 !important;
    position: relative !important;
    z-index: 1 !important;
}

/* STICKER MAIN TEXT */
.sticker-main {
    font-family: 'Archivo', sans-serif;
    font-size: 34px;
    /* Slightly smaller for domains */
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
    line-height: 1;
    border-bottom: 2px solid currentColor;
    padding-bottom: 4px;
    text-transform: lowercase;
    /* Force lowercase */
    position: relative;
    z-index: 1;
}

.sticker-divider {
    height: 1px;
    background: currentColor;
    opacity: 0.15;
    margin: 4px 0;
}

/* STICKER INFO ROWS */
.sticker-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 8px 0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 8.5px;
    letter-spacing: 0.2px;
}

.info-row span:first-child {
    font-weight: 700;
    opacity: 0.8;
}

.info-row span:last-child {
    opacity: 0.6;
    text-transform: none;
    /* Keep handle case as provided */
}

/* ADVANCED BARCODE SYSTEM */
.sticker-barcode {
    margin-top: auto;
    height: 60px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    opacity: 0.6;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* STICKER QR CODE SYSTEM (REAL FIDELITY) */
.sticker-qr {
    margin-top: auto;
    width: 65px;
    height: 65px;
    position: relative;
    opacity: 0.7;
    transition: all 0.44s cubic-bezier(0.23, 1, 0.32, 1);
    align-self: flex-start;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Mounting border */
    background: rgba(255, 255, 255, 0.03);
    /* Subtle mounting floor */
    border-radius: 2px;
}

.sticker-qr img {
    width: 100%;
    height: 100%;
    display: block;
    image-rendering: auto;
    /* Smoother for QR API images */
    mix-blend-mode: screen;
    /* Inverts black background to reveal white modules */
    filter: brightness(1.5) contrast(1.2);
}

.contact-card.sticker:hover .sticker-qr {
    opacity: 1;
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
}

/* GLOBAL SITE SYSTEM LABEL */
/* GLOBAL SITE SYSTEM LABEL (HARDENED & SPACED) */
.site-system-label {
    position: fixed !important;
    right: 30px !important;
    bottom: 30px !important;
    left: auto !important;
    /* Force right corner */
    width: 300px !important;
    /* Slightly wider for a balanced horizontal look */
    background: rgba(0, 0, 0, 0.6) !important;
    /* Darker for better contrast */
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 4px !important;
    padding: 16px 20px !important;
    /* Balanced padding */
    z-index: 4000 !important;
    color: white !important;
    font-family: var(--font-mono) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    transition: all 0.4s ease !important;
    text-align: center !important;
    /* Initial centering attempt */
}

.site-system-label .sys-row {
    justify-content: center !important;
    /* Essential for horizontal centering */
}

.site-system-label:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.sys-row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 8px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.sys-row.credits {
    margin-top: 6px;
    gap: 15px;
    /* Slightly more gap for better link spacing */
}

.sys-status {
    color: #22c55e;
    opacity: 1;
}

.sys-sep {
    opacity: 0.3;
}

.sys-id {
    opacity: 0.5;
}

.credits-label {
    font-size: 8px;
    opacity: 0.4;
    white-space: nowrap;
}

.brand-item {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-size: 9px !important;
    opacity: 0.7 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    text-decoration: none !important;
    color: white !important;
}

.brand-item span {
    text-decoration: none !important;
    color: inherit !important;
}

.brand-item:hover {
    opacity: 1;
}

.brand-item svg {
    opacity: 0.6;
}

.sys-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    animation: pulseStatus 2s infinite;
}

@keyframes pulseStatus {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

/* STICKER MAIN TEXT */
.sticker-main {
    font-family: 'Archivo', sans-serif;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
    line-height: 1;
    border-bottom: 2px solid currentColor;
    padding-bottom: 4px;
    text-transform: lowercase;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* =========================================
   1:1 METALLIC HORIZONTAL OVERHAUL
   ========================================= */

.tech-island {
    position: fixed;
    top: 30px;
    left: 50%;
    /* Center properly */
    transform: translateX(-50%) translateY(-40px);
    z-index: 3000;
    pointer-events: none;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    height: 100px;
    width: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-island.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.island-glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 6-SCREW LAYOUT */
.screw {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle at 35% 35%, #f0f0f0, #999);
    border-radius: 50%;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.screw::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #333;
    transform: translateY(-50%) rotate(45deg);
}

.screw.top-left {
    top: 12px;
    left: 12px;
}

.screw.bottom-left {
    bottom: 12px;
    left: 12px;
}

.screw.top-mid {
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.screw.bottom-mid {
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.screw.top-right {
    top: 12px;
    right: 12px;
}

.screw.bottom-right {
    bottom: 12px;
    right: 12px;
}

/* ============================================================
   GLASS RECORDING APP OVERHAUL (iOS STYLE)
   ============================================================ */

.hardware-chassis.glass-app-overhaul {
    position: relative;
    z-index: 10;
    width: 360px;
    height: 180px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    color: white;
    user-select: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-island.active .island-glass {
    opacity: 0;
}

/* Hide legacy hardware components */
.hw-layout-main,
.hw-buttons-left,
.hw-btn,
.hw-side-fader-left,
.hw-display-area,
.oled-frame,
.oled-screen,
.fader-track,
.fader-handle,
.fader-led,
.screw {
    display: none !important;
}

.glass-app-display {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* TOP: HEADER & METADATA (Left Aligned with Visualizer) */
.glass-metadata-tier {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 25px;
    padding: 0 5px;
    margin-bottom: 8px;
}

.file-name {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.5px;
    color: white;
    opacity: 0.9;
}

/* MIDDLE: CYBER-OSCILLOSCOPE (WebGL Optimized) */
.advanced-visualizer-area {
    position: relative;
    height: 80px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #000;
    /* Pure black OLED base */
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
}


.oscilloscope-container {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0;
    /* Removed padding for perfect fit */
    position: relative;
    overflow: hidden;
    /* Prevent any bleed */
}

#viz-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Pause state for WebGL */
.oscilloscope-container.paused #viz-canvas {
    filter: grayscale(1) opacity(0.3);
}

/* BOTTOM: ADVANCED VOLUME SYSTEM */
.glass-controls-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
}

.advanced-volume-system {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    max-width: 180px;
}

.speaker-btn {
    background: none;
    border: none;
    color: white;
    width: 20px;
    height: 20px;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s;
}

.speaker-btn:hover {
    transform: scale(1.1);
}

.speaker-btn svg {
    width: 100%;
    height: 100%;
}

.spk-wave {
    transition: opacity 0.2s;
    opacity: 1;
}

.speaker-btn.muted .spk-wave {
    opacity: 0;
}

.speaker-btn.low .spk-w2,
.speaker-btn.low .spk-w3 {
    opacity: 0;
}

.speaker-btn.mid .spk-w3 {
    opacity: 0;
}

.custom-vol-pill {
    flex: 1;
    height: 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: ew-resize;
    padding: 0 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.vol-ticks-container {
    position: absolute;
    left: 6px;
    /* Extended to show about 3 more lines per side */
    right: 6px;
    height: calc(100% - 6px);
    top: 3px;
    background-image: repeating-linear-gradient(to right,
            rgba(255, 255, 255, 0.5),
            rgba(255, 255, 255, 0.5) 1px,
            transparent 1px,
            transparent 3px);
    pointer-events: none;
}

.vol-handle {
    position: absolute;
    left: 0;
    width: 14px;
    height: 26px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 5;
    pointer-events: none;
    transform: translateX(0);
}

.vol-percentage {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    min-width: 35px;
    opacity: 0.8;
}

.main-controls {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.glass-btn {
    flex: 1;
    height: 32px;
    max-width: 80px;
    border: 1.2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
}

.glass-btn svg {
    width: 14px;
    height: 14px;
}

/* Play/Pause Icon Toggle Fix */
.pause-btn .play-icon {
    display: none;
}

.pause-btn.is-paused .pause-icon {
    display: none;
}

.pause-btn.is-paused .play-icon {
    display: block;
}

/* Obsolete / Simplified Styles */
.player-tag,
.file-meta,
.glass-info-tier,
.glass-waveform-area,
.volume-control-box,
.secondary-info,
.vol-slider-hitbox,
.glass-btn-text,
.osc-svg {
    display: none !important;
}

/* TECH ISLAND SYNC */
.tech-island.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    width: 360px;
    height: 180px;
    border-radius: 20px;
}

/* Hide legacy hardware components */
.hw-layout-main,
.hw-buttons-left,
.hw-btn,
.hw-side-fader-left,
.hw-display-area,
.oled-frame,
.oled-screen,
.fader-track,
.fader-handle,
.fader-led {
    display: none !important;
}

/* Legacy Spotify styles removed for Local Audio transition */
.island-status,
.island-close {
    display: none;
}


/* DRAWER PLAY BUTTON */
.drawer-header-main {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.drawer-title {
    margin-bottom: 0;
    /* Align with button */
}

.drawer-play-btn {
    background: transparent;
    border: 1px solid white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-play-btn:hover {
    background: white;
    color: black;
}

.drawer-play-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    margin-left: 2px;
    /* Visual center adjustment for triangle */
}

/* OLD PLAY BUTTON STYLES REMOVED */
.archive-item:hover .play-btn {
    display: none;
}

/* =========================================
   CONFIG PANEL STYLES
   ========================================= */

#config-drawer {
    position: fixed;
    top: 50%;
    left: 80px;
    /* Right next to sidebar */
    transform: translateY(-50%) translateX(-40px);
    /* Deeper hide behind menu */
    width: 250px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(25px) saturate(160%);
    -webkit-backdrop-filter: blur(25px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 20px;
    z-index: 900;
    /* Below main menu (1000) and signature (1100) */
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.3);
    color: white;
}

#config-drawer.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

.config-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.config-header h3 {
    font-size: 11px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.config-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.5;
}

.config-section {
    margin-bottom: 20px;
}

.config-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.config-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 12px;
}

/* THEME GRID */
.theme-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.theme-btn {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background-size: 200% 200%;
}

.theme-btn:hover {
    transform: scale(1.05);
}

.theme-btn.active {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* SWITCH TOGGLE */
.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 18px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: rgba(255, 255, 255, 0.3);
}

input:checked+.slider:before {
    transform: translateX(16px);
}