/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 25 2026 | 11:30:03 */
.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;
	height: -webkit-fill-available;
}

.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: snow;
}

.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);
  }
}


  .neon-banner {
    width: 100%;
    margin: 48px auto;
    background: linear-gradient(120deg, #14001f, #00161f);
    border-radius: 30px;
    box-shadow: 0 30px 100px rgba(0,0,0,0.8);
    overflow: hidden;
    color: #ffffff;
    position: relative;
  }

  .neon-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(600px 300px at 10% 20%, rgba(255, 0, 170, 0.25), transparent 60%),
      radial-gradient(700px 300px at 90% 80%, rgba(0, 255, 200, 0.22), transparent 60%);
    pointer-events: none;
  }

  .neon-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
    padding: 28px;
    align-items: center;
  }

  .neon-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .neon-badge {
    width: fit-content;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 900;
    color: #ffb3ff;
  }

  .neon-title {
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffffff;
  }

  .neon-title span {
    color: #00ffd0;
  }

  .neon-text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.82);
    max-width: 70ch;
  }

  .neon-right {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 22px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .neon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #120015;
    background: linear-gradient(90deg, #ff4fd8, #00ffd0);
    box-shadow: 0 18px 50px rgba(0,0,0,0.45);
    transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
  }

  .neon-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 24px 70px rgba(0,0,0,0.6);
  }

  .neon-note {
    font-size: 12px;
    text-align: center;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
  }

  @media (max-width: 980px) {
    .neon-inner {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 22px;
    }

    .neon-left {
      align-items: center;
    }

    .neon-title {
      font-size: 1.7rem;
    }

    .neon-right {
      max-width: 420px;
      margin: 0 auto;
    }
  }
















.page-content{
  font-size: clamp(16px, 0.45vw + 14.5px, 19px);
  line-height: 1.75;
}

.page-content p{
  margin: 0 0 1em;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6{
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 1.25em 0 0.55em;
  font-weight: 800;
}

.page-content h1{ font-size: clamp(34px, 3vw + 18px, 52px); }
.page-content h2{ font-size: clamp(26px, 1.9vw + 16px, 36px); }
.page-content h3{ font-size: clamp(20px, 1.1vw + 15px, 26px); }
.page-content h4{ font-size: clamp(18px, 0.7vw + 14px, 22px); }
.page-content h5{ font-size: clamp(16px, 0.4vw + 13px, 18px); }
.page-content h6{ font-size: clamp(15px, 0.25vw + 12.5px, 16px); }

.page-content :is(h1,h2,h3,h4,h5,h6) + p{
  margin-top: 0;
}

@media (max-width: 480px){
  .page-content{
    line-height: 1.7;
  }

  .page-content :is(h1,h2,h3,h4,h5,h6){
    letter-spacing: -0.01em;
  }
}
