html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

#page-content {
  max-width: 100%;
  overflow-x: hidden;
}

body{
font-family:'Inter',sans-serif;
margin:0;
background:#0a0a0f;
color:#f1f5f9;
padding-top:90px;
}

body {
  overflow-x: hidden;
}

body {
opacity: 0;
transition: opacity 0.2s ease-in;
}

body.loaded {
opacity: 1;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:8px 40px;
background:#020617;
border-bottom:2px solid #00d48a;
position:fixed;
top:0;
left:0;
right:0;
z-index:100;
}

nav .nav-logo{
display:flex;
align-items:center;
gap:12px;
text-decoration:none;
}

nav .nav-logo img{
height:75px;
}

nav .nav-logo span{
font-family:'Playfair Display', serif;
font-size:22px;
font-weight:700;
color:#f8fafc;
letter-spacing:0.04em;
background:linear-gradient(135deg, #f8fafc 0%, #00d48a 100%);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
background-clip:text;
}

nav a{
text-decoration:none;
margin-left:24px;
color:#94a3b8;
font-weight:500;
transition:all .2s ease;
position:relative;
}

nav a:hover{
color:#f8fafc;
}

nav a::after{
content:'';
position:absolute;
bottom:-4px;
left:0;
width:0;
height:2px;
background:#00d48a;
transition:width .2s ease;
}

nav a:hover::after{
width:100%;
}

nav a.active{
color:#f8fafc;
}

nav a.active::after{
width:100%;
}

.container{
width: 100%;
max-width:1400px;
margin: 0 auto;
padding: 16px 20px;
}

.hero{
text-align:center;
padding:6px 20px 6px 20px;
background:#0a0a0f;
border-bottom:1px solid #1e293b;
position:relative;
overflow:hidden;
}

.hero::before{
content:'';
position:absolute;
top:0;left:0;right:0;bottom:0;
background:url('Assets/new-banner-image.png') center/cover no-repeat;
opacity:0.15;
pointer-events:none;
}

.hero h1{
font-size:34px;
margin-bottom:6px;
font-weight:700;
color:#f8fafc;
position:relative;
}

.hero p{
font-size:20px;
color:#94a3b8;
max-width:600px;
margin:auto;
position:relative;
}

.hero .button{
position:relative;
}

.hero-split{
display:flex;
gap:20px;
align-items:stretch;
max-width:1400px;
margin:0 auto;
justify-content:space-evenly;
position:relative;
}

.hero-article-card{
flex:0 1 38%;
display:flex;
flex-direction:column;
background:rgba(255,255,255,0.06);
border:1px solid rgba(255,255,255,0.1);
border-radius:12px;
overflow:hidden;
text-decoration:none;
transition:transform 0.15s, box-shadow 0.2s;
}

.hero-article-card:hover{
transform:translateY(-2px);
box-shadow:0 6px 20px rgba(0,0,0,0.3);
}

.hero-article-img{
width:100%;
object-fit:cover;
}

.hero-article-text{
padding:0 16px 8px;
display:flex;
align-items:center;
justify-content:center;
margin-top:-30px;
position:relative;
}

.hero-article-tag{
font-size:10px;
font-weight:700;
text-transform:uppercase;
letter-spacing:1.5px;
color:#3b82f6;
margin-bottom:6px;
}

.hero-article-text h3{
font-size:16px;
font-weight:700;
color:#f8fafc;
margin-bottom:6px;
line-height:1.3;
}

.hero-article-text p{
font-size:13px;
color:#94a3b8;
line-height:1.4;
margin:0 0 8px 0;
max-width:none;
text-align:left;
}

.hero-article-link{
font-size:15px;
font-weight:600;
color:#3b82f6;
background:rgba(15,23,42,0.85);
padding:4px 14px;
border-radius:6px;
}

.hero-builder-card{
flex:0 1 38%;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
overflow:hidden;
transition:transform 0.15s, box-shadow 0.2s;
text-decoration:none;
}

.hero-builder-card:hover{
transform:translateY(-2px);
box-shadow:0 6px 20px rgba(0,0,0,0.3);
}

.hero-builder-img{
width:100%;
height:100%;
object-fit:contain;
}

.button{
display:inline-block;
background:#3b82f6;
color:white;
padding:12px 28px;
margin:10px;
border-radius:10px;
text-decoration:none;
font-weight:600;
box-shadow:0 10px 25px rgba(59,130,246,.35);
transition:all .15s ease;
}

.button:hover{
transform:translateY(-3px);
box-shadow:0 16px 35px rgba(59,130,246,.5);
}

.section-title{
font-size:30px;
margin-top:10px;
margin-bottom:10px;
color:#f1f5f9;
}

.guides-grid{
display:grid;
grid-template-columns:1fr;
gap:16px;
}

@media(min-width:700px){
.guides-grid{
grid-template-columns:1fr 1fr;
}
}

.card{
border:1px solid #1e293b;
border-radius:16px;
padding:20px;
background:#020617;
box-shadow:0 10px 35px rgba(0,0,0,.6);
transition:all .2s ease;
display:flex;
flex-direction:column;
}

.card .button{
margin-top:auto;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 18px 45px rgba(0,0,0,.8);
border-color:#3b82f6;
}

.card p{
color:#94a3b8;
margin:4px 0;
font-size:13px;
line-height:1.4;
}


/* ABOUT SECTION */

.about-section{
background:#020617;
border:1px solid #1e293b;
border-radius:12px;
padding:16px 22px;
margin-bottom:12px;
}

.about-section h2{
font-size:17px;
font-weight:700;
color:#f8fafc;
margin-bottom:6px;
}

.about-section p{
color:#94a3b8;
font-size:13px;
line-height:1.6;
margin-bottom:6px;
}

.about-section p:last-child{
margin-bottom:0;
}

/* TOOL SECTION */

.builder-section{
max-width:1400px;
margin:auto;
padding:20px;
}

.tool-container{
margin-top:10px;
border-radius:18px;
overflow:hidden;
border:1px solid #1e293b;
background:#020617;
box-shadow:0 20px 50px rgba(0,0,0,.6);
}

.tool-container iframe{
width:100%;
height:1700px;
border:none;
}


/* ARTICLES BAR */

.articles-bar{
text-align:center;
padding:16px 24px;
background:#0d1117;
border:1px solid #1e293b;
border-radius:12px;
font-size:16px;
max-width:1160px;
margin:0 auto 20px;
}

.articles-bar-title{
color:#f8fafc;
font-weight:600;
margin-right:16px;
font-size:16px;
}

.articles-bar a{
color:#94a3b8;
text-decoration:underline;
text-underline-offset:4px;
text-decoration-color:#334155;
transition:color .2s ease, text-decoration-color .2s ease;
}

.articles-bar a:hover{
color:#f8fafc;
text-decoration-color:#f8fafc;
}

.articles-bar-dot{
color:#334155;
margin:0 12px;
}

footer{
text-align:center;
padding:60px;
color:#64748b;
font-size:14px;
border-top:1px solid #1e293b;
margin-top:40px;
}



/* MOBILE */

@media(max-width:700px){

nav{
padding:12px 16px;
}

nav div:last-child{
display:flex;
align-items:center;
flex-wrap:nowrap;
}

nav a{
margin-left:12px;
font-size:14px;
font-weight:600;
}

nav .nav-logo{
gap:6px;
}

nav .nav-logo img{
height:42px;
}

nav .nav-logo span{
font-size:10px;
}

.mobile-break{ display:none; }
@media(max-width:600px){ .mobile-break{ display:inline; } }

.hero{
padding:14px 16px 12px 16px;
}

.hero-split{
flex-direction:row;
gap:8px;
}

.hero-article-card{
flex:1;
}

.hero-builder-card{
flex:1;
}

.hero-builder-img{
height:100%;
object-fit:cover;
border-radius:8px;
}

.hero-article-img{
height:auto;
object-fit:cover;
}

.hero-article-text{
margin-top:0;
padding:4px 10px;
}

.hero-article-link{
font-size:12px;
padding:3px 10px;
}

.hero-article-text h3{
font-size:14px;
}

.hero-article-text p{
font-size:12px;
}

.hero h1{
font-size:22px;
}

.hero p{
font-size:14px;
}

.hero .button{
padding:10px 20px;
font-size:14px;
}

.hero div[style]{
margin-top:12px !important;
}

.container{
padding:10px 14px;
}

.section-title{
font-size:20px;
margin-top:8px;
margin-bottom:8px;
}

.tool-container{
border:none;
box-shadow:none;
}

.tool-container iframe{
height:2000px;
}

.guides-page .guides-grid{
gap:10px;
}

.guides-page .card{
flex-direction:row;
align-items:center;
padding:12px 14px;
gap:10px;
}

.guides-page .card h3, .guides-page .card b{
font-size:13px;
}

.guides-page .card p{
display:none;
}

.guides-page .card .card-desc{
display:block;
font-size:11px;
margin-bottom:0;
line-height:1.3;
color:#94a3b8;
}

.guides-page .card p:first-child{
display:block;
font-size:11px;
margin-bottom:0;
}

.guides-page .card .button{
margin:0;
margin-right:10px;
padding:6px 10px;
font-size:11px;
white-space:nowrap;
flex-shrink:0;
}

.articles-bar{
padding:12px 14px;
font-size:12px;
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:4px 0;
}

.articles-bar-dot{
margin:0 6px;
}

}
