*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.6;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 404 CONTENT */
body:has(div.error-404-content) #block-synnfulgirls-page-title {display: none !important;}
.error-404-content{
    max-width:700px;
    margin:70px auto;
    text-align:center;
}


/* BREADCRUMBS */
div.layout-breadcrumb {
  max-width: 1280px;
  margin:0 auto;
  padding: 1rem;
}
.error-number{
    font-size:7rem;
    font-weight:800;
    line-height:1;
    color:#ff4d88;
    text-shadow:0 0 20px rgba(255,77,136,.25);
    margin-bottom:.5rem;
}

.error-tagline{
    font-size:1.6rem;
    font-weight:600;
    margin-bottom:1rem;
}

.error-actions{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin:35px 0;
}

.error-actions a{
    display:inline-block;
    padding:12px 22px;
    border-radius:50px;
    background:#ff4d88;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.25s;
}

.error-actions a:hover{
    background:#ff6ea1;
    transform:translateY(-2px);
}

.error-actions a:nth-child(even){
    background:#2a2a2a;
}

.error-actions a:nth-child(even):hover{
    background:#444;
}

.small{
    color:#999;
    font-size:.95rem;
}

.error-404-content hr{
    margin:40px auto;
    width:120px;
    border:none;
    border-top:1px solid #333;
}