/*
 * win95.css — authentic Windows 95 skin for the desktop overlay.
 * Self-contained: dynamic CSS var from body, all colors classic.
 * Any -webkit-scrollbar corners: intentional. Outset shadows: 2-color hard
 * split (topleft light, bottomright dark) — that's how real win95 cells read.
 */

:root {
    --w95-face: #c0c0c0;
    --w95-face-hi: #dfdfdf;
    --w95-face-sh: #808080;
    --w95-face-dk: #0a0a0a;
    --w95-blue: #000080;
    --w95-text: #000000;
    --w95-desktop: #008080;
    --w95-font: "Pixelated MS Sans Serif", "Microsoft Sans Serif", Tahoma, Geneva, sans-serif;
    --w95-font-size: 11px;
}

/* --- overlay scaffolding --------------------------------------------------- */
#w95-root {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9000;
    display: block;
    font-family: var(--w95-font);
    font-size: var(--w95-font-size);
    line-height: 1.4;
    color: var(--w95-text);
    -webkit-font-smoothing: none;
    text-rendering: optimizeSpeed;
    image-rendering: pixelated;
}
/* The [hidden] attribute must beat the display:block above — before the first
   boot this overlay is inert and must never intercept clicks meant for the page. */
#w95-root[hidden] { display: none; }
#w95-root[test-pattern] {
    /* init/load state: solid post-pms black, subtly flickering like a CRT boot */
    background:
        linear-gradient(0deg, rgba(20,20,28,0.88), rgba(20,20,28,0.88)),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 3px);
    animation: w95-crt-on 0.45s ease-out;
}

/* classic button states shared by everything */
.w95-btn {
    font-family: inherit;
    font-size: inherit;
    background: var(--w95-face);
    color: var(--w95-text);
    border: 2px solid;
    border-color: var(--w95-face-hi) var(--w95-face-sh) var(--w95-face-sh) var(--w95-face-hi);
    box-shadow: inset 1px 1px #fff, inset -1px -1px var(--w95-face-dk);
    padding: 4px 10px;
    cursor: pointer;
    white-space: nowrap;
}
.w95-btn:active, .w95-btn.w95-active {
    border-color: #fff #fff #fff #fff; /* inverted border on press */
    border-color: var(--w95-face-dk) #fff #fff var(--w95-face-dk);
    box-shadow: inset -1px -1px #fff, inset 1px 1px var(--w95-face-sh);
    transform: translate(1px, 1px);
}
.w95-btn:focus-visible { outline: 1px dotted #000; outline-offset: 2px; }

/* raised/etched wells */
.w95-well { background: var(--w95-face); border: 2px solid;
    border-color: var(--w95-face-sh) #fff #fff var(--w95-face-sh); }
.w95-well-inset { background: #fff; border: 2px solid;
    border-color: var(--w95-face-sh) #fff #fff var(--w95-face-sh); }

/* --- DOS boot screen -------------------------------------------------------- */
.w95-boot {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #010108;
    color: #c0c0c0;
    padding: 36px 44px;
    font-size: 12px;
    line-height: 1.55;
    white-space: pre;
    overflow: hidden;
    animation: none;
}
.w95-boot .blink { animation: w95-caret 0.9s steps(1) infinite; }
@keyframes w95-caret { 50% { opacity: 0; } }

/* --- desktop --------------------------------------------------------------- */
.w95-desktop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--w95-desktop);
    /* faint dither so the teal reads era-authentic rather than flat */
    background-image:
        radial-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
        radial-gradient(rgba(0,0,0,0.10) 1px, transparent 1px);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
    overflow: hidden;
}

/* desktop icons */
.w95-icons { position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; gap: 20px; }
.w95-icon {
    width: 88px;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    background: none; border: none; cursor: pointer;
    font-family: inherit; font-size: inherit;
    color: #fff; text-shadow: 1px 1px #000;
    padding: 6px 4px;
    outline: none;
}
.w95-icon.engrave {
    outline: 1px dotted #fff;
    outline-offset: -1px;
}
.w95-icon .glyph {
    font-size: 26px; line-height: 1;
    width: 34px; height: 34px;
    display: grid; place-items: center;
    filter: drop-shadow(1px 1px 0 #000);
}
.w95-icon:focus-visible .glyph, .w95-icon:hover .glyph { filter: drop-shadow(0 0 4px #ffd47e) drop-shadow(1px 1px 0 #000); }

/* --- windows ---------------------------------------------------------------- */
.w95-window {
    position: absolute;
    background: var(--w95-face);
    border: 2px solid;
    border-color: var(--w95-face-hi) var(--w95-face-sh) var(--w95-face-sh) var(--w95-face-hi);
    box-shadow: inset 1px 1px #fff, inset -1px -1px var(--w95-face-dk), 4px 4px 12px rgba(0,0,0,0.45);
    padding: 3px;
    display: flex; flex-direction: column;
    min-width: 280px;
    min-height: 180px;
}
.w95-window.w95-max {
    border: none; box-shadow: none;
    top: 0 !important; left: 0 !important;
    width: 100% !important; height: calc(100% - 32px) !important; /* clear the taskbar */
}
.w95-titlebar {
    display: flex; align-items: center; gap: 6px;
    background: var(--w95-face-sh); /* inactive */
    color: #c0c0c0;
    padding: 3px 4px;
    font-weight: 700;
    cursor: grab;
    user-select: none;
    touch-action: none;
}
.w95-window.w95-active .w95-titlebar {
    background: linear-gradient(90deg, var(--w95-blue), #1084d0);
    color: #fff;
    cursor: default;
}
.w95-titlebar .tb-ico { font-size: 13px; }
.w95-titlebar .tb-text { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.w95-titlebar .tb-btns { display: flex; gap: 2px; }
.w95-tbtn {
    width: 16px; height: 14px;
    display: grid; place-items: center;
    background: var(--w95-face);
    border: 1px solid; border-color: var(--w95-face-hi) var(--w95-face-sh) var(--w95-face-sh) var(--w95-face-hi);
    font-size: 9px; font-weight: 900; line-height: 1;
    cursor: pointer; color: #000;
}
.w95-tbtn:active { border-color: var(--w95-face-dk) #fff #fff var(--w95-face-dk); }

.w95-body {
    background: #fff;
    flex: 1;
    overflow: auto;
    padding: 8px;
    margin-top: 3px;
    border: 1px solid; border-color: var(--w95-face-sh) #fff #fff var(--w95-face-sh);
}
.w95-body.w95-term {
    background: #051005;
    color: #7CFC94;
    font-family: var(--font-mono, monospace);
    font-size: 11px; line-height: 1.5;
    padding: 10px;
}
.w95-statusbar {
    background: var(--w95-face);
    border-top: 1px solid #fff;
    margin-top: 3px;
    padding: 3px 6px;
    font-size: 10px;
    display: flex; gap: 10px;
}
.w95-statusbar .cell { border: 1px solid; border-color: var(--w95-face-sh) #fff #fff var(--w95-face-sh); padding: 0 6px; }

/* explorer layout */
.w95-expl { display: grid; grid-template-columns: 140px 1fr; flex: 1; min-height: 0; }
.w95-expl .tree { padding: 6px; border-right: 1px solid #808080; overflow: auto; background: #fff; }
.w95-expl .tree div.w95-sel { background: #cfe8cf; }
.w95-expl .list { padding: 6px 10px; overflow: auto; background: #fff; }
.w95-expl .frow {
    display: flex; align-items: center; gap: 8px;
    padding: 3px 4px; cursor: pointer;
}
.w95-expl .frow:hover { background: #cfe8cf; }
.w95-expl .frow.w95-sel { background: var(--w95-blue); color: #fff; }
/* explorer toolbar */
.w95-expl-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 3px 4px;
    background: var(--w95-face);
    border-bottom: 2px solid;
    border-color: var(--w95-face-sh) #fff #fff var(--w95-face-sh);
}
.w95-expl-bar .w95-btn { padding: 2px 8px; }
.w95-expl-bar .fpath {
    font-size: inherit; color: var(--w95-text);
    background: #fff; border: 1px solid var(--w95-face-sh);
    padding: 1px 6px; flex: 1;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* notepad: menu + editable page */
.w95-nt-wrap { display: flex; flex-direction: column; height: 100%; min-height: 0; }
.w95-menu {
    background: var(--w95-face);
    border-bottom: 2px solid;
    border-color: var(--w95-face-sh) #fff #fff var(--w95-face-sh);
    padding: 1px 2px;
    display: flex; gap: 2px;
}
.w95-menu .menu-title {
    position: relative;
    padding: 3px 9px; cursor: default;
    border: 1px solid transparent;
}
.w95-menu .menu-title:hover { background: #ddd; }
.w95-menu .menu-title .menu-drop {
    display: none;
    position: absolute; left: 0; top: 100%;
    min-width: 132px;
    background: var(--w95-face);
    border: 2px solid;
    border-color: var(--w95-face-hi) var(--w95-face-sh) var(--w95-face-sh) var(--w95-face-hi);
    box-shadow: 2px 2px 6px rgba(0,0,0,0.45);
    z-index: 5;
    padding: 1px;
}
.w95-menu .menu-title .menu-drop.open { display: block; }
.w95-menu .menu-item { padding: 4px 12px; cursor: default; white-space: nowrap; }
.w95-menu .menu-item:hover { background: var(--w95-blue); color: #fff; }
.w95-menu .menu-sep { height: 1px; background: var(--w95-face-sh); margin: 2px 6px; box-shadow: 0 1px #fff; }

.w95-body textarea.w95-nt-main {
    width: 100%; height: 100%;
    box-sizing: border-box;
    flex: 1;
    border: none; outline: none; resize: none;
    background: #fff; color: #000;
    font-family: var(--w95-font); font-size: var(--w95-font-size);
    line-height: 1.5;
    padding: 3px 4px;
}

/* find dialog results */
.w95-find .results {
    background: #fff;
    border: 2px solid;
    border-color: var(--w95-face-sh) #fff #fff var(--w95-face-sh);
    max-height: 128px; overflow: auto; padding: 2px;
}
.w95-find .hit { padding: 3px 6px; cursor: pointer; }
.w95-find .hit:hover { background: #cfe8cf; }
.w95-find .hit.w95-sel { background: var(--w95-blue); color: #fff; }

/* generic well-backed form fields (Run / Find) */
.w95-inp {
    font-family: inherit; font-size: inherit;
    background: #fff; color: var(--w95-text);
    border: 2px solid; border-color: var(--w95-face-sh) #fff #fff var(--w95-face-sh);
    padding: 3px 4px;
}
.w95-inp:focus { outline: none; }

/* --- DOS shell ------------------------------------------------------------- */
.w95-term {
    display: flex; flex-direction: column;
    height: 100%;
    background: #000;
    color: #c0c0c0;
    font: inherit;
}
.w95-dos-log {
    flex: 1; margin: 0; padding: 10px 12px 4px;
    white-space: pre-wrap; overflow-y: auto;
    font-size: 11px; line-height: 1.55;
    background: #000; color: #c0c0c0;
}
.w95-dos-log .dim  { color: #7a7a7a; }
.w95-dos-log .dir  { color: #ffff55; }
.w95-dos-log .white { color: #fff; font-weight: 700; }
.w95-dos-line {
    display: flex; align-items: center;
    padding: 0 12px 10px;
}
.w95-dos-prompt { color: #c0c0c0; white-space: pre; }
.w95-dos-input {
    flex: 1; background: transparent; border: none; outline: none;
    color: #c0c0c0; font: inherit; caret-color: #c0c0c0;
}
.w95-dos-input::selection { background: #555; }

/* control panel / applets */
.w95-ctrl { display: flex; gap: 22px; padding: 12px; }
.w95-cp-icon {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    width: 92px; padding: 10px 4px 8px;
    background: none; border: none; cursor: pointer;
    font-family: inherit; font-size: inherit; color: #000;
}
.w95-cp-icon .glyph { font-size: 26px; line-height: 1; }
.w95-cp-icon:hover { background: #dfdfdf; }
.w95-cp-icon:active { background: #c8c8c8; }
.w95-prop { padding: 12px 14px; }
.w95-prop .swatch {
    width: 26px; height: 22px;
    border: 2px solid; border-color: var(--w95-face-hi) var(--w95-face-sh) var(--w95-face-sh) var(--w95-face-hi);
    cursor: pointer; padding: 0;
}
.w95-radio { display: flex; align-items: center; gap: 8px; padding: 3px 2px; cursor: default; }
.w95-radio input { accent-color: var(--w95-blue); }
.shut-row { margin: 2px 0; }

/* desktop icons: selected state (single-click, like the real thing) */
.w95-icon.w95-sel { outline: 1px dashed rgba(255,255,255,0.85); outline-offset: -1px; }

/* start menu */
.w95-taskbar {
    position: absolute; right: 0; bottom: 0; left: 0;
    height: 30px;
    background: var(--w95-face);
    border-top: 1px solid #fff;
    display: flex; gap: 2px; align-items: center;
    padding: 2px;
    z-index: 500;
}
.w95-start {
    display: flex; align-items: center; gap: 5px;
    font-weight: 900;
    padding: 3px 8px 2px 4px;
}
.w95-start .win-flag { font-size: 13px; }
.w95-tasks { flex: 1; display: flex; gap: 2px; overflow: hidden; }
.w95-task {
    display: flex; align-items: center; gap: 4px;
    max-width: 160px;
    padding: 3px 6px;
    border: 2px solid; border-color: var(--w95-face-hi) var(--w95-face-sh) var(--w95-face-sh) var(--w95-face-hi);
    box-shadow: inset 1px 1px #fff, inset -1px -1px var(--w95-face-dk);
    background: var(--w95-face);
    cursor: pointer;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.w95-task.w95-active { border-color: var(--w95-face-dk) #fff #fff var(--w95-face-dk); background: var(--w95-face-hi); }
.w95-tray {
    display: flex; align-items: center; gap: 8px;
    border-left: 2px solid; border-color: var(--w95-face-sh) #fff #fff var(--w95-face-sh);
    padding: 2px 8px 2px 10px;
}
.w95-tray .clock { font-variant-numeric: tabular-nums; }

.w95-startmenu {
    position: absolute;
    left: 2px; bottom: 30px;
    width: 168px;
    background: var(--w95-face);
    border: 2px solid;
    border-color: var(--w95-face-hi) var(--w95-face-sh) var(--w95-face-sh) var(--w95-face-hi);
    box-shadow: 2px 2px 8px rgba(0,0,0,0.45);
    z-index: 600;
    padding: 2px;
    display: none;
}
/* the overlay element is #w95-root (id), not a class — the click handler in
   win95.js toggles .open, this rule is what makes that visible at all */
#w95-root .w95-startmenu.open { display: block; }
.w95-startmenu .sm-item {
    display: flex; align-items: center; gap: 10px;
    padding: 6px 8px;
    cursor: pointer;
    font-size: 12px;
}
.w95-startmenu .sm-item:hover { background: var(--w95-blue); color: #fff; }
.w95-startmenu .sm-sep { height: 1px; background: var(--w95-face-sh); margin: 2px 24px 2px 4px; box-shadow: 0 1px #fff; }

/* cascading submenu (Programs ▸ Accessories ▸ …) */
.w95-startmenu .sm-item { position: relative; }
.w95-startmenu .sm-item .sm-arrow { margin-left: auto; color: inherit; }
.w95-startmenu .sm-cascade {
    display: none;
    position: absolute; left: 100%; top: -2px;
    min-width: 148px;
    background: var(--w95-face);
    border: 2px solid;
    border-color: var(--w95-face-hi) var(--w95-face-sh) var(--w95-face-sh) var(--w95-face-hi);
    box-shadow: 2px 2px 8px rgba(0,0,0,0.45);
    padding: 2px;
    z-index: 601;
}
.w95-startmenu .sm-parent:hover > .sm-cascade,
.w95-startmenu .sm-cascade.open { display: block; }
.w95-startmenu .sm-cascade .sm-item { white-space: nowrap; }

/* CRT power-on flash */
.w95-flash {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #dfffe9;
    opacity: 0;
    animation: w95-flash 0.5s linear forwards;
    pointer-events: none;
}
@keyframes w95-flash {
    0% { opacity: 0; transform: scaleY(0.004); }
    45% { opacity: 1; transform: scaleY(1); }
    100% { opacity: 0; transform: scaleY(1); }
}
@keyframes w95-crt-on {
    0% { transform: scaleY(0.002); opacity: 0; }
    70% { transform: scaleY(1.03); opacity: 1; }
    100% { transform: scaleY(1); opacity: 1; }
}

/* shutdown (safe-to-power-off) */
.w95-safeoff {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    display: grid;
    place-items: center;
    color: #e56f0f;
    font-weight: 700;
    text-align: center;
}
.w95-safeoff .frame {
    background: #000; color: #fff;
    border: 2px solid #fff;
    padding: 18px 26px;
}
.w95-safeoff .amber { color: #e56f0f; }

/* responsive: small screens get fullscreen everything */
@media (max-width: 760px) {
    .w95-window { max-width: 92vw; max-height: 80vh; }
}

/* ============ NEW APPS ============ */

/* calculator */
.w95-calc { display: flex; flex-direction: column; gap: 6px; height: 100%; }
.calc-display {
    background: #fff;
    border: 2px solid;
    border-color: var(--w95-face-sh) #fff #fff var(--w95-face-sh);
    padding: 6px 8px;
    text-align: right;
    font-size: 18px;
    font-family: var(--w95-font);
    height: 32px;
    overflow: hidden;
}
.calc-pad { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; flex: 1; }
.calc-key { padding: 0; font-size: 13px; font-weight: 700; }
.calc-key:active { transform: translate(1px, 1px); }

/* minesweeper */
.w95-mines { display: flex; flex-direction: column; gap: 5px; height: 100%; }
.mines-top {
    display: flex; justify-content: space-between; align-items: center;
    background: var(--w95-face);
    border: 2px solid; border-color: var(--w95-face-sh) #fff #fff var(--w95-face-sh);
    padding: 3px 6px;
}
.mines-count, .mines-timer {
    font-family: monospace; font-weight: 900; font-size: 14px; color: #f00;
    background: #000; padding: 0 4px;
}
.mines-face { font-size: 18px; line-height: 1; padding: 1px 6px; background: var(--w95-face);
    border: 2px solid; border-color: var(--w95-face-hi) var(--w95-face-sh) var(--w95-face-sh) var(--w95-face-hi); cursor: pointer; }
.mines-face:active { border-color: var(--w95-face-dk) #fff #fff var(--w95-face-dk); }
.mines-grid {
    display: grid; grid-template-columns: repeat(9, 18px); grid-auto-rows: 18px;
    gap: 0; margin: 0 auto; background: #808080;
    border: 2px solid; border-color: var(--w95-face-sh) #fff #fff var(--w95-face-sh);
}
.mcell {
    width: 18px; height: 18px;
    font-size: 11px; font-weight: 900; line-height: 1; text-align: center;
    background: var(--w95-face); border: 2px solid;
    border-color: #fff var(--w95-face-sh) var(--w95-face-sh) #fff;
    cursor: pointer; padding: 0;
}
.mcell.open { border: 1px solid var(--w95-face-sh); background: #c8c8c8; cursor: default; }
.mcell.n1 { color: #0000ff; } .mcell.n2 { color: #008000; } .mcell.n3 { color: #ff0000; }
.mcell.n4 { color: #000080; } .mcell.n5 { color: #800000; } .mcell.n6 { color: #008080; }
.mcell.boom { background: #f00; }

/* paint */
.w95-paint { display: flex; flex-direction: column; gap: 5px; height: 100%; }
.paint-bar { display: flex; flex-direction: column; gap: 4px; }
.paint-swatches { display: flex; gap: 2px; flex-wrap: wrap; }
.paint-swatches .swatch { width: 18px; height: 16px; border: 2px solid;
    border-color: var(--w95-face-hi) var(--w95-face-sh) var(--w95-face-sh) var(--w95-face-hi); cursor: pointer; padding: 0; }
.paint-swatches .swatch.sel { outline: 2px solid #000; outline-offset: -2px; }
.paint-tools { display: flex; gap: 3px; }
.paint-tools .w95-btn { padding: 2px 7px; }
.paint-canvas {
    flex: 1; width: 100%; background: #fff; cursor: crosshair;
    border: 2px solid; border-color: var(--w95-face-sh) #fff #fff var(--w95-face-sh);
    touch-action: none;
}

/* solitaire */
.w95-sol { height: 100%; }
.sol-felt {
    background: #007a33; /* classic felt green */
    padding: 8px;
    height: 100%; box-sizing: border-box;
    overflow: auto;
}
.sol-row { display: flex; gap: 10px; margin-bottom: 10px; align-items: flex-start; }
.sol-gap { flex: 0 0 56px; }
.sol-tab { align-items: flex-start; }
.sol-pile { display: flex; flex-direction: column; gap: 0; }
.solcard {
    width: 44px; height: 60px;
    background: #fff; color: #000;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 13px; font-weight: 900;
    display: grid; place-items: center;
    user-select: none;
    box-sizing: border-box;
    position: relative;
}
/* face-down cards fan out with a sliver showing; face-up stack a bit tighter */
.sol-pile .solcard:not(.up) + .solcard { margin-top: -46px; }
.sol-pile .solcard.up + .solcard.up { margin-top: -40px; }
.sol-pile .solcard:first-child { margin-top: 0; }
.solcard:not(.up) { background: repeating-linear-gradient(45deg, #000080, #000080 3px, #2828e0 3px, #2828e0 6px); color: transparent; }
.solcard.red { color: #d00; }
.solcard.slot {
    background: rgba(0,0,0,0.18); color: rgba(255,255,255,0.5);
    border: 1px dashed rgba(255,255,255,0.4);
}
.solcard.stock { cursor: pointer; }
.solcard.stock:hover { filter: brightness(1.15); }
.solcard.slot.waste, .solcard.slot.found { background: rgba(0,0,0,0.18); }

/* character map */
.w95-charmap { display: flex; flex-direction: column; gap: 6px; height: 100%; }
.charmap-grid {
    flex: 1; overflow: auto;
    display: grid; grid-template-columns: repeat(auto-fill, 26px);
    gap: 2px; padding: 2px;
    background: #fff; border: 2px solid;
    border-color: var(--w95-face-sh) #fff #fff var(--w95-face-sh);
}
.cmcell {
    width: 26px; height: 24px;
    font-size: 13px; line-height: 1;
    background: #fff; color: #000;
    border: 1px solid #c0c0c0;
    cursor: pointer; padding: 0;
}
.cmcell:hover { background: #cfe8cf; }
.cmcell:active { background: var(--w95-blue); color: #fff; }
.charmap-preview {
    font-size: 34px; text-align: center; height: 42px; line-height: 42px;
    background: var(--w95-face);
    border: 1px solid var(--w95-face-sh);
}
.charmap-foot { display: flex; gap: 4px; align-items: center; }

/* internet explorer */
.w95-ie { display: flex; flex-direction: column; height: 100%; }
.ie-bar {
    display: flex; align-items: center;
    background: var(--w95-face);
    border-bottom: 2px solid;
    border-color: var(--w95-face-sh) #fff #fff var(--w95-face-sh);
    padding: 3px 6px;
    font-size: var(--w95-font-size);
}
.ie-view { flex: 1; background: #fff; overflow: auto; }
.ie-progress { display: flex; gap: 3px; width: 120px; height: 16px; }
.ie-block { flex: 1; background: #000080; opacity: 0; animation: ie-load 1.6s steps(1) infinite; }
.ie-block:nth-child(2) { animation-delay: 0.2s; } .ie-block:nth-child(3) { animation-delay: 0.4s; }
.ie-block:nth-child(4) { animation-delay: 0.6s; } .ie-block:nth-child(5) { animation-delay: 0.8s; }
@keyframes ie-load { 0% { opacity: 1; } 50% { opacity: 0; } }
