*,
*::before,
*::after {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
}
body {
    all: unset;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
      Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
      "Yu Gothic", "YuGothic", Meiryo, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.7;
}
a {
    color: inherit;
    text-decoration: none;
}
.wrap {
    /* max-width: 980px; */
    margin: 0 auto;
    /* padding: 28px 16px; */
}
/* Top thin red line */
.topline {
    height: 6px;
    background: #d7232b;
}
/* Logo + heading */
.brand {
    text-align: center;
    margin: 22px 0 10px;
}
.brand .logo {
    font-size: 56px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #d7232b;
    font-family: "Helvetica Neue", Arial, sans-serif;
}
.brand .subtitle {
    font-size: 21px;
    color: #444;
    margin-top: 8px;
    font-weight: bold;
}
/* Age Gate */
.gate {
    text-align: center;
    background: #fcffcd;
    border: 1px solid #f7d98a;
    /* border-radius: 10px; */
    padding: 18px;
    margin: 24px 0;
}
.gate .cap {
    display: inline-block;
    /* background: #f5c16c; */
    color: #d7232b;
    font-weight: bold;
    /* font-size: 1.2rem; */
    /* padding: 6px 14px; */
    border-radius: 20px;
    font-size: 21px;
    /* margin-bottom: 10px; */
}
.bold {
    font-weight: bold;
}
.gate p {
    margin: 6px 0;
    text-align: center;
}
.gate .btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 8px;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    border: none;
}
.btn-yes {
    background: #d7232b;
    color: #fff;
}
.btn-no {
    background: #9ea0a4;
    color: #fff;
}
.btn:focus {
    outline: 3px solid rgba(215, 35, 43, 0.2);
}
/* Intro */
.intro {
    /* background: #fff; */
    border-radius: 10px;
    padding: 2px;
    /* border: 1px solid #eee; */
    text-align: center;
    margin: initial;
}
.intro p {
    margin-block-start: 1em;
    margin-block-end: 1em;
}
.intro strong {
    font-weight: 800;
}
/* Category box */
.catbox {
    margin: 28px auto;
    background: #fff;
    border-radius: 14px;
    border: 2px solid #d7232b;
    padding: 18px;
    max-width: 960px;
}
.catbox h3 {
    margin: 0 0 14px;
    font-size: 21px;
    text-align: center;
    border-top: initial;
    padding: initial;
    font-weight: bold;
}
.cats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
@media (min-width: 768px) {
    .cats {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 1024px) {
    .cats {
        grid-template-columns: repeat(4, 1fr);
    }
}
.cat {
    display: block;
    text-align: center;
    padding: 10px 8px;
    background: #f4f4f6;
    border-radius: 10px;
    /* border: 1px solid #e6e6ea; */
    font-weight: 600;
    font-size: 13px;
}
.cat:hover {
    background: #d7232b;
    color: #fff;
}
.cat.-active {
    background: #d7232b;
    color: #fff;
    border-color: #d7232b;
}
/* 4 features */
.features {
    display: grid;
    gap: 18px;
    margin: 48px auto;
    align-items: stretch;
    max-width: 800px;
}
@media (max-width: 639px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
}

@media (min-width: 640px) {
    .features {
        grid-template-columns: repeat(4, 1fr);
    }
}
.feat {
    background: #f4f4f4;
    border: 2px solid #9f9f9f;
    border-radius: 200px;
    padding: 20px;
    text-align: center;
    width: 160px;
}
.feat .ico {
    width: 54px;
    height: 54px;
    margin: 0 auto 8px;
}
.feat h4 {
    margin: 6px 0 0;
    font-size: 14px;
    font-weight: 800;
}
.feat p {
    margin: 2px 0 0;
    color: #666;
    font-size: 12px;
}
