/*
Theme Name: Twenty Twenty-Five
Theme URI: https://wordpress.org/themes/twentytwentyfive/
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfive
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */


:root{
   --bg:#0f172a;         /* slate-900 */
   --panel:#111827;      /* gray-900 */
   --muted:#94a3b8;      /* slate-400 */
   --text:#e5e7eb;       /* gray-200 */
   --accent:#22d3ee;     /* cyan-400 */
   --green:#22c55e;      /* green-500 */
   --red:#ef4444;        /* red-500 */
   --amber:#f59e0b;      /* amber-500 */
   --border:#1f2937;     /* gray-800 */
}
*{
   box-sizing:border-box
}

a {
	text-decoration-thickness: 1px !important;
	text-underline-offset: .1em;
}

/* Focus styles */
:where(.wp-site-blocks *:focus) {
	outline-width: 2px;
	outline-style: solid;
}

/* Increase the bottom margin on submenus, so that the outline is visible. */
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
	margin-bottom: 3px;
}

/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
	outline-offset: 4px;
}

/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	outline-offset: 0;
}

/*
 * Progressive enhancement to reduce widows and orphans
 * https://github.com/WordPress/gutenberg/issues/55190
 */
.post-content :is(h1,h2,h3,h4,h5,h6){
    margin-bottom: 20px;
    margin-top: 10px;
    line-height: 3.5rem;
}
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
	text-wrap: pretty;
}
h1,.heading-1 {
    font-size: 42px
}

h2,.heading-2 {
    font-size: 30px
}

h3,.heading-3 {
    font-size: 26px
}

h4,.heading-4 {
    font-size: 24px
}

h5,.heading-5 {
    font-size: 22px
}

h6,.heading-6 {
    font-size: 20px
}
.post-content p {
    margin-top: 0;
    line-height: 1.5;
    margin-bottom:10px;
}
.post-content ul{
    margin-bottom:10px;
    margin-left:30px;
}
.post-content .wp-block-code{
    background-color: #282828;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}
/*
 * Change the position of the more block on the front, by making it a block level element.
 * https://github.com/WordPress/gutenberg/issues/65934
*/
.more-link {
	display: block;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  background: linear-gradient(120deg, #0b1220, #0f172a 40%, #0b1220 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}
.site-logo{
    width: 100px;
}
.site-nav ul{
   display: flex;
   align-items: center;
   gap: 20px;
   list-style: none;
}
.site-nav ul li a{
   font-size: 16px;
   color: var(--muted);
   transition: color 0.3s;
   font-weight: 500;
}
.site-nav ul li a:hover{
   color: var(--accent);
}
.hero{
   max-width: 1600px;
   margin: 30px auto;
   padding: 0px 15px;
}
.container{
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0rem 2rem;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(17,24,39,.6);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.menu li a {
  font-size: 1rem;
  transition: color 0.3s;
}

.menu li a:hover {
  color: #4f8df3;
}

.code-input-box{
   background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01));
   border: 1px solid var(--border);
   border-radius: 16px;
   box-shadow: 0 20px 35px rgba(0, 0, 0, .25);
}

.code-input-box h2,
.code-input-box .heading {
   margin: 0;
   padding: 12px 14px;
   border-bottom: 1px solid var(--border);
   font-size: 14px;
   color: var(--muted);
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-weight: 500;
   min-height: 57px;
}

.code-input-box .toolbar {
   display: flex;
   gap: 8px;
   align-items: center
}

.code-input-box .btn {
   cursor: pointer;
   border: 1px solid var(--border);
   background: #0b1220;
   color: var(--text);
   padding: 8px 10px;
   border-radius: 10px;
   font-size: 12px
}

.code-input-box .btn:hover {
   border-color: #334155
}

.code-input-box .btn.primary {
   border-color: transparent;
   background: linear-gradient(90deg, #0ea5e9, #22d3ee);
   color: #06121a;
   font-weight: 700
}

.code-input-box .btn.ghost {
   background: transparent
}
.code-input-box .ghost option{
   color: #0b1220;
}

.code-input-box textarea {
   width: 100%;
   height: 530px;
   overflow: auto;
   outline: none;
   background: #0b1220;
   font-size: 14px;
   color: var(--text);
   border: 0;
   resize: vertical;
   padding: 14px 16px;
   border-bottom-left-radius: 16px;
   border-bottom-right-radius: 16px;
   line-height: 1.4;
   font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.code-input-box .output{
   width: 100%;
   height: 530px;
   overflow: auto;
   outline: none;
   background: #0b1220;
   font-size: 14px;
   color: var(--text);
   border: 0;
   resize: vertical;
   padding: 14px 16px;
   border-bottom-left-radius: 16px;
   border-bottom-right-radius: 16px;
   line-height: 1.4;
   font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.code-custom-box button{
   cursor: pointer;
   border: 1px solid var(--border);
   background: #0b1220;
   color: var(--text);
   display: block;
   width: 100%;
   padding: 10px;
   border-radius: 4px;
   font-size: 16px;
   margin-bottom: 30px;
   transition: all .3s ease;
}
.code-custom-box button:hover{
   border-color: transparent;
   background: linear-gradient(90deg, #0ea5e9, #22d3ee);
   color: #06121a;
}
.code-custom-box select{
   cursor: pointer;
   border: 1px solid var(--border);
   background: #0b1220;
   color: var(--text);
   display: block;
   width: 100%;
   padding: 10px;
   border-radius: 4px;
   font-size: 16px;
   margin-bottom: 30px;
}
.code-input-box ul{
   padding-inline-start: 40px;
}
.opts label select{
   cursor: pointer;
   border:0px;
   background: #0b1220;
   color: var(--text);
   padding: 10px;
   border-radius: 4px;
}







.features {
  padding: 2rem 1rem;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.features p {
  margin: 0 auto 2rem;
  color: #ccc;
}

.features h1 {
     margin-top: 0px;
     margin-bottom: 20px ;
     font-size: 2rem;
     font-weight: 600;
}

.features h2 {
     margin-top: 40px;
     margin-bottom: 20px ;
     font-size: 1.5rem;
     font-weight: 500;
}
 .features p {
     margin-bottom: 30px;
     font-size: 16px;
	  color: #9EABB8;
}
 .features ul li {
     margin-bottom: 15px;
     padding-left: 30px;
     display: block;
     position: relative;
     font-size: 16px;
	  color: #9EABB8;
}
 .features ul li:before {
     content: '';
     position: absolute;
     background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABmJLR0QA/wD/AP+gvaeTAAAEDElEQVRoge2XXWxURRTH/+fe/ShBioFo8NvaNmrLhyI2kDal22px0cVEWZSYQtHSIIREn4wmhkXro9EHI6EIaVIjUoS2VEqtJG7j1oJiGi3EwpYtiFEUEyAL2u7eO8cHJdjtvXtnP+I25v6SeZn5n/85J3tnZwawsbGxsbGxyR2U6wKMWH/WVwrQ2yz4pIboKy0FwTEz7ZRroOGMr4CAfgC3/DN1hFzwNd/a9buRXvnvSrNmXdh7kwIcwvXiAWAxx9DXeNp3p1HMlGlgc9ib73A6ehi412C5BA6E/v60JjIlGtgc9rrHnI52AAvNNMy4A4wu8MTPPucNBDigjDkdrQCqrbQMTEucy3kDP5399j0AfglpjEipA4H/PZnTBhpHVwQIeFFCKph5zY67Og8nLuTsb3T96BMbGNgmp+aXPyg4+K7RimUDG09U3RCd7eLWOb1XUyvRnIaIdyWDPgagSsibdt7T/brZYtIG1o3UVoPoABg6g9e2FPV2pFqsoSeoG4DbSkvAjl1FnzUm05jugbrh2gIheI/QxXQhRD4L3l9/sjaQesnXWTNcM18I3ieEcAshYDEORM6Nb7TyNPwFnh8un6Ep7q/AmJu4xqDmcz/rm4KeoJZK8WvD1YUsEAIwx1LM6FPc4rFkd6BrTGogwAFlZPiLdoBWJInrcVF81a77+qOWxQCoG6m9meOxEIBiCfmQiGtLP5ofuijjPamB1cfLXwLoHetA+oY55ts97+ivyXT+Y4/MdOSN9QFYIFFPRFWo4sOSL3+R0AIw2AMstHlCaLAauog/LJiOPDO0+H4z8/rRqjzVdaVTCG2BtZ/2m0b6slSKN2wAOr2p6fppXeiQGHfrut6/cnBRVaKNv82vXr18Zbcm9KUSPlGN4969pQMjqRQPmGxi/4nSWfq4qx1ApaRPDEDD/oWDrQAABj01+GAzgAaZWEURvk8e+K5XMtcETM8Bb7jI7bo8bScYz0l6MYHe6Fj0/dYnj81tAug1iRhBzKs7yo63SeaYRPKTmEG+r0uaAMgUc81yAOAlclLe1FX2w/vy3gYWMqLlA8X1AG0H4MokWQJbu5ecCmRqIn2Z8/YXVgvmfQTcmGlSANt7KiIbsuCT2m300b7bi0GOgwDLHEgmCblz5vkfn967Cnq6HhP9UqTm8G2zhYoOAipSjWUgyHB6g54zllcEWdJ6D3i7i9x/uqMtAJ5NIWwIynhl0HPpUjo5zUj/QcOgyt5ZW5iwRUIdUZ1qedBz4Xza+UzI+EVWfmjGCwzaBsBpIrmgCK4IPR49lWkuI7LypCz7dPoyArcByE9YuqgoqBlY/sdgNvIYkbU38UPt7kJS+S1i9jAoD4zPVZVePeobD2crh42NjY2Nzf+OvwC7NeFiDpyBpwAAAABJRU5ErkJggg==);
     left: 0;
     top: 5px;
     background-repeat: no-repeat;
     height: 20px;
     width: 20px;
     background-size: contain;
     z-index: 1 
}

img {
    max-width: 100%;
    height: auto;
}

.f-flex{
   display: flex;
   flex-wrap: wrap;
}
.w-100{
   width: 100%;
}
.w-45{
   width: 44%;
}


.code-custom-box{
   width: 12%;
	padding: 20px;
   display: flex;
   flex-wrap: wrap;
   align-items: center;
}

.code-output-box{
   position: relative;
}
.toster{
   position: fixed;
   bottom: 60px;
   right: 30px;
   background-color: #257a25;
   padding: 10px 15px;
   border-radius: 4px;
   color: #fff;
   opacity: 0;
}
.toster.active{
   animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
   from { 
      opacity: 0; 
   }
   to { 
      opacity: 1; 
   }
 }
.code-output-box .copy{
   background-color: transparent;
   border: 0;
   position: absolute;
   right: 20px;
   top: 20px;
   cursor: pointer;
}
.latest-post{
   display: flex;
   margin-bottom: 30px;
}
.sub-title{
   text-align: center;
   margin-bottom: 30px;
}
.latest-post .thumbail{
   width: 60%;
}
.latest-post .thumbail a{
   display: block;
}
.latest-post .thumbail a img{
   width: 100%;
   max-width: 100%;
   height: auto;
}
.latest-post .post-content{
   width: 40%;
   padding: 15px 30px;
}
.latest-post .post-content p{
   font-size: 16px;
   color: #9EABB8;
   margin: 20px 0px;
}
.latest-post .post-content .link{
   text-align: right;
}
.latest-post .post-content .link a{
   font-size: 16px;
   background-color: #1A78E5;
   padding: 10px 25px;
   border-radius: 25px;
}
.letest-post .article {
    width: 33.33%;
    padding: 15px;
}
.letest-post .article-contnet{
   background-color: #1C2126;
   border: 1px solid #3D4754;
   border-radius: 4px;
   overflow: hidden;
}
.letest-post .article-contnet .thumbail img{
   width: 100%;
   height: auto;
}
.letest-post .article-contnet .post-content{
   padding: 15px;
}
.letest-post .article-contnet .post-content p{
   font-size: 16px;
   color: #9EABB8;
   margin: 15px 0px;
}
.letest-post .article-contnet .post-content div a{
   font-size: 16px;
   background-color: #0d0d0d;
   padding: 10px 25px;
   border-radius: 25px;
}
.letest-post .article-contnet .post-content div a:hover{
   background-color: #1A78E5;
}
.faq-list h2{
   margin-bottom: 30px;
   text-align: center;
}
.faq-list .faq-item{
   margin-bottom: 15px;
   background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01));
   border: 1px solid var(--border);
   border-radius: 8px;
   box-shadow: 0 20px 35px rgba(0, 0, 0, .25);
   overflow: hidden;
}
.faq-answer {
  display: none;
  padding: 15px;
  background: #0b1220;
  color: var(--text);
  font-size: 16px;
}
.faq-question {
  cursor: pointer;
  padding: 15px;
  font-size: 16px;
  color: var(--muted);
}
.banner-img{
   margin-bottom: 2rem;
}
.banner-img img{
   width: 100%;
}
.post-container h1{
   font-size: 42px;
   margin-bottom: 20px;
}
.post-heading{
   margin-bottom: 2rem;
}
.post-categories{
    font-size: 18px;
    margin-bottom: 10px;
}
.post-heading .meta{
   font-size: 16px;
   color: #A3ABB2;
}
.post-content{
   font-size: 18px;
}

.card {
   background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01));
   border: 1px solid var(--border);
   border-radius: 16px;
   box-shadow: 0 20px 35px rgba(0, 0, 0, .25);
}
.card h2 {
   margin: 0;
   padding: 12px 14px;
   border-bottom: 1px solid var(--border);
   font-size: 14px;
   color: var(--muted);
   display: flex;
   margin-bottom: 20px;
   justify-content: space-between;
   align-items: center;
}
.actions {
   grid-column: 1 / -1;
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
   justify-content: flex-end
}

.results {
   grid-column: 1 / -1;
   display: grid;
   grid-template-columns: 1.2fr .8fr;
   gap: 16px;
   margin-top: 50px;
}

.panel {
   padding: 12px
}

.summary {
   display: flex;
   gap: 8px;
   flex-wrap: wrap
}

.summary .chip {
   padding: 6px 10px;
   border-radius: 999px;
   font-size: 12px;
   border: 1px solid var(--border);
   background: rgba(255, 255, 255, .02)
}

.summary .chip.add {
   border-color: rgba(34, 197, 94, .4)
}

.summary .chip.rem {
   border-color: rgba(239, 68, 68, .4)
}

.summary .chip.chg {
   border-color: rgba(245, 158, 11, .5)
}

table {
   width: 100%;
   border-collapse: separate;
   border-spacing: 0 8px;
   font-size: 16px;
}

th {
   font-size: 12px;
   color: var(--muted);
   text-align: left;
   padding: 6px 10px
}

td {
   padding: 10px;
   background: rgba(255, 255, 255, .02);
   border: 1px solid var(--border);
   border-left-width: 4px
}

td:first-child {
   border-radius: 10px 0 0 10px;
   border-left-width: 1px
}

td:last-child {
   border-radius: 0 10px 10px 0
}

tr.add td {
   border-left-color: var(--green)
}

tr.rem td {
   border-left-color: var(--red)
}

tr.chg td {
   border-left-color: var(--amber)
}

code.inline {
   font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
   font-size: 12px
}

pre.viewer {
   margin: 0;
   background: #0b1220;
   border: 1px solid var(--border);
   padding: 12px;
   border-radius: 12px;
   max-height: 420px;
   overflow: auto;
   white-space: pre-wrap;
   word-break: break-word;
   font-size: 16px;
}

.k {
   color: #93c5fd
}

.s {
   color: #bef264
}

.n {
   color: #fda4af
}

.b {
   color: #facc15
}
 
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

footer a {
   color: var(--muted);
   font-size: 0.9rem;
}
footer p{
   color: var(--muted);
   text-align: center;
   font-size: 0.9rem;
}
.footer-bottom{
   max-width: 1600px;
   margin: 30px auto;
   padding: 0px 15px;
}
.footer-bottom > div{
   width: 33.33%;
   text-align: center;
   margin-bottom:30px;
   float: left;
}
.footer-bottom > div ul{
   list-style: none;
   text-align: center;
}

.json-viewer { font-size: 14px; line-height: 1.4; }
  .key { color: brown; }
  .string { color: green; }
  .number { color: blue; }
  .boolean { color: darkorange; }
  .null { color: red; }
  .toggle {
    cursor: pointer;
    font-weight: bold;
    margin-right: 5px;
  }
  .collapsed > ul { display: none; }
  

@media only screen and (max-width: 767px) {
   .navbar {
      flex-direction: column;
      gap: 1rem;
   }

   .auth-buttons {
      margin-top: 1rem;
   }

   .feature-cards {
      flex-direction: column;
      align-items: center;
   }
   .w-45,
   .code-custom-box{
      width: 100%;
   }
   .code-input-box textarea,
   .code-output-box .output{
      height: 100%;
   }
   .code-custom-box{
      padding: 0px 20px;
   }
   .formator-box{
      display: block;
   }
   .code-custom-box button:last-child{
      margin-bottom: 0px;
   }
   .code-custom-box button{
      margin-bottom: 15px;
   }
   .w-45{
      height: calc(100vh - 597px);
   }
   .footer{
      font-size: 14px;
   }
}







.side-by-side {
   display: flex;
   gap: 20px;
 }
 
 .viewer {
   flex: 1;
   background: #1e1e1e;
   color: #eee;
   padding: 10px;
   border-radius: 6px;
   overflow: auto;
   max-height: 530px;
   font-family: monospace;
   font-size: 14px;
   white-space: pre-wrap;
 }
 
 .viewer .add { background: #133a13; color: #8f8; }
 .viewer .rem { background: #3a1313; color: #f88; }
 .viewer .chg { background: #3a2a13; color: #fc6; }
 