/*
Theme Name: MyTheme
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

html, body{
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}


:root{
  --bg:#2f2f2f;
  --text:#000000;
  --muted:#cfcfcf;
  --accent:#f5c12d;
  --accent-2:#f0b400;
  --btn-text:#111111;
  --container: 1240px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
a{ color:inherit; text-decoration:none; }
img{ display:block; max-width:100%; }

.site-header{
  background:var(--bg);
  color:var(--text);
}

.header-inner{
  max-width:var(--container);
  margin:0 auto;
  padding:14px 18px;
  display:flex;
  align-items:center;
  gap:28px;
}

.brand{
  display:flex;
  align-items:center;
  min-width:190px;
}

.brand-logo{
  width:170px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  font-weight:800;
  letter-spacing:0.5px;
  color:var(--accent);
}

.nav{
  flex:1;
}

.nav-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:34px;
  align-items:center;
}

.nav-list a{
  font-weight:700;
  font-size:20px;
  line-height:1;
  color:white;
  opacity:0.95;
}

.nav-list a:hover{
  opacity:1;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.btn{
  height:48px;
  padding:0 22px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:20px;
  line-height:1;
  white-space:nowrap;
}

.btn-outline{
  border:2px solid var(--accent);
  color:var(--accent);
  background:transparent;
}

.btn-solid{
  border:2px solid var(--accent);
  background:var(--accent);
  color:var(--btn-text);
}

.help{
  display:flex;
  align-items:center;
  gap:10px;
  margin-left:6px;
}

.help-icon{
  width:40px;
  height:40px;
  border-radius:999px;
  background:var(--accent);
  position:relative;
}

.help-icon:before{
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  width:18px;
  height:18px;
  border-radius:999px;
  background:transparent;
  box-shadow: inset 0 0 0 3px rgba(0,0,0,0.25);
}

.help-text{
  font-weight:700;
  color:var(--text);
  opacity:0.95;
}

.burger{
  width:48px;
  height:48px;
  border:0;
  background:transparent;
  padding:0;
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  cursor:pointer;
}

.burger span{
  width:28px;
  height:3px;
  background:#ffffff;
  border-radius:2px;
}








  .hero{
    position:relative;
    width:100%;
    background:#111;
    overflow:hidden;
  }

  .hero-viewport{
    width:100%;
    overflow:hidden;
  }

  .hero-track{
    display:flex;
    transform:translate3d(0,0,0);
    transition:transform .5s ease;
    will-change:transform;
  }

  .hero-slide{
    flex:0 0 100%;
    position:relative;
  }

  .hero-slide img{
    display:block;
    width:100%;
    height:520px;
    object-fit:cover;
    filter:brightness(.82);
  }

  .hero-dots{
    position:absolute;
    left:50%;
    bottom:18px;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:5;
  }

  .hero-dot{
    width:10px;
    height:10px;
    padding:0;
    border:0;
    border-radius:999px;
    background:rgba(255,255,255,.35);
    cursor:pointer;
  }

  .hero-dot.is-active{
    background:rgba(245,193,45,.95);
  }

  .hero-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    border:0;
    border-radius:999px;
    background:rgba(0,0,0,.35);
    cursor:pointer;
    z-index:6;
  }

  .hero-btn:hover{
    background:rgba(0,0,0,.5);
  }

  .hero-btn:before{
    content:"";
    position:absolute;
    inset:0;
    margin:auto;
    width:10px;
    height:10px;
    border-right:3px solid rgba(255,255,255,.92);
    border-bottom:3px solid rgba(255,255,255,.92);
  }

  .hero-btn-prev{ left:18px; }
  .hero-btn-prev:before{ transform:rotate(135deg); }

  .hero-btn-next{ right:18px; }
  .hero-btn-next:before{ transform:rotate(-45deg); }

  .hero-btn[disabled]{
    opacity:.35;
    cursor:default;
  }

  @media (max-width: 768px){
    .hero-slide img{ height:clamp(220px, 58vw, 380px); }
    .hero-btn{ width:46px; height:46px; }
  }

.site-footer{
  background: var(--bg);
  color:#fff;
}

.footer-top{
  padding:26px 0 34px;
}

.footer-container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 18px;
}

.footer-logos{
  margin-bottom:18px;
}

.slider{
  overflow:hidden;
  position:relative;
  padding:10px 0;
  --marquee-duration: 32s;
  --marquee-shift: 0px;
}

.slider::before,
.slider::after{
  content:none;
}

.slider .slide-track{
  display:flex;
  align-items:center;
  gap:20px;
  width:max-content;
  will-change:transform;
  transform:translate3d(0,0,0);
  animation: footer-scroll var(--marquee-duration) linear infinite;
}

@keyframes footer-scroll{
  0%{ transform: translate3d(0,0,0); }
  100%{ transform: translate3d(calc(-1 * var(--marquee-shift)), 0, 0); }
}

.slider .slide{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

.slider .slide img{
  width:auto;
  height:auto;
  max-height:28px;
  max-width:90px;
  object-fit:contain;
  display:block;
  opacity:0.9;
}

.slider .slide img:hover{
  opacity:1;
}

.footer-disclaimer{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,0.12);
}

.age-badge{
  flex:0 0 auto;
  width:56px;
  height:56px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#111;
  color:#fff;
  font-weight:900;
  font-size:18px;
  line-height:1;
}

.footer-text-wrap{
  min-width:0;
}

.footer-text{
  margin:0;
  color:rgba(255,255,255,0.78);
  font-size:14px;
  line-height:1.45;
  max-width:980px;
}

.footer-copy{
  margin:10px 0 0;
  color:rgba(255,255,255,0.92);
  font-size:14px;
  font-weight:700;
}

@media (max-width: 768px){
  .footer-disclaimer{
    flex-direction:column;
    gap:10px;
  }

  .age-badge{
    width:52px;
    height:52px;
    border-radius:12px;
  }

  .slider{
    --marquee-duration: 26s;
  }

  .slider .slide-track{
    gap:16px;
  }

  .slider .slide img{
    max-height:22px;
    max-width:80px;
  }
}

.casino-tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.casino-tile img {
  display: block;
  width: 100%;
  height: auto;
}

.casino-tile::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 52px;
  background: #ffcc2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tile-pragmatic::after {
  content: "PRAGMATIC PLAY";
}

.tile-triple::after {
  content: "TRIPLE CHERRY";
}

.tile-live::after {
  content: "LIVE CASINO";
}

.tile-slots::after {
  content: "SLOTS";
}

.tile-promos::after {
  content: "PROMOS";
}

.tile-ka::after {
  content: "KA GAMING";
}

.hero {
  position: relative;
}

.hero-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
}

.hero-title h1 {
  color: #fff;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.2;
  max-width: 90%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1;
}














  .mic-banner {
    width: 100%;
    margin: 48px auto;
    background: radial-gradient(1200px 400px at 10% 0%, #2a0f3f, transparent 60%),
                radial-gradient(900px 420px at 90% 120%, #0f3a2a, transparent 65%),
                #0b0b12;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 30px 90px rgba(0,0,0,0.75);
    overflow: hidden;
    color: #f4f6ff;
    position: relative;
  }

  .mic-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 22px;
    padding: 30px;
    position: relative;
    z-index: 1;
    align-items: center;
  }

  .mic-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 720px;
  }

  .mic-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 900;
    color: #ffd6ff;
  }

  .mic-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #ff4fd8;
    box-shadow: 0 0 0 7px rgba(255,79,216,0.18);
  }

  .mic-title {
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffffff;
  }

  .mic-title span {
    color: #ff9bf5;
  }

  .mic-text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(244,246,255,0.82);
    max-width: 68ch;
  }

  .mic-right {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 22px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    justify-content: center;
  }

  .mic-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a0315;
    background: linear-gradient(90deg, #ff4fd8, #ff9bf5);
    box-shadow: 0 18px 46px rgba(255,79,216,0.35);
    transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
  }

  .mic-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(255,79,216,0.45);
    filter: brightness(1.05);
  }

  .mic-cta svg {
    width: 16px;
    height: 16px;
  }

  .mic-note {
    font-size: 12px;
    text-align: center;
    color: rgba(244,246,255,0.65);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
  }

  @media (max-width: 980px) {
    .mic-inner {
      grid-template-columns: 1fr;
      padding: 22px;
      text-align: center;
    }

    .mic-left {
      align-items: center;
    }

    .mic-right {
      width: 100%;
      max-width: 420px;
      margin: 0 auto;
    }

    .mic-title {
      font-size: 1.7rem;
    }
  }




















:root{
  --container: 1320px;
}

.site-main{
  padding: 24px 0 56px;
}

.container{
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 720px){
  .container{
    padding: 0 16px;
  }
}

.page-content{
  width: 100%;
}

.home-blog{
  margin-top: 44px;
  padding-top: 28px;
}

.home-blog-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 18px;
}

.home-blog-title{
  margin:0;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--text);
}

.home-blog-link{
  font-weight: 700;
  color: var(--accent);
  opacity: 0.95;
}

.home-blog-link:hover{
  opacity: 1;
}

.blog-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 980px){
  .blog-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .blog-grid{
    grid-template-columns: 1fr;
  }
}

.blog-card{
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.blog-card-media{
  display:block;
  background: rgba(0,0,0,0.22);
}

.blog-card-img{
  width:100%;
  height: 220px;
  object-fit: cover;
  display:block;
}

.blog-card-placeholder{
  width:100%;
  height: 220px;
  background: rgba(0,0,0,0.22);
}

.blog-card-body{
  padding: 14px 14px 16px;
  background: #484848;
}

.blog-card-meta{
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 8px;
}

.blog-card-title{
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.blog-card-title a{
  color: var(--text);
}

.blog-card-excerpt{
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,0.78);
  margin-bottom: 12px;
}

.blog-card-read{
  display:inline-flex;
  font-weight: 800;
  color: var(--accent);
}

.blog-card-read:hover{
  opacity: 0.95;
}










.cmp-table{
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cmp-table__table{
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.cmp-table__table thead th{
  padding: 14px 16px;
  text-align: left;
  font-weight: 800;
  font-size: 14px;
  color: rgba(0,0,0,.82);
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.02));
  border-bottom: 1px solid rgba(0,0,0,.10);
}

.cmp-table__table tbody th,
.cmp-table__table tbody td{
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(0,0,0,.08);
  vertical-align: middle;
}

.cmp-table__table tbody th{
  font-weight: 800;
  color: rgba(0,0,0,.78);
  background: rgba(0,0,0,.015);
  white-space: nowrap;
}

.cmp-table__table tbody td{
  color: rgba(0,0,0,.74);
}

.cmp-table__table tbody tr:nth-child(even) th,
.cmp-table__table tbody tr:nth-child(even) td{
  background: rgba(0,0,0,.02);
}

.cmp-table__table tbody tr:hover th,
.cmp-table__table tbody tr:hover td{
  background: rgba(0,0,0,.04);
}

.cmp-table__table tbody tr:last-child th,
.cmp-table__table tbody tr:last-child td{
  border-bottom: 0;
}

.cmp-table__table thead th + th,
.cmp-table__table tbody th + td,
.cmp-table__table tbody td + td{
  border-left: 1px solid rgba(0,0,0,.08);
}

.cmp-table__table thead th:nth-child(2){
  background: linear-gradient(180deg, rgba(56,189,248,.20), rgba(56,189,248,.08));
}

.cmp-table__table thead th:nth-child(3){
  background: linear-gradient(180deg, rgba(167,139,250,.20), rgba(167,139,250,.08));
}

.cmp-table__table tbody td:nth-child(2){
  background-image: linear-gradient(90deg, rgba(56,189,248,.10), transparent 55%);
  background-repeat: no-repeat;
}

.cmp-table__table tbody td:nth-child(3){
  background-image: linear-gradient(90deg, rgba(167,139,250,.10), transparent 55%);
  background-repeat: no-repeat;
}

@media (max-width: 640px){
  .cmp-table__table{
    border-radius: 14px;
    min-width: 680px;
  }

  .cmp-table__table thead th,
  .cmp-table__table tbody th,
  .cmp-table__table tbody td{
    padding: 12px 12px;
    font-size: 13px;
  }
}









.faq{
  width: 100%;
}

.faq__wrap{
  width: 100%;
}

.faq__list{
  width: 100%;
  display: grid;
  gap: 12px;
}

.faq__item{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow:
    0 10px 24px rgba(0,0,0,.08),
    0 1px 0 rgba(0,0,0,.04) inset;
}

.faq__q{
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(0,0,0,.82);
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.02));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.faq__item[open] .faq__q{
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.02));
}

.faq__q::-webkit-details-marker{
  display: none;
}

.faq__icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
  position: relative;
  flex: 0 0 auto;
}

.faq__icon::before,
.faq__icon::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: rgba(0,0,0,.62);
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

.faq__icon::after{
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item[open] .faq__icon::after{
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__a{
  padding: 12px 16px 16px;
}

.faq__aInner{
  color: rgba(0,0,0,.74);
  font-size: 14px;
  line-height: 1.6;
}

.faq__item:hover{
  border-color: rgba(0,0,0,.18);
}

.faq__item:focus-within{
  outline: 2px solid rgba(56,189,248,.45);
  outline-offset: 3px;
}

@media (max-width: 640px){
  .faq__list{
    gap: 10px;
  }

  .faq__q{
    padding: 12px 12px;
    font-size: 13px;
  }

  .faq__a{
    padding: 10px 12px 14px;
  }

  .faq__aInner{
    font-size: 13px;
  }

  .faq__icon{
    width: 32px;
    height: 32px;
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: no-preference){
  .faq__item{
    transition: border-color .15s ease, box-shadow .15s ease;
  }

  .faq__icon::after{
    transition: transform .15s ease;
  }
}
















.archive-head{
  margin: 10px 0 18px;
}

.archive-title{
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
  color: var(--text);
}

.archive-desc{
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.45;
  max-width: 980px;
}

.pagination{
  margin-top: 22px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}

.pagination-item a,
.pagination-item span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:44px;
  height:44px;
  padding:0 14px;
  border-radius:12px;
  font-weight:800;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.pagination-item a:hover{
  border-color: rgba(245,193,45,0.55);
}

.pagination-item .current{
  background: var(--accent);
  color: #111;
  border-color: var(--accent);
}

.pagination-item .dots{
  opacity: 0.75;
  padding: 0 10px;
  min-width: auto;
}









.post{
  max-width: 980px;
  margin: 0 auto;
}

.post-head{
  margin: 10px 0 18px;
}

.post-title{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.1;
  font-weight: 900;
  color: var(--text);
}

.post-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  color: #000000;
  font-size: 14px;
  line-height: 1.4;
}

.post-meta a{
  color: rgba(245,193,45,0.95);
  font-weight: 800;
}

.post-meta a:hover{
  opacity: 0.95;
}

.post-meta-sep{
  opacity: 0.75;
}

.post-cover{
  margin-top: 18px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
}

.post-cover-img{
  width:100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display:block;
}

.post-content{
  margin-top: 18px;
  color: #000000;
  font-size: 16px;
  line-height: 1.65;
}

.post-content h2,
.post-content h3{
  color: var(--text);
  line-height: 1.2;
  margin: 26px 0 12px;
}

.post-content p{
  margin: 0 0 14px;
}

.post-content a{
  color: rgba(245,193,45,0.95);
  font-weight: 800;
}

.post-content img{
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}

.post-content blockquote{
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 4px solid rgba(245,193,45,0.9);
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
}

.post-footer{
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.author-box{
  display:flex;
  gap:14px;
  align-items:flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 14px;
}

.author-avatar img{
  border-radius: 999px;
  display:block;
}

.author-name{
  font-weight: 900;
  color: #000000;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.author-bio{
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.45;
}

.related{
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.related-title{
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  color: var(--text);
}

@media (max-width: 720px){
  .post{
    max-width: 100%;
  }

  .author-box{
    flex-direction:column;
    align-items:flex-start;
  }
}












.page-404{
  min-height: calc(100vh - 160px);
  display:flex;
  align-items:center;
  justify-content:center;
}

.page-404-inner{
  text-align:center;
  max-width: 520px;
  margin: 0 auto;
}

.page-404-code{
  margin:0;
  font-size: clamp(96px, 18vw, 180px);
  line-height:1;
  font-weight: 900;
  color: rgba(245,193,45,0.9);
}

.page-404-title{
  margin: 8px 0 10px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  color: var(--text);
}

.page-404-text{
  margin: 0 0 14px;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.45;
}

.page-404-redirect{
  margin: 0 0 18px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

.page-404-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:48px;
  padding:0 26px;
  border-radius:14px;
  background: var(--accent);
  color:#111;
  font-weight: 900;
}

.page-404-btn:hover{
  opacity:0.95;
}

@media (max-width: 640px){
  .page-404{
    min-height: calc(100vh - 120px);
  }
}
