html {
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #030712;
background: #22C1C3;
background: linear-gradient(0deg,rgba(34, 193, 195, 1) 0%, rgba(253, 187, 45, 1) 100%);
overflow-x: hidden;
}

content {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem;
    background-image: url('/assets/error.png');
    background-repeat: no-repeat;
    background-position: right;
}

content h2 {
    font-family: 'Courier New', Courier, monospace;
    cursor: move;
    border-bottom: 1px solid #000;
    padding-bottom: 0.5rem;
}

content > div {
    border: 0px solid #000;
    padding: 1rem;
    margin-bottom: 1rem;
    width: 33%;
    background-color: #FBEFEF;
}

content > div > ul > li {
    margin-bottom: 0.3rem;
}

content > div > ul > li a {
    text-decoration: none;
}

content > div > ul > li a:hover {
text-decoration: underline;
}

.ghost {
    opacity: 0.5;
}

header {
    background: #000;
    margin-top: 0px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header h1 {
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    padding: 1rem;
    font-size: 1rem;
    margin: 0;
    text-transform: lowercase;
    text-align: left;
    width: 30%;
}


header h1 a,
header h1 a:visited,
header h1 a:hover,
header h1 a:active,
header h1 a:focus {
    text-decoration: none;
    color: #fafafa;
}

header > div {
    width: 40%;
    text-align: right;
}

footer {
    text-align: right;
    padding: 2rem;
    color: #fff
}

.lock-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.lock-checkbox input {
  display: none;
}

.icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #030712;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.2s, transform 0.15s;
}

.icon::before {
  content: "🔓";
}

.lock-checkbox input:checked + .icon::before {
  content: "🔒";
}

.lock-checkbox input:checked + .icon {
  background: #030712;
}

.lock-checkbox:hover .icon {
  transform: scale(1.05);
}

#lock-notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 9999;
}

#lock-notification.show {
  opacity: 1;
}


@media (max-width: 1024px) {

    content {
        background-image: none;
    }

    header h1 {
        width: 50%;
        font-size: 0.9rem;
    }


    content > div {
        width: 100%;
    }
}

@media (max-width: 768px) {
    content {
        flex-direction: column;
        align-items: flex-start
    }

    content > div {
        width: 90%;
    }

    footer {
        text-align: center;
    }
}