/* =========================
   GOOGLE FONT RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:
radial-gradient(circle at 20% 20%, rgba(124,58,237,.25), transparent 30%),
radial-gradient(circle at 80% 30%, rgba(59,130,246,.20), transparent 30%),
radial-gradient(circle at 50% 80%, rgba(168,85,247,.15), transparent 40%),
#050816;

color:#fff;
overflow-x:hidden;
}

/* =========================
   NAVBAR
========================= */

.navbar{

position:fixed;

top:20px;

left:50%;

transform:translateX(-50%);

width:95%;

max-width:1450px;

padding:18px 38px;

display:flex;

justify-content:space-between;

align-items:center;

background:rgba(255,255,255,.05);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.08);

border-radius:22px;

z-index:1000;

box-shadow:
0 10px 40px rgba(0,0,0,.25);

transition:.4s;
}

.navbar:hover{

border-color:
rgba(168,85,247,.25);

box-shadow:
0 0 50px rgba(124,58,237,.15);

}

.logo{

display:flex;

align-items:center;

gap:10px;

font-size:1.3rem;

font-weight:700;
}

.logo-icon{
color:#8b5cf6;
font-size:1.5rem;
}

nav ul{

display:flex;

align-items:center;

list-style:none;

gap:34px;

flex-wrap:wrap;
}

nav a{

color:white;

text-decoration:none;

font-weight:600;

font-size:15px;

transition:.3s;
}

nav a:hover{

color:#a855f7;

transform:translateY(-2px);

}

.nav-actions{
display:flex;
gap:12px;
}

.icon-btn,
.theme-btn{

width:48px;

height:48px;

border:none;

border-radius:50%;

cursor:pointer;

background:rgba(255,255,255,.08);

color:white;

transition:.3s;
}

.icon-btn:hover,
.theme-btn:hover{

transform:translateY(-5px);

background:
linear-gradient(
90deg,
#4f8cff,
#a855f7
);

}

/* =========================
   HERO
========================= */

.hero{

min-height:100vh;

padding:140px 8%;

display:flex;

align-items:center;

justify-content:space-between;

gap:60px;

flex-wrap:wrap;
}

.hero-left{
max-width:650px;
}

.hero-badge{

display:inline-block;

padding:12px 22px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:999px;

margin-bottom:30px;
}

.hero h1{

font-size:5rem;

line-height:1.1;
}

.hero h1 span{

background:linear-gradient(
90deg,
#4f8cff,
#a855f7
);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;
}

.hero p{

margin-top:25px;

font-size:1.1rem;

color:#cbd5e1;

line-height:1.8;
}

.hero-features{

display:flex;

gap:15px;

margin-top:30px;

flex-wrap:wrap;
}

.hero-features div{

padding:12px 18px;

background:rgba(255,255,255,.05);

border-radius:999px;

border:1px solid rgba(255,255,255,.06);

}

.search-box{

margin-top:35px;

display:flex;

max-width:650px;
}

.search-box input{

flex:1;

padding:20px;

border:none;

outline:none;

color:white;

background:rgba(255,255,255,.05);

border-radius:50px 0 0 50px;
}

.search-box button{

padding:20px 40px;

border:none;

cursor:pointer;

color:white;

font-weight:600;

background:linear-gradient(
90deg,
#4f8cff,
#a855f7
);

border-radius:0 50px 50px 0;

transition:.3s;
}

.search-box button:hover{

opacity:.9;

transform:translateY(-3px);
}

/* =========================
   HERO CARD
========================= */

.hero-right{
position:relative;
}

.hero-card{

width:450px;

height:450px;

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

padding:35px;

background:rgba(255,255,255,.05);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.1);

border-radius:35px;

box-shadow:0 0 80px rgba(124,58,237,.25);

animation:float 6s ease-in-out infinite;
}

.tool-icon{

display:flex;

align-items:center;

justify-content:center;

font-size:2rem;

background:rgba(255,255,255,.08);

border-radius:20px;

transition:.3s;
}

.tool-icon:hover{

transform:scale(1.08);

background:
rgba(255,255,255,.12);

}

.orbit{

position:absolute;

width:600px;

height:600px;

border:2px solid rgba(168,85,247,.35);

border-radius:50%;

top:-80px;

left:-80px;

animation:spin 15s linear infinite;
}

@keyframes spin{
from{transform:rotate(0);}
to{transform:rotate(360deg);}
}

@keyframes float{
0%{transform:translateY(0);}
50%{transform:translateY(-20px);}
100%{transform:translateY(0);}
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
text-align:center;
max-width:850px;
margin:0 auto 80px;
}

.section-title span{

display:inline-block;

padding:10px 22px;

border-radius:999px;

background:rgba(168,85,247,.12);

border:1px solid rgba(168,85,247,.2);

color:#c084fc;

font-size:.9rem;

letter-spacing:2px;

margin-bottom:20px;
}

.section-title h2{

font-size:3.7rem;

font-weight:800;

line-height:1.2;

margin-bottom:20px;

background:linear-gradient(
90deg,
#ffffff,
#c4b5fd
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.section-title p{

font-size:1.08rem;

line-height:1.9;

color:#94a3b8;
}

/* =========================
   TOOLS
========================= */

.tools-section{
padding:120px 8%;
}

.tools-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:30px;
}

.tool-link{
text-decoration:none;
color:white;
}

.tool-card{

background:rgba(255,255,255,.04);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.08);

border-radius:24px;

padding:35px;

transition:.4s;

min-height:280px;
}

.tool-card:hover{

transform:translateY(-12px);

box-shadow:0 0 40px rgba(124,58,237,.35);

}

.tool-card h3{

margin:18px 0 15px;

font-size:1.45rem;
}

.tool-card p{

line-height:1.8;

color:#cbd5e1;
}

.card-icon{

width:80px;

height:80px;

display:flex;

align-items:center;

justify-content:center;

font-size:2rem;

border-radius:22px;
}

.purple{background:linear-gradient(135deg,#9333ea,#6d28d9);}
.green{background:linear-gradient(135deg,#10b981,#22c55e);}
.orange{background:linear-gradient(135deg,#fb923c,#f97316);}
.blue{background:linear-gradient(135deg,#3b82f6,#2563eb);}
.pink{background:linear-gradient(135deg,#ec4899,#d946ef);}
.cyan{background:linear-gradient(135deg,#06b6d4,#0ea5e9);}

/* =========================
   USES SECTION
========================= */

.uses-section{

padding:130px 8%;
}

.uses-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));

gap:35px;
}

.use-card{

padding:40px 35px;

border-radius:30px;

background:
linear-gradient(
180deg,
rgba(255,255,255,.06),
rgba(255,255,255,.03)
);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(18px);

transition:.45s ease;

min-height:320px;
}

.use-card:hover{

transform:
translateY(-14px)
scale(1.02);

box-shadow:
0 25px 60px rgba(124,58,237,.22);

}

.mini-label{

display:inline-block;

padding:8px 14px;

font-size:.75rem;

font-weight:600;

letter-spacing:1px;

border-radius:999px;

margin-bottom:18px;

background:
rgba(255,255,255,.05);

color:#a5b4fc;
}

.use-icon{

width:85px;
height:85px;

display:flex;
align-items:center;
justify-content:center;

font-size:2.3rem;

border-radius:24px;

margin-bottom:28px;

background:
linear-gradient(
135deg,
rgba(79,140,255,.22),
rgba(168,85,247,.22)
);

}

.use-card h3{

font-size:1.6rem;

margin-bottom:18px;
}

.use-card p{

line-height:1.9;

color:#cbd5e1;
}

/* =========================
   FEATURES SECTION
========================= */

.features-wrapper{

padding:130px 8%;
}

.features-section{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));

gap:30px;
}

.feature-box{

display:flex;

align-items:flex-start;

gap:22px;

padding:35px;

background:
linear-gradient(
180deg,
rgba(255,255,255,.06),
rgba(255,255,255,.03)
);

border:1px solid rgba(255,255,255,.08);

border-radius:28px;

backdrop-filter:blur(18px);

transition:.45s ease;

min-height:220px;
}

.feature-box:hover{

transform:
translateY(-12px)
scale(1.02);

box-shadow:
0 25px 60px rgba(124,58,237,.22);

}

.feature-icon{

width:75px;

height:75px;

display:flex;

align-items:center;

justify-content:center;

border-radius:22px;

font-size:2rem;

flex-shrink:0;
}

.purple-glow{
background:#7c3aed;
box-shadow:0 0 30px #7c3aed;
}

.green-glow{
background:#22c55e;
box-shadow:0 0 30px #22c55e;
}

.blue-glow{
background:#0ea5e9;
box-shadow:0 0 30px #0ea5e9;
}

.gold-glow{
background:#facc15;
color:#111;
box-shadow:0 0 30px #facc15;
}

.feature-content h3{

font-size:1.45rem;

margin-bottom:14px;
}

.feature-content p{

color:#cbd5e1;

line-height:1.8;
}

/* =========================
   STATS
========================= */

.stats-section{
padding:120px 8%;
text-align:center;
}

.stats-grid{

margin-top:60px;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:25px;
}

.stat-card{

background:rgba(255,255,255,.04);

backdrop-filter:blur(15px);

border:1px solid rgba(255,255,255,.08);

border-radius:24px;

padding:40px 25px;

transition:.4s;
}

.stat-card:hover{

transform:translateY(-10px);

box-shadow:0 0 40px rgba(124,58,237,.35);

}

.stat-icon{

font-size:2.5rem;

margin-bottom:20px;
}

.stat-card h3{

font-size:2.5rem;

background:linear-gradient(
90deg,
#4f8cff,
#a855f7
);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;
}

/* =========================
   BLOG SYSTEM
========================= */

.blog-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
margin-top:40px;
}

.blog-card{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
border-radius:25px;
overflow:hidden;
transition:.4s;
backdrop-filter:blur(20px);
}

.blog-card:hover{
transform:translateY(-10px);
box-shadow:0 0 40px rgba(124,58,237,.3);
}

.blog-card img{
width:100%;
height:220px;
object-fit:cover;
}

.blog-content{
padding:25px;
}

.blog-category{
display:inline-block;
padding:6px 12px;
border-radius:20px;
background:rgba(168,85,247,.15);
color:#c084fc;
font-size:.8rem;
margin-bottom:15px;
}

.blog-content h3{
font-size:1.4rem;
margin-bottom:15px;
}

.blog-content p{
color:#cbd5e1;
line-height:1.8;
margin-bottom:20px;
}

.read-more{
color:#38bdf8;
font-weight:600;
text-decoration:none;
}

.blog-navigation{
display:flex;
justify-content:space-between;
gap:20px;
margin-top:50px;
}

.blog-nav-card{
flex:1;
padding:25px;
border-radius:20px;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
text-decoration:none;
color:white;
transition:.3s;
}

.blog-nav-card:hover{
transform:translateY(-5px);
box-shadow:0 0 30px rgba(124,58,237,.3);
}

.post-container{
max-width:1000px;
margin:auto;
padding:40px;
}

.post-container img{
width:100%;
border-radius:25px;
margin-bottom:30px;
}

.post-title{
font-size:3rem;
margin-bottom:20px;
}

.post-meta{
color:#94a3b8;
margin-bottom:30px;
}

.post-content{
line-height:2;
font-size:18px;
color:#e2e8f0;
}

@media(max-width:768px){

.blog-navigation{
flex-direction:column;
}

.post-title{
font-size:2rem;
}

}









/* =========================
   FOOTER
========================= */
.footer{
    padding:80px 8%;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:100px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.footer h2{
    font-size:2rem;
    margin-bottom:15px;
}

.footer p{
    color:#94a3b8;
    margin-top:10px;
    text-align:center;
}

.footer-links{
    margin:30px 0;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
    width:100%;
}

.footer-links a{
    text-decoration:none;
    color:#cbd5e1;
    padding:12px 20px;
    border-radius:999px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.06);
    transition:.3s;
}

.footer-links a:hover{
    color:white;
    transform:translateY(-5px);
    background:linear-gradient(
        90deg,
        rgba(79,140,255,.15),
        rgba(168,85,247,.15)
    );
}





/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

.hero{
flex-direction:column;
text-align:center;
}

.hero-card{
width:100%;
max-width:420px;
height:420px;
}

.hero h1{
font-size:3.5rem;
}

.section-title h2{
font-size:3rem;
}

}

@media(max-width:768px){

.hero h1{
font-size:2.5rem;
}

.search-box{
flex-direction:column;
}

.search-box input{
border-radius:20px;
margin-bottom:10px;
}

.search-box button{
border-radius:20px;
}

.hero-card{
height:350px;
}

.section-title h2{
font-size:2.2rem;
}

.features-section,
.uses-grid,
.tools-grid,
.stats-grid,
.blog-grid{

grid-template-columns:1fr;
}

}


/* =========================
   PDF CONVERTER PAGE
========================= */

.red{
background:linear-gradient(135deg,#ef4444,#dc2626);
}

.pdf-page{

min-height:100vh;

padding:160px 8% 100px;

display:flex;

justify-content:center;

align-items:center;
}

.pdf-page-content{

width:100%;

max-width:1000px;
}

.pdf-converter-box{

margin-top:50px;

padding:60px 40px;

border-radius:35px;

background:
linear-gradient(
180deg,
rgba(255,255,255,.06),
rgba(255,255,255,.03)
);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(20px);

text-align:center;

box-shadow:
0 20px 60px rgba(124,58,237,.20);

transition:.4s;
}

.pdf-converter-box:hover{

transform:translateY(-8px);

box-shadow:
0 30px 70px rgba(124,58,237,.30);
}

.pdf-big-icon{

width:120px;

height:120px;

margin:0 auto 30px;

display:flex;

align-items:center;

justify-content:center;

font-size:4rem;

border-radius:30px;

background:
linear-gradient(
135deg,
#ef4444,
#dc2626
);

box-shadow:
0 0 40px rgba(239,68,68,.4);
}

.pdf-converter-box h3{

font-size:2rem;

margin-bottom:15px;
}

.pdf-converter-box p{

color:#cbd5e1;

line-height:1.8;

margin-bottom:35px;
}

.file-input{

display:none;
}

.upload-btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:12px;

padding:18px 35px;

border-radius:50px;

cursor:pointer;

font-weight:600;

background:
linear-gradient(
90deg,
#4f8cff,
#a855f7
);

transition:.3s;

color:white;
}

.upload-btn:hover{

transform:translateY(-5px);

box-shadow:
0 10px 30px rgba(124,58,237,.35);
}

.file-name{

margin-top:20px;

color:#94a3b8;

font-size:1rem;
}

.convert-btn{

margin-top:30px;

padding:18px 45px;

border:none;

border-radius:50px;

cursor:pointer;

font-size:1rem;

font-weight:600;

color:white;

background:
linear-gradient(
90deg,
#ec4899,
#8b5cf6
);

transition:.3s;
}

.convert-btn:hover{

transform:translateY(-5px);

box-shadow:
0 10px 30px rgba(168,85,247,.35);
}

.pdf-features{

margin-top:60px;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(220px,1fr));

gap:25px;
}

.pdf-feature{

padding:30px;

border-radius:25px;

background:
rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

transition:.4s;
}

.pdf-feature:hover{

transform:translateY(-10px);

box-shadow:
0 0 35px rgba(124,58,237,.25);
}

.pdf-feature i{

font-size:2rem;

margin-bottom:20px;

background:
linear-gradient(
90deg,
#4f8cff,
#a855f7
);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;
}

.pdf-feature h4{

font-size:1.3rem;

margin-bottom:12px;
}

.pdf-feature p{

font-size:.95rem;

color:#94a3b8;

line-height:1.7;
}

/* =========================
   PDF RESPONSIVE
========================= */

@media(max-width:768px){

.pdf-converter-box{

padding:40px 25px;
}

.pdf-big-icon{

width:90px;
height:90px;
font-size:3rem;
}

.pdf-converter-box h3{

font-size:1.5rem;
}

.upload-btn,
.convert-btn{

width:100%;

justify-content:center;
}

}



/* =========================
   TYPING TEST
========================= */

.typing-page{

min-height:100vh;

padding:140px 8%;

display:flex;

justify-content:center;

align-items:center;

}

.typing-container{

width:100%;

max-width:900px;

}

.typing-box{

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(20px);

padding:50px;

border-radius:30px;

box-shadow:
0 0 40px rgba(124,58,237,.2);

}

.typing-box h1{

font-size:3rem;

margin-bottom:15px;

text-align:center;

}

.typing-desc{

text-align:center;

color:#94a3b8;

margin-bottom:35px;

}

.quote{

background:rgba(255,255,255,.05);

padding:25px;

border-radius:20px;

line-height:1.8;

font-size:1.1rem;

margin-bottom:25px;

color:#e2e8f0;

}

.typing-input{

width:100%;

height:180px;

padding:20px;

border:none;

outline:none;

resize:none;

border-radius:20px;

font-size:1rem;

background:rgba(255,255,255,.05);

color:white;

margin-bottom:30px;

}

.typing-stats{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(150px,1fr));

gap:20px;

margin-bottom:30px;

}

.stat-box{

background:rgba(255,255,255,.05);

padding:25px;

border-radius:20px;

text-align:center;

border:1px solid rgba(255,255,255,.08);

}

.stat-box h3{

font-size:2rem;

margin-bottom:10px;

background:
linear-gradient(
90deg,
#4f8cff,
#a855f7
);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.stat-box p{

color:#cbd5e1;

}

.restart-btn{

width:100%;

padding:18px;

border:none;

border-radius:20px;

cursor:pointer;

font-size:1rem;

font-weight:600;

color:white;

background:
linear-gradient(
90deg,
#4f8cff,
#a855f7
);

transition:.3s;

}

.restart-btn:hover{

transform:translateY(-4px);

opacity:.9;

}



/* =========================
   NOTES MAKER
========================= */

.notes-page{

padding:140px 8%;

min-height:100vh;

display:flex;

justify-content:center;

align-items:center;

}

.notes-container{

width:100%;

max-width:1000px;

}

.notes-box{

padding:40px;

border-radius:30px;

background:
rgba(255,255,255,.05);

border:
1px solid rgba(255,255,255,.08);

backdrop-filter:blur(20px);

box-shadow:
0 20px 60px rgba(0,0,0,.35);

}

.notes-box h1{

font-size:3rem;

margin-bottom:15px;

}

.notes-box p{

color:#cbd5e1;

margin-bottom:30px;

line-height:1.8;

}

.notes-box textarea{

width:100%;

height:250px;

padding:20px;

border:none;

outline:none;

resize:none;

border-radius:20px;

background:
rgba(255,255,255,.06);

color:white;

font-size:16px;

line-height:1.8;

}

.notes-buttons{

display:flex;

gap:15px;

flex-wrap:wrap;

margin-top:25px;

}

.notes-buttons button{

padding:16px 28px;

border:none;

border-radius:16px;

font-weight:700;

cursor:pointer;

color:white;

background:
linear-gradient(
90deg,
#4f8cff,
#a855f7
);

transition:.3s;

}

.notes-buttons button:hover{

transform:translateY(-4px);

opacity:.9;

}

.output-box{

margin-top:35px;

padding:30px;

border-radius:20px;

background:
rgba(255,255,255,.04);

border:
1px solid rgba(255,255,255,.08);

line-height:2;

font-size:17px;

color:#e2e8f0;

min-height:220px;

}


.note-item{

padding:18px;

margin-bottom:18px;

border-radius:16px;

background:
rgba(255,255,255,.05);

border-left:
4px solid #8b5cf6;

line-height:1.9;

font-size:16px;

}


/* ==========================================
            BLOG SYSTEM
========================================== */

.admin-page,
.blog-page,
.post-page{
    padding:140px 8%;
    min-height:100vh;
}

/* ==========================================
            ADMIN PANEL
========================================== */

.admin-box{
    max-width:850px;
    margin:auto;
    padding:40px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    backdrop-filter:blur(20px);
}

.admin-box input,
.admin-box textarea{
    width:100%;
    margin-top:20px;
    padding:18px;
    border:none;
    outline:none;
    border-radius:18px;
    background:rgba(255,255,255,.06);
    color:#fff;
    font-size:16px;
}

.admin-box textarea{
    height:250px;
    resize:none;
}

.admin-box button{
    margin-top:25px;
    padding:18px 35px;
    border:none;
    border-radius:18px;
    cursor:pointer;
    color:#fff;
    font-weight:700;
    font-size:16px;
    background:linear-gradient(135deg,#4f8cff,#8b5cf6);
    transition:.35s;
}

.admin-box button:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(79,140,255,.35);
}

/* ==========================================
            BLOG PAGE
========================================== */

.blog-heading{
    text-align:center;
    font-size:3.8rem;
    margin-bottom:60px;
    font-weight:800;
}

/* ==========================================
            BLOG GRID
========================================== */

#blogContainer{

    max-width:1400px;
    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

    align-items:stretch;

}

/* ==========================================
            BLOG CARD
========================================== */

.blog-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:26px;

    backdrop-filter:blur(20px);

    overflow:hidden;

    display:flex;

    flex-direction:column;

    transition:.35s;

    height:100%;

}

.blog-card:hover{

    transform:translateY(-8px);

    border-color:#8b5cf6;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

/* ==========================================
            BLOG IMAGE
========================================== */

.blog-image{

    width:100%;

    height:220px;

    object-fit:cover;

    display:block;

}

/* ==========================================
            CONTENT
========================================== */

.blog-content{

    padding:24px;

    display:flex;

    flex-direction:column;

    flex:1;

}

/* ==========================================
            CATEGORY
========================================== */

.blog-category{

    display:inline-block;

    margin-bottom:12px;

    color:#8b5cf6;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

}

/* ==========================================
            TITLE
========================================== */

.blog-title{

    font-size:1.8rem;

    font-weight:700;

    line-height:1.4;

    color:#fff;

    margin-bottom:15px;

}

/* ==========================================
            DESCRIPTION
========================================== */

.blog-description{

    color:#cbd5e1;

    line-height:1.8;

    font-size:15px;

    margin-bottom:25px;

    flex:1;

}

/* ==========================================
            READ MORE
========================================== */

.read-more{

    margin-top:auto;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    align-self:flex-start;

    padding:12px 24px;

    border-radius:30px;

    text-decoration:none;

    color:#fff;

    font-weight:600;

    background:linear-gradient(135deg,#8b5cf6,#4f8cff);

    transition:.35s;

}

.read-more:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 25px rgba(139,92,246,.35);

}

/* ==========================================
            POST PAGE
========================================== */

#postContainer{

    max-width:1000px;

    margin:auto;

    padding:45px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    backdrop-filter:blur(20px);

}

.post-image{

    width:100%;

    max-height:500px;

    object-fit:cover;

    border-radius:25px;

    margin-bottom:30px;

}

#postContainer h1{

    font-size:3rem;

    margin-bottom:25px;

}

#postContainer p{

    color:#cbd5e1;

    font-size:18px;

    line-height:2;

    margin-bottom:22px;

}

/* ==========================================
            RESPONSIVE
========================================== */

@media(max-width:1200px){

#blogContainer{

grid-template-columns:
repeat(2,1fr);

}

}

@media(max-width:768px){

.blog-heading{

font-size:2.5rem;

}

#blogContainer{

grid-template-columns:1fr;

gap:25px;

}

.blog-card{

border-radius:22px;

}

.blog-image{

height:210px;

}

.blog-title{

font-size:1.5rem;

}

#postContainer{

padding:25px;

}

#postContainer h1{

font-size:2rem;

}

}

@media(max-width:480px){

.admin-page,
.blog-page,
.post-page{

padding:110px 5%;

}

.blog-heading{

font-size:2rem;

}

.blog-image{

height:190px;

}

.blog-content{

padding:18px;

}

.read-more{

width:100%;

justify-content:center;

}

}

/* ==========================================
            BLOG SECTION
========================================== */

.blog-section{
    padding:100px 8%;
}

/* ==========================================
            SECTION TITLE
========================================== */

.section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.section-title span{
    display:inline-block;
    color:#8b5cf6;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.section-title h2{
    font-size:3rem;
    font-weight:800;
    margin-bottom:18px;
}

.section-title p{
    color:#cbd5e1;
    line-height:1.8;
    font-size:17px;
}

/* ==========================================
            BLOG GRID
========================================== */

.blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;
    max-width:1400px;
    margin:auto;
}

/* ==========================================
            LINK
========================================== */

.tool-link{
    display:block;
    text-decoration:none;
    color:inherit;
    height:100%;
}

/* ==========================================
            EMPTY STATE
========================================== */

.blog-empty{
    grid-column:1/-1;
    text-align:center;
    padding:80px 30px;
    border-radius:25px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
}

.blog-empty i{
    font-size:60px;
    color:#8b5cf6;
    margin-bottom:20px;
}

.blog-empty h3{
    font-size:2rem;
    margin-bottom:10px;
}

.blog-empty p{
    color:#cbd5e1;
}

