/* =========================
GLOBAL RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html,
body{
width:100%;
overflow-x:hidden;
scroll-behavior:smooth;
}

body{
background:#050816;
color:#fff;
font-family:Inter,sans-serif;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

ul{
list-style:none;
}

section{
width:100%;
overflow:hidden;
}

.container{
width:100%;
max-width:1300px;
margin:auto;
padding-left:24px;
padding-right:24px;
}

/* =========================
HEADER
========================= */

.p99-header{

position:sticky;

top:0;

z-index:9999;

background:
rgba(5,8,22,.82);

backdrop-filter:
blur(18px);

border-bottom:
1px solid rgba(255,255,255,.06);

}

.p99-header-container{

max-width:1300px;

height:78px;

margin:auto;

padding:0 24px;

display:flex;

align-items:center;

justify-content:space-between;

position:relative;

}

/* LOGO */

.p99-logo{

font-size:28px;

font-weight:800;

color:white;

}

.p99-logo span{

background:
linear-gradient(
90deg,
#8b5cf6,
#3b82f6
);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

/* NAV */

.p99-nav{

display:flex;

align-items:center;

gap:18px;

}

.p99-nav a{

color:#cbd5e1;

padding:10px 14px;

border-radius:12px;

transition:.2s;

}

.p99-nav a:hover{

background:
rgba(255,255,255,.05);

color:white;

}

/* HAMBURGER */

.menu-toggle{

display:none;

background:none;

border:none;

color:white;

font-size:30px;

cursor:pointer;

}

/* =========================
TABLET
========================= */

@media(max-width:992px){

.p99-header-container{

padding:0 18px;

}

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

.p99-header-container{

height:72px;

}

/* SHOW HAMBURGER */

.menu-toggle{

display:block;

margin-left:auto;

}

/* HIDE MENU */

.p99-nav{

display:none;

position:absolute;

top:72px;

left:0;

width:100%;

background:#050816;

padding:20px;

flex-direction:column;

align-items:flex-start;

gap:10px;

border-top:
1px solid rgba(255,255,255,.06);

}

/* OPEN MENU */

.p99-nav.open{

display:flex;

}

.p99-nav a{

width:100%;

font-size:15px;

padding:14px;

}

}

/* =========================
FOOTER
========================= */

@media(max-width:768px){

.p99-footer-container{

grid-template-columns:1fr;

}

}

/* =========================
FOOTER
========================= */

.p99-footer{

margin-top:80px;

border-top:
1px solid rgba(255,255,255,.06);

background:
linear-gradient(
180deg,
#050816,
#080d1f
);

}

.p99-footer-container{

max-width:1300px;

margin:auto;

padding:70px 24px;

display:grid;

grid-template-columns:
2fr
1fr
1fr;

gap:50px;

}

/* BRAND */

.footer-logo{

font-size:30px;

font-weight:800;

color:white;

display:inline-block;

margin-bottom:18px;

}

.footer-logo span{

background:
linear-gradient(
90deg,
#8b5cf6,
#3b82f6
);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.footer-brand p{

color:#94a3b8;

line-height:1.8;

max-width:360px;

}

/* LINKS */

.footer-links h4{

margin-bottom:20px;

font-size:16px;

}

.footer-links{

display:flex;

flex-direction:column;

gap:14px;

}

.footer-links a{

color:#94a3b8;

}

.footer-links a:hover{

color:white;

}

/* BOTTOM */

.footer-bottom{

padding:24px;

text-align:center;

color:#64748b;

border-top:
1px solid rgba(255,255,255,.05);

}

/* MOBILE */

@media(max-width:768px){

.p99-footer-container{

grid-template-columns:1fr;

padding:50px 20px;

gap:35px;

}

.footer-logo{

font-size:26px;

}

.footer-bottom{

font-size:14px;

}

}
/* =========================
RESTORE ARTICLE STYLES
========================= */

.prompt99-article{
max-width:920px;
margin:auto;
padding:40px 24px;
color:#e5e7eb;
line-height:1.8;
}

.prompt99-article section{
margin-top:70px;
}

.article-hero{

padding:70px 50px;

border-radius:28px;

background:
linear-gradient(
135deg,
#0f172a,
#111827
);

}

.prompt99-article h1{

font-size:54px;

margin-bottom:24px;

}

.article-subtitle{

font-size:20px;

color:#cbd5e1;

}

.prompt99-article h2{

font-size:40px;

margin-bottom:20px;

}

.prompt99-article h3{

font-size:24px;

margin-bottom:16px;

}

.prompt99-article p{

font-size:18px;

color:#cbd5e1;

margin-bottom:22px;

}

.code-block{

background:#111827;

border-radius:22px;

overflow:hidden;

margin:24px 0;

}

.code-block pre{

padding:28px;

overflow-x:auto;

}

.table-wrapper{

overflow-x:auto;

margin-top:30px;

}

table{

width:100%;

border-collapse:collapse;

}

th{

padding:18px;

background:#111827;

}

td{

padding:20px;

border-top:
1px solid rgba(255,255,255,.08);

}

.tool-card{

padding:28px;

margin-bottom:24px;

background:#111827;

border-radius:24px;

}

.steps-grid{

display:grid;

grid-template-columns:
repeat(
auto-fit,
minmax(
260px,
1fr
)
);

gap:24px;

}

.step-card{

padding:28px;

background:#111827;

border-radius:24px;

}

.article-image{

margin:50px auto;

}

.article-image img{

border-radius:24px;

width:100%;

}

/* MOBILE */

@media(max-width:768px){

.prompt99-article h1{

font-size:36px;

}

.prompt99-article h2{

font-size:28px;

}

.article-hero{

padding:36px 24px;

}

}