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

body{
font-family:'Inter',sans-serif;
background:#f6f8fc;
color:#0f172a;
}

.container{
width:92%;
max-width:1380px;
margin:auto;
}

.header{
position:sticky;
top:0;
background:rgba(255,255,255,.92);
backdrop-filter:blur(10px);
border-bottom:1px solid #e7edf7;
z-index:999;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:24px 0;
gap:30px;
}

.logo{
font-size:34px;
font-weight:800;
color:#2563eb;
text-decoration:none;
}

.menu{
display:flex;
gap:22px;
flex-wrap:wrap;
}

.menu a{
text-decoration:none;
color:#334155;
font-weight:600;
transition:.2s;
}

.menu a:hover{
color:#2563eb;
}

.header-actions{
display:flex;
gap:12px;
}

.login-btn,.signup-btn{
padding:12px 20px;
border-radius:12px;
text-decoration:none;
font-weight:700;
}

.login-btn{
color:#0f172a;
background:#eef3fb;
}

.signup-btn{
background:#2563eb;
color:white;
}

.hero{
height:760px;
background-image:url('https://images.unsplash.com/photo-1516937941344-00b4e0337589?q=80&w=2200&auto=format&fit=crop');
background-size:cover;
background-position:center;
position:relative;
display:flex;
align-items:center;
}

.hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(to right,rgba(255,255,255,.96),rgba(255,255,255,.35));
}

.hero-content{
position:relative;
z-index:5;
}

.hero-text{
max-width:760px;
}

.hero-badge{
display:inline-block;
background:#dbeafe;
padding:10px 18px;
border-radius:999px;
color:#2563eb;
font-weight:700;
margin-bottom:24px;
}

.hero h1{
font-size:72px;
line-height:1.02;
margin-bottom:24px;
}

.hero p{
font-size:24px;
line-height:1.6;
color:#475569;
margin-bottom:36px;
}

.hero-buttons{
display:flex;
gap:18px;
}

.btn-primary,.btn-secondary{
padding:18px 30px;
border-radius:16px;
text-decoration:none;
font-weight:700;
}

.btn-primary{
background:#2563eb;
color:white;
}

.btn-secondary{
background:white;
color:#2563eb;
border:1px solid #dbe5f2;
}

.section{
margin-top:90px;
}

.section-title{
margin-bottom:30px;
}

.section-title h2{
font-size:42px;
}

.featured-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

.featured-card{
height:380px;
overflow:hidden;
border-radius:28px;
position:relative;
}

.featured-card img{
width:100%;
height:100%;
object-fit:cover;
}

.featured-overlay{
position:absolute;
inset:0;
background:linear-gradient(to top,rgba(0,0,0,.8),transparent);
}

.featured-content{
position:absolute;
bottom:26px;
left:26px;
right:26px;
color:white;
}

.featured-content h3{
font-size:32px;
line-height:1.2;
}

.articles-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
}

.article-card{
background:white;
border-radius:26px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.05);
transition:.25s;
}

.article-card:hover{
transform:translateY(-6px);
}

.article-card a{
text-decoration:none;
color:#0f172a;
}

.article-card img{
width:100%;
height:240px;
object-fit:cover;
}

.article-content{
padding:26px;
}

.article-content span{
color:#2563eb;
font-weight:700;
font-size:14px;
}

.article-content h3{
font-size:28px;
line-height:1.2;
margin:14px 0;
}

.article-content p{
color:#64748b;
line-height:1.7;
}

.categories-grid{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:20px;
}

.category-card{
background:white;
padding:34px 20px;
border-radius:22px;
text-align:center;
font-size:22px;
font-weight:700;
text-decoration:none;
color:#0f172a;
box-shadow:0 10px 30px rgba(0,0,0,.05);
transition:.25s;
}

.category-card:hover{
background:#2563eb;
color:white;
}

.jobs-market{
display:grid;
grid-template-columns:1fr 1fr;
gap:28px;
}

.jobs-box,.market-box{
background:white;
padding:36px;
border-radius:28px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.job-item{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
border-bottom:1px solid #edf2f7;
text-decoration:none;
color:#0f172a;
}

.job-item h4{
font-size:22px;
margin-bottom:8px;
}

.job-item p{
color:#64748b;
}

.job-item span{
background:#2563eb;
color:white;
padding:10px 16px;
border-radius:999px;
font-size:14px;
font-weight:700;
}

.market-item{
display:block;
margin-bottom:20px;
border-radius:20px;
overflow:hidden;
text-decoration:none;
color:#0f172a;
background:#f8fafc;
}

.market-item img{
width:100%;
height:220px;
object-fit:cover;
}

.market-content{
padding:20px;
}

.market-content h4{
font-size:22px;
}

.newsletter{
margin-top:100px;
background:#111827;
padding:80px 0;
color:white;
}

.newsletter-inner{
display:flex;
justify-content:space-between;
align-items:center;
gap:40px;
}

.newsletter h2{
font-size:48px;
margin-bottom:16px;
}

.newsletter p{
font-size:20px;
color:#cbd5e1;
max-width:700px;
}

.newsletter-form{
display:flex;
gap:14px;
}

.newsletter-form input{
padding:18px 22px;
border:none;
border-radius:16px;
width:320px;
font-size:16px;
}

.newsletter-form button{
padding:18px 28px;
background:#2563eb;
border:none;
border-radius:16px;
color:white;
font-size:16px;
font-weight:700;
}

.footer{
background:#0b1220;
color:white;
padding:70px 0;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:40px;
}

.footer h3{
font-size:32px;
margin-bottom:16px;
}

.footer h4{
margin-bottom:16px;
}

.footer ul{
list-style:none;
}

.footer li{
margin-bottom:10px;
}

.footer a{
color:#cbd5e1;
text-decoration:none;
}

.post-page{
padding:80px 0;
max-width:950px;
}

.post-image{
width:100%;
border-radius:24px;
margin-bottom:40px;
}

.post-header span{
display:inline-block;
background:#dbeafe;
color:#2563eb;
padding:10px 18px;
border-radius:999px;
font-weight:700;
margin-bottom:20px;
}

.post-header h1{
font-size:62px;
line-height:1.05;
margin-bottom:40px;
}

.post-content{
font-size:21px;
line-height:1.9;
color:#334155;
}

.archive-page{
padding:80px 0;
}

.archive-page h1{
font-size:62px;
margin-bottom:40px;
}

@media(max-width:1100px){

.featured-grid,
.articles-grid,
.categories-grid,
.jobs-market,
.footer-grid{
grid-template-columns:1fr;
}

.newsletter-inner{
flex-direction:column;
align-items:flex-start;
}

.hero h1{
font-size:48px;
}

}

@media(max-width:760px){

.menu{
display:none;
}

.hero{
height:680px;
}

.hero h1{
font-size:38px;
}

.hero p{
font-size:18px;
}

.hero-buttons{
flex-direction:column;
}

.newsletter-form{
flex-direction:column;
width:100%;
}

.newsletter-form input{
width:100%;
}

}


body{
background:
radial-gradient(circle at top left,#dbeafe 0%,transparent 25%),
radial-gradient(circle at top right,#e0f2fe 0%,transparent 22%),
#f8fafc;
}

.header{
background:rgba(255,255,255,.78);
backdrop-filter:blur(18px);
border-bottom:1px solid rgba(255,255,255,.5);
box-shadow:0 8px 30px rgba(15,23,42,.04);
}

.hero{
border-bottom-left-radius:48px;
border-bottom-right-radius:48px;
overflow:hidden;
margin:18px;
height:820px;
box-shadow:0 30px 80px rgba(37,99,235,.18);
}

.hero-overlay{
background:
linear-gradient(to right,rgba(255,255,255,.96),rgba(255,255,255,.15)),
linear-gradient(to top,rgba(37,99,235,.08),transparent);
}

.hero-badge{
background:white;
border:1px solid rgba(37,99,235,.12);
box-shadow:0 10px 30px rgba(37,99,235,.08);
}

.hero h1{
font-size:82px;
font-weight:800;
letter-spacing:-3px;
max-width:900px;
}

.hero p{
font-size:26px;
max-width:760px;
}

.btn-primary{
box-shadow:0 18px 40px rgba(37,99,235,.25);
}

.btn-primary:hover{
transform:translateY(-2px);
}

.btn-secondary{
background:rgba(255,255,255,.7);
backdrop-filter:blur(10px);
}

.section-title h2{
font-size:52px;
letter-spacing:-2px;
}

.featured-card{
border-radius:34px;
box-shadow:0 25px 60px rgba(15,23,42,.12);
}

.featured-content h3{
font-size:36px;
font-weight:800;
}

.article-card{
border:1px solid rgba(255,255,255,.7);
backdrop-filter:blur(14px);
background:rgba(255,255,255,.8);
}

.article-card:hover{
transform:translateY(-10px);
box-shadow:0 30px 60px rgba(15,23,42,.12);
}

.article-content h3{
font-size:30px;
letter-spacing:-1px;
}

.category-card{
background:rgba(255,255,255,.7);
backdrop-filter:blur(12px);
border:1px solid rgba(255,255,255,.7);
font-size:24px;
padding:42px 20px;
}

.jobs-box,.market-box{
background:rgba(255,255,255,.82);
backdrop-filter:blur(14px);
border:1px solid rgba(255,255,255,.8);
}

.job-item{
transition:.25s;
border-radius:18px;
padding-left:16px;
padding-right:16px;
}

.job-item:hover{
background:#f8fbff;
transform:translateX(4px);
}

.market-item{
overflow:hidden;
transition:.25s;
}

.market-item:hover{
transform:translateY(-6px);
box-shadow:0 20px 50px rgba(15,23,42,.12);
}

.newsletter{
margin:120px 18px 0;
border-radius:42px;
background:
linear-gradient(135deg,#0f172a 0%,#111827 45%,#2563eb 140%);
box-shadow:0 30px 80px rgba(15,23,42,.25);
}

.newsletter h2{
font-size:58px;
letter-spacing:-2px;
}

.newsletter-form input{
background:rgba(255,255,255,.94);
}

.newsletter-form button{
box-shadow:0 18px 40px rgba(37,99,235,.4);
}

.footer{
margin:18px;
border-radius:42px;
background:#0b1220;
}

.post-page{
background:white;
padding:70px;
border-radius:36px;
margin-top:40px;
box-shadow:0 20px 60px rgba(15,23,42,.08);
}

.archive-page{
padding-top:100px;
}

@media(max-width:760px){

.hero{
margin:10px;
height:720px;
border-radius:28px;
}

.hero h1{
font-size:46px;
letter-spacing:-2px;
}

.section-title h2{
font-size:38px;
}

.newsletter{
margin:80px 10px 0;
border-radius:28px;
}

.footer{
margin:10px;
border-radius:28px;
}

.post-page{
padding:30px;
}

}


.sponsor-section{
    margin-top:50px;
    margin-bottom:20px;
    display:flex;
    flex-direction:column;
    gap:30px;
}

.sponsor-banner{
    width:100%;
    border-radius:24px;
    overflow:hidden;
    background:white;
    box-shadow:0 15px 40px rgba(15,23,42,.08);
}

.sponsor-banner img{
    width:100%;
    max-width:1200px;
    display:block;
    margin:auto;
}

.comments-wrapper{
    margin-top:80px;
    padding-top:40px;
    border-top:1px solid #e2e8f0;
}

.comments-wrapper h2{
    font-size:36px;
    margin-bottom:30px;
}


.ads-section{
margin-top:70px;
}

.ads-header h2{
font-size:24px;
letter-spacing:4px;
color:#1e3a8a;
margin-bottom:26px;
font-weight:800;
}

.ads-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:28px;
}

.ad-card{
background:white;
padding:20px;
border-radius:28px;
box-shadow:0 15px 40px rgba(15,23,42,.06);
}

.ad-label{
font-size:14px;
font-weight:800;
letter-spacing:2px;
color:#647bb5;
margin-bottom:18px;
}

.ad-placeholder{
display:block;
position:relative;
border:2px dashed #d7e2f3;
border-radius:24px;
overflow:hidden;
background:#f8fbff;
min-height:300px;
text-decoration:none;
}

.ad-placeholder img{
width:100%;
height:300px;
object-fit:cover;
display:block;
}

.ad-placeholder-text{
position:absolute;
inset:0;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
background:rgba(248,251,255,.88);
color:#35558b;
padding:20px;
}

.ad-placeholder-text strong{
font-size:20px;
margin-bottom:12px;
}

.ad-placeholder-text span{
font-size:16px;
}

@media(max-width:1000px){

.ads-grid{
grid-template-columns:1fr;
}

}


.mobile-menu-toggle{
display:none;
background:#2563eb;
color:white;
border:none;
padding:12px 16px;
border-radius:12px;
font-size:24px;
font-weight:700;
cursor:pointer;
}

@media(max-width:760px){

.mobile-menu-toggle{
display:block;
}

.menu{
position:fixed;
top:90px;
left:0;
right:0;
background:white;
padding:24px;
display:none;
flex-direction:column;
gap:18px;
box-shadow:0 20px 50px rgba(15,23,42,.12);
z-index:999;
}

.mobile-menu-open .menu{
display:flex;
}

.menu a{
font-size:18px;
padding:10px 0;
border-bottom:1px solid #eef2f7;
}

.nav{
align-items:center;
}

}


.newsletter-form button{
cursor:pointer;
transition:.25s;
}

.newsletter-form button:hover{
transform:translateY(-2px);
}


.custom-members-page{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
padding:120px 20px;
background:
radial-gradient(circle at top left,#dbeafe 0%,transparent 30%),
#f8fafc;
}

.custom-members-card{
width:100%;
max-width:620px;
background:rgba(255,255,255,.88);
backdrop-filter:blur(18px);
padding:60px;
border-radius:36px;
box-shadow:0 30px 80px rgba(15,23,42,.12);
text-align:center;
}

.members-badge{
display:inline-block;
padding:10px 18px;
border-radius:999px;
background:#dbeafe;
color:#2563eb;
font-weight:800;
letter-spacing:1px;
margin-bottom:24px;
}

.custom-members-card h1{
font-size:54px;
line-height:1.05;
margin-bottom:20px;
letter-spacing:-2px;
}

.custom-members-card p{
font-size:20px;
line-height:1.7;
color:#64748b;
margin-bottom:34px;
}

.premium-signup-form{
display:flex;
flex-direction:column;
gap:18px;
}

.premium-signup-form input{
padding:20px;
border-radius:18px;
border:1px solid #dbe5f2;
font-size:17px;
}

.premium-signup-form button{
padding:20px;
border:none;
border-radius:18px;
background:#2563eb;
color:white;
font-size:18px;
font-weight:800;
cursor:pointer;
box-shadow:0 18px 40px rgba(37,99,235,.25);
}

.message-success,
.message-error{
display:none;
margin-top:16px;
font-weight:700;
}

.success .message-success{
display:block;
color:#16a34a;
}

.error .message-error{
display:block;
color:#dc2626;
}

.members-login-link{
margin-top:30px;
font-size:18px;
color:#64748b;
}

.members-login-link a{
color:#2563eb;
font-weight:700;
text-decoration:none;
}

@media(max-width:760px){

.custom-members-card{
padding:36px 24px;
}

.custom-members-card h1{
font-size:38px;
}

}


.comments-login-box{
margin-top:80px;
padding:50px;
border-radius:28px;
background:#f8fbff;
border:1px solid #dbeafe;
text-align:center;
}

.comments-login-box h2{
font-size:38px;
margin-bottom:18px;
}

.comments-login-box p{
font-size:18px;
color:#64748b;
margin-bottom:26px;
}

.comments-login-btn{
display:inline-block;
padding:16px 26px;
background:#2563eb;
color:white;
text-decoration:none;
border-radius:16px;
font-weight:700;
}

.comments-native{
margin-top:30px;
}


.newsletter-success,
.newsletter-error{
display:none;
margin-top:16px;
font-weight:700;
}

.success .newsletter-success{
display:block;
color:#16a34a;
}

.error .newsletter-error{
display:block;
color:#dc2626;
}


.share-section{
margin-top:70px;
padding-top:40px;
border-top:1px solid #e2e8f0;
}

.share-section h3{
font-size:34px;
margin-bottom:24px;
}

.share-buttons{
display:flex;
flex-wrap:wrap;
gap:16px;
}

.share-btn{
padding:16px 24px;
border-radius:16px;
text-decoration:none;
font-weight:700;
color:white;
transition:.25s;
}

.share-btn:hover{
transform:translateY(-2px);
}

.whatsapp{
background:#22c55e;
}

.facebook{
background:#1877f2;
}

.linkedin{
background:#0a66c2;
}

.twitter{
background:#111827;
}

@media(max-width:760px){

.share-buttons{
flex-direction:column;
}

.share-btn{
text-align:center;
}

}


@media(max-width:760px){

.header-actions{
display:flex;
gap:10px;
margin-top:14px;
width:100%;
}

.login-btn,
.signup-btn{
flex:1;
text-align:center;
padding:14px 16px;
font-size:15px;
}

.menu{
padding-bottom:90px;
}

}


.newsletter-portal{
margin-top:20px;
}

.newsletter-native-btn{
padding:18px 30px;
border:none;
border-radius:18px;
background:#2563eb;
color:white;
font-size:18px;
font-weight:800;
cursor:pointer;
box-shadow:0 18px 40px rgba(37,99,235,.25);
transition:.25s;
}

.newsletter-native-btn:hover{
transform:translateY(-2px);
}


.disqus-section{
margin-top:80px;
padding-top:50px;
border-top:1px solid #e2e8f0;
}

.disqus-section h2{
font-size:42px;
margin-bottom:30px;
letter-spacing:-1px;
}

#disqus_thread{
background:white;
padding:30px;
border-radius:28px;
box-shadow:0 10px 30px rgba(15,23,42,.06);
}

@media(max-width:760px){

.disqus-section h2{
font-size:32px;
}

#disqus_thread{
padding:18px;
border-radius:20px;
}

}


.mobile-menu-toggle{
display:none;
background:#2563eb;
border:none;
color:white;
padding:10px 14px;
border-radius:12px;
font-size:20px;
cursor:pointer;
}

@media(max-width:1200px){

.nav{
flex-wrap:wrap;
justify-content:center;
text-align:center;
padding:18px 0;
}

.logo{
width:100%;
text-align:center;
}

.menu{
justify-content:center;
width:100%;
gap:16px;
}

.header-actions{
justify-content:center;
width:100%;
}

}

@media(max-width:768px){

.container{
width:94%;
}

.nav{
gap:16px;
}

.mobile-menu-toggle{
display:block;
margin:auto;
}

.menu{
display:none;
flex-direction:column;
align-items:center;
width:100%;
padding-top:10px;
}

.mobile-menu-open .menu{
display:flex;
}

.menu a{
width:100%;
text-align:center;
padding:10px 0;
font-size:18px;
}

.header-actions{
flex-direction:column;
align-items:center;
width:100%;
}

.login-btn,
.signup-btn{
width:100%;
max-width:260px;
text-align:center;
}

.logo{
font-size:28px;
}

.hero{
height:auto;
padding:100px 0;
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:18px;
}

.featured-grid,
.articles-grid,
.categories-grid,
.jobs-market{
grid-template-columns:1fr;
}

.section{
margin-top:50px;
}

.article-content h3{
font-size:22px;
}

}



.posts-feed{
display:flex;
flex-direction:column;
gap:24px;
margin-top:40px;
}

.archive-card{
background:white;
border-radius:24px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.archive-card a{
display:grid;
grid-template-columns:280px 1fr;
text-decoration:none;
color:inherit;
}

.archive-card img{
width:100%;
height:100%;
object-fit:cover;
}

.archive-content{
padding:24px;
}

.archive-content h2{
font-size:30px;
margin-bottom:14px;
}

.archive-tags{
display:flex;
gap:8px;
margin-bottom:12px;
flex-wrap:wrap;
}

.archive-tags span{
background:#dbeafe;
color:#0A84FF;
padding:6px 12px;
border-radius:999px;
font-size:12px;
font-weight:700;
}

.tag-page{
padding:80px 0;
}

@media(max-width:900px){
.archive-card a{
grid-template-columns:1fr;
}
}
