:root{

--primary:#5B3DF5;
--primary-dark:#4324d9;
--secondary:#7A5CFF;
--accent:#00D4FF;

--bg:#F5F7FB;
--white:#ffffff;

--text:#1C2430;
--text-light:#6B7280;

--border:#E8ECF4;

--radius:28px;

--shadow:0 20px 60px rgba(20,20,43,.08);

--transition:.35s cubic-bezier(.4,0,.2,1);

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:Poppins,sans-serif;

font-size:16px;

color:var(--text);

background:var(--bg);

line-height:1.8;

overflow-x:hidden;

}

img{

max-width:100%;

display:block;

height:auto;

}

a{

text-decoration:none;

color:inherit;

transition:var(--transition);

}

button{

font-family:inherit;

cursor:pointer;

}

.kg-container{

width:min(1320px,92%);

margin:auto;

}

section{

position:relative;

padding:95px 0;

}

.kg-section-title{

text-align:center;

margin-bottom:65px;

}

.kg-section-title span{

display:inline-flex;

padding:10px 18px;

border-radius:999px;

background:#ede8ff;

color:var(--primary);

font-weight:700;

margin-bottom:18px;

}

.kg-section-title h2{

font-size:46px;

font-weight:800;

line-height:1.15;

margin-bottom:16px;

}

.kg-section-title p{

max-width:720px;

margin:auto;

font-size:17px;

color:var(--text-light);

}

.kg-btn{

display:inline-flex;

align-items:center;

justify-content:center;

height:58px;

padding:0 34px;

border-radius:999px;

background:linear-gradient(135deg,var(--primary),var(--secondary));

color:#fff;

font-weight:700;

box-shadow:0 18px 45px rgba(91,61,245,.22);

transition:var(--transition);

}

.kg-btn:hover{

transform:translateY(-4px);

box-shadow:0 25px 60px rgba(91,61,245,.30);

}

.kg-btn-outline{

display:inline-flex;

align-items:center;

justify-content:center;

height:58px;

padding:0 34px;

border-radius:999px;

border:2px solid var(--primary);

background:#fff;

color:var(--primary);

font-weight:700;

transition:var(--transition);

}

.kg-btn-outline:hover{

background:var(--primary);

color:#fff;

}

.kg-badge{

display:inline-flex;

align-items:center;

padding:10px 18px;

border-radius:999px;

background:#ede8ff;

color:var(--primary);

font-weight:700;

margin-bottom:24px;

}

.kg-hero{

padding-top:0px;

overflow:hidden;

}

.kg-bg-circle{

position:absolute;

border-radius:50%;

filter:blur(110px);

opacity:.28;

pointer-events:none;

}

.kg-circle-1{

width:480px;

height:480px;

right:-150px;

top:-150px;

background:#5B3DF5;

}

.kg-circle-2{

width:320px;

height:320px;

left:-120px;

bottom:50px;

background:#00D4FF;

}

.kg-hero-grid{

display:grid;

grid-template-columns:1.08fr .92fr;

gap:70px;

align-items:center;

}

.kg-left h1{

font-size:68px;

line-height:1.08;

font-weight:800;

margin-bottom:22px;

}

.kg-left p{

font-size:18px;

color:var(--text-light);

margin-bottom:38px;

max-width:640px;

}

.kg-buttons{

display:flex;

gap:18px;

flex-wrap:wrap;

margin-bottom:48px;

}

.kg-stats{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

}

.kg-stat{

background:#fff;

padding:28px;

border-radius:26px;

box-shadow:var(--shadow);

text-align:center;

transition:var(--transition);

}

.kg-stat:hover{

transform:translateY(-8px);

}

.kg-stat h2{

font-size:38px;

font-weight:800;

color:var(--primary);

margin-bottom:8px;

}

.kg-stat p{

font-size:15px;

color:var(--text-light);

}

.kg-phone{

background:#fff;

padding:28px;

border-radius:42px;

box-shadow:0 35px 80px rgba(0,0,0,.12);

position:relative;

overflow:hidden;

}

.kg-phone::before{

content:"";

position:absolute;

top:-120px;

right:-120px;

width:240px;

height:240px;

border-radius:50%;

background:rgba(91,61,245,.06);

}

.kg-quiz-card{

position:relative;

z-index:2;

background:linear-gradient(135deg,var(--primary),var(--secondary));

padding:30px;

border-radius:28px;

color:#fff;

margin-bottom:22px;

}

.kg-quiz-card h2{

font-size:28px;

font-weight:700;

margin-bottom:10px;

}

.kg-quiz-card p{

opacity:.9;

margin-bottom:22px;

}

.kg-progress{

height:10px;

background:rgba(255,255,255,.25);

border-radius:999px;

overflow:hidden;

margin-bottom:24px;

}

.kg-progress span{

display:block;

height:100%;

width:74%;

background:#00D4FF;

border-radius:999px;

}

.kg-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:16px;

position:relative;

z-index:2;

}

.kg-feature{

background:#f8f9fd;

padding:22px;

border-radius:20px;

display:flex;

align-items:center;

justify-content:center;

font-weight:600;

transition:var(--transition);

}

.kg-feature:hover{

background:var(--primary);

color:#fff;

transform:translateY(-5px);

}

.kg-categories{

background:#fff;

}

.kg-category-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:28px;

}

.kg-category-card{

background:#fff;

padding:34px;

border-radius:28px;

box-shadow:var(--shadow);

position:relative;

overflow:hidden;

transition:var(--transition);

text-align:center;

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;

}

.kg-category-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:6px;

background:linear-gradient(90deg,var(--primary),var(--secondary),var(--accent));

}

.kg-category-card:hover{

transform:translateY(-10px);

}

.kg-icon{

width:82px;

height:82px;

border-radius:24px;

background:linear-gradient(135deg,var(--primary),var(--secondary));

display:flex;

align-items:center;

justify-content:center;

font-size:36px;

color:#fff;

margin:0 auto 24px;

}

.kg-category-card h3{

font-size:24px;

margin-bottom:12px;

font-weight:700;

}

.kg-category-card p{

color:var(--text-light);

line-height:1.8;

}

.kg-featured-tests{

background:var(--bg);

}

.kg-post-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.kg-post-card{

background:#fff;

border-radius:30px;

overflow:hidden;

box-shadow:var(--shadow);

transition:var(--transition);

}

.kg-post-card:hover{

transform:translateY(-10px);

}

.kg-post-image{

height:240px;

overflow:hidden;

}

.kg-post-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.45s;

}

.kg-post-card:hover .kg-post-image img{

transform:scale(1.08);

}

.kg-post-content{

padding:28px;

}

.kg-post-meta{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:16px;

font-size:13px;

color:var(--text-light);

}

.kg-post-content h3{

font-size:24px;

line-height:1.4;

margin-bottom:14px;

font-weight:700;

}

.kg-post-content p{

line-height:1.8;

color:var(--text-light);

margin-bottom:24px;

}

.kg-read-more{

display:inline-flex;

align-items:center;

gap:8px;

font-weight:700;

color:var(--primary);

}

.kg-daily-banner{

background:#fff;

}

.kg-banner-box{

display:flex;

justify-content:space-between;

align-items:center;

gap:60px;

padding:70px;

border-radius:36px;

background:linear-gradient(135deg,var(--primary),var(--secondary));

overflow:hidden;

position:relative;

color:#fff;

}

.kg-banner-box::before{

content:"";

position:absolute;

right:-120px;

top:-120px;

width:340px;

height:340px;

border-radius:50%;

background:rgba(255,255,255,.08);

}

.kg-banner-content{

position:relative;

z-index:2;

max-width:640px;

}

.kg-banner-content h2{

font-size:48px;

font-weight:800;

line-height:1.2;

margin-bottom:18px;

}

.kg-banner-content p{

font-size:18px;

line-height:1.9;

opacity:.94;

margin-bottom:30px;

}

.kg-banner-icon{

position:relative;

z-index:2;

font-size:170px;

line-height:1;

}

.kg-current-affairs{

background:#fff;

}

.kg-news-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:28px;

}

.kg-news-card{

background:#fff;

border-radius:28px;

overflow:hidden;

box-shadow:var(--shadow);

transition:var(--transition);

}

.kg-news-card:hover{

transform:translateY(-10px);

}

.kg-news-image{

height:220px;

overflow:hidden;

}

.kg-news-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.45s;

}

.kg-news-card:hover .kg-news-image img{

transform:scale(1.08);

}

.kg-news-content{

padding:26px;

}

.kg-news-content h3{

font-size:22px;

line-height:1.45;

margin-bottom:14px;

font-weight:700;

}

.kg-news-content p{

line-height:1.8;

color:var(--text-light);

margin-bottom:20px;

}

.kg-leaderboard{

background:var(--bg);

}

.kg-board-grid{

display:grid;

grid-template-columns:1.05fr .95fr;

gap:32px;

}

.kg-board-card{

background:#fff;

border-radius:32px;

padding:38px;

box-shadow:var(--shadow);

}

.kg-rank-row{

display:flex;

justify-content:space-between;

align-items:center;

padding:20px 0;

border-bottom:1px solid var(--border);

}

.kg-rank-row:last-child{

border-bottom:none;

}

.kg-rank-left{

display:flex;

align-items:center;

gap:18px;

}

.kg-rank-number{

width:58px;

height:58px;

border-radius:50%;

background:linear-gradient(135deg,var(--primary),var(--secondary));

display:flex;

align-items:center;

justify-content:center;

font-size:22px;

font-weight:700;

color:#fff;

}

.kg-rank-left h4{

font-size:19px;

font-weight:700;

margin-bottom:4px;

}

.kg-rank-left p{

font-size:14px;

color:var(--text-light);

}

.kg-rank-score{

font-size:24px;

font-weight:800;

color:var(--primary);

}

.kg-stats-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:22px;

height:100%;

}

.kg-stat-box{

background:#f8f9fd;

border-radius:24px;

padding:32px;

text-align:center;

transition:var(--transition);

}

.kg-stat-box:hover{

transform:translateY(-6px);

background:#fff;

box-shadow:var(--shadow);

}

.kg-stat-box h2{

font-size:42px;

font-weight:800;

color:var(--primary);

margin-bottom:10px;

}

.kg-stat-box p{

font-size:15px;

color:var(--text-light);

}

.kg-why{

background:#fff;

}

.kg-feature-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:28px;

}

.kg-feature-card{

background:#fff;

padding:34px;

border-radius:30px;

box-shadow:var(--shadow);

text-align:center;

transition:var(--transition);

}

.kg-feature-card:hover{

transform:translateY(-10px);

}

.kg-feature-icon{

width:90px;

height:90px;

margin:0 auto 24px;

border-radius:24px;

display:flex;

align-items:center;

justify-content:center;

font-size:42px;

background:linear-gradient(135deg,var(--primary),var(--secondary));

color:#fff;

}

.kg-feature-card h3{

font-size:24px;

font-weight:700;

margin-bottom:14px;

}

.kg-feature-card p{

line-height:1.8;

color:var(--text-light);

}

.kg-exams{

background:var(--bg);

}

.kg-exam-grid{

display:grid;

grid-template-columns:repeat(6,1fr);

gap:24px;

}

.kg-exam-card{

display:flex;

flex-direction:column;

align-items:center;

justify-content:center;

text-align:center;

padding:34px 20px;

background:#fff;

border-radius:28px;

box-shadow:var(--shadow);

transition:var(--transition);

position:relative;

overflow:hidden;

}

.kg-exam-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:linear-gradient(90deg,var(--primary),var(--secondary),var(--accent));

transform:scaleX(0);

transform-origin:left;

transition:var(--transition);

}

.kg-exam-card:hover::before{

transform:scaleX(1);

}

.kg-exam-card:hover{

transform:translateY(-10px);

}

.kg-exam-icon{

width:88px;

height:88px;

display:flex;

align-items:center;

justify-content:center;

border-radius:24px;

background:linear-gradient(135deg,var(--primary),var(--secondary));

font-size:42px;

color:#fff;

margin-bottom:22px;

}

.kg-exam-card h3{

font-size:22px;

font-weight:700;

margin-bottom:10px;

}

.kg-exam-card p{

font-size:15px;

color:var(--text-light);

line-height:1.7;

}

.kg-download{

background:#fff;

}

.kg-download-box{

display:grid;

grid-template-columns:1.1fr .9fr;

gap:70px;

align-items:center;

padding:70px;

background:#f8f9fd;

border-radius:36px;

}

.kg-download-content h2{

font-size:48px;

font-weight:800;

line-height:1.2;

margin-bottom:18px;

}

.kg-download-content p{

font-size:18px;

color:var(--text-light);

line-height:1.9;

margin-bottom:34px;

max-width:620px;

}

.kg-counter-section{

background:linear-gradient(135deg,var(--primary),var(--secondary));

color:#fff;

}

.kg-counter-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:28px;

}

.kg-counter-card{

padding:36px;

border-radius:30px;

background:rgba(255,255,255,.08);

backdrop-filter:blur(16px);

text-align:center;

transition:var(--transition);

}

.kg-counter-card:hover{

transform:translateY(-8px);

}

.kg-counter-number{

font-size:54px;

font-weight:800;

margin-bottom:12px;

}

.kg-counter-card h3{

font-size:22px;

margin-bottom:12px;

font-weight:700;

}

.kg-counter-card p{

opacity:.92;

line-height:1.8;

}

.kg-newsletter{

background:#fff;

}

.kg-newsletter-box{

display:grid;

grid-template-columns:1.15fr .85fr;

gap:50px;

align-items:center;

padding:70px;

border-radius:36px;

background:linear-gradient(135deg,var(--primary),var(--secondary));

color:#fff;

position:relative;

overflow:hidden;

}

.kg-newsletter-box::before{

content:"";

position:absolute;

right:-120px;

top:-120px;

width:340px;

height:340px;

border-radius:50%;

background:rgba(255,255,255,.08);

}

.kg-newsletter-content{

position:relative;

z-index:2;

}

.kg-newsletter-content h2{

font-size:46px;

font-weight:800;

line-height:1.2;

margin-bottom:18px;

}

.kg-newsletter-content p{

font-size:18px;

line-height:1.9;

opacity:.95;

max-width:620px;

}

.kg-newsletter-form{

position:relative;

z-index:2;

display:flex;

gap:16px;

align-items:center;

justify-content:flex-end;

}

.kg-newsletter-form input{

width:100%;

height:60px;

padding:0 22px;

border:none;

outline:none;

border-radius:999px;

background:#fff;

font-size:15px;

color:var(--text);

box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.kg-newsletter-form input::placeholder{

color:#9ca3af;

}

.kg-newsletter-form .kg-btn{

border:none;

min-width:180px;

}

.kg-final-cta{

background:var(--bg);

}

.kg-final-box{

padding:80px;

border-radius:40px;

background:#fff;

box-shadow:var(--shadow);

text-align:center;

}

.kg-final-box h2{

font-size:50px;

font-weight:800;

line-height:1.2;

margin-bottom:18px;

}

.kg-final-box p{

max-width:720px;

margin:0 auto 34px;

font-size:18px;

line-height:1.9;

color:var(--text-light);

}

.kg-home-footer{

background:#111827;

color:#fff;

padding:90px 0 30px;

}

.kg-footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:40px;

margin-bottom:60px;

}

.kg-footer-column h3{

font-size:24px;

font-weight:700;

margin-bottom:22px;

}

.kg-footer-column p{

line-height:1.9;

color:#cbd5e1;

max-width:420px;

}

.kg-footer-column ul{

list-style:none;

}

.kg-footer-column li{

margin-bottom:14px;

}

.kg-footer-column a{

color:#cbd5e1;

transition:var(--transition);

}

.kg-footer-column a:hover{

color:#fff;

}

.kg-social-links{

display:flex;

gap:16px;

flex-wrap:wrap;

margin-top:28px;

}

.kg-social-links a{

display:inline-flex;

align-items:center;

justify-content:center;

padding:10px 18px;

border-radius:999px;

background:rgba(255,255,255,.08);

font-size:14px;

font-weight:600;

}

.kg-social-links a:hover{

background:var(--primary);

}

.kg-footer-bottom{

padding-top:28px;

border-top:1px solid rgba(255,255,255,.08);

text-align:center;

color:#94a3b8;

font-size:14px;

}

.kg-scroll-top{

position:fixed;

right:28px;

bottom:28px;

width:58px;

height:58px;

border:none;

border-radius:50%;

background:linear-gradient(135deg,var(--primary),var(--secondary));

color:#fff;

font-size:22px;

font-weight:700;

cursor:pointer;

box-shadow:0 18px 45px rgba(91,61,245,.30);

opacity:0;

visibility:hidden;

transform:translateY(20px);

transition:var(--transition);

z-index:999;

}

.kg-scroll-top.show{

opacity:1;

visibility:visible;

transform:translateY(0);

}

.kg-scroll-top:hover{

transform:translateY(-6px);

}

.kg-faq{

background:#fff;

}

.kg-faq-wrapper{

max-width:980px;

margin:auto;

}

.kg-faq-item{

background:#fff;

border:1px solid var(--border);

border-radius:22px;

margin-bottom:18px;

overflow:hidden;

box-shadow:var(--shadow);

}

.kg-faq-question{

width:100%;

display:flex;

align-items:center;

justify-content:space-between;

padding:24px 30px;

background:#fff;

border:none;

font-size:20px;

font-weight:700;

color:var(--text);

text-align:left;

}

.kg-faq-icon{

font-size:28px;

color:var(--primary);

transition:var(--transition);

}

.kg-faq-item.active .kg-faq-icon{

transform:rotate(45deg);

}

.kg-faq-answer{

max-height:0;

overflow:hidden;

transition:max-height .35s ease;

}

.kg-faq-answer p{

padding:0 30px 28px;

color:var(--text-light);

line-height:1.9;

}

.kg-footer-banner{

padding-top:0;

background:var(--bg);

}

.kg-footer-banner-box{

display:flex;

align-items:center;

justify-content:space-between;

gap:50px;

padding:60px;

border-radius:34px;

background:linear-gradient(135deg,var(--primary),var(--secondary));

color:#fff;

overflow:hidden;

position:relative;

}

.kg-footer-banner-box::after{

content:"";

position:absolute;

right:-120px;

bottom:-120px;

width:320px;

height:320px;

border-radius:50%;

background:rgba(255,255,255,.08);

}

.kg-footer-banner-box h2{

font-size:44px;

font-weight:800;

line-height:1.2;

margin-bottom:18px;

position:relative;

z-index:2;

}

.kg-footer-banner-box p{

font-size:18px;

line-height:1.9;

opacity:.95;

max-width:620px;

position:relative;

z-index:2;

}

/* =========================
ANIMATIONS
========================= */

.kg-reveal{

opacity:0;

transform:translateY(40px);

transition:opacity .8s ease,transform .8s ease;

}

.kg-reveal.active{

opacity:1;

transform:translateY(0);

}

@keyframes kgFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}

@keyframes kgPulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.04);

}

100%{

transform:scale(1);

}

}

@keyframes kgRotate{

0%{

transform:rotate(0deg);

}

100%{

transform:rotate(360deg);

}

}

.kg-mobile-preview{

animation:kgFloat 6s ease-in-out infinite;

}

.kg-banner-icon{

animation:kgFloat 5s ease-in-out infinite;

}

.kg-icon,

.kg-feature-icon,

.kg-exam-icon{

animation:kgPulse 5s infinite;

}

.kg-circle-1{

animation:kgRotate 45s linear infinite;

}

.kg-circle-2{

animation:kgRotate 35s linear infinite reverse;

}

/* =========================
RESPONSIVE
========================= */

@media (max-width:1200px){

.kg-hero-grid,

.kg-download-box,

.kg-newsletter-box,

.kg-board-grid,

.kg-footer-grid{

grid-template-columns:1fr;

}

.kg-category-grid{

grid-template-columns:repeat(2,1fr);

}

.kg-post-grid{

grid-template-columns:repeat(2,1fr);

}

.kg-news-grid{

grid-template-columns:repeat(2,1fr);

}

.kg-feature-grid{

grid-template-columns:repeat(2,1fr);

}

.kg-counter-grid{

grid-template-columns:repeat(2,1fr);

}

.kg-exam-grid{

grid-template-columns:repeat(3,1fr);

}

.kg-banner-box,

.kg-footer-banner-box{

flex-direction:column;

text-align:center;

}

.kg-newsletter-form{

justify-content:flex-start;

}

}

@media (max-width:992px){

.kg-left h1{

font-size:52px;

}

.kg-section-title h2{

font-size:40px;

}

.kg-banner-content h2,

.kg-download-content h2,

.kg-final-box h2{

font-size:40px;

}

}


@media (max-width:768px){

section{

padding:70px 0;

}

.kg-container{

width:min(94%,100%);

}

.kg-hero{

padding-top:20px;

}

.kg-left{

text-align:center;

}

.kg-left h1{

font-size:38px;

line-height:1.15;

}

.kg-left p{

font-size:16px;

margin-inline:auto;

}

.kg-buttons{

justify-content:center;

}

.kg-btn,

.kg-btn-outline{

width:100%;

}

.kg-stats,

.kg-category-grid,

.kg-post-grid,

.kg-news-grid,

.kg-feature-grid,

.kg-counter-grid,

.kg-exam-grid,

.kg-stats-grid{

grid-template-columns:1fr;

}

.kg-phone{

padding:22px;

border-radius:28px;

}

.kg-quiz-card{

padding:24px;

}

.kg-download-box,

.kg-newsletter-box,

.kg-banner-box,

.kg-footer-banner-box,

.kg-final-box{

padding:36px;

}

.kg-banner-icon{

font-size:110px;

}

.kg-download-content,

.kg-newsletter-content{

text-align:center;

}

.kg-newsletter-form{

flex-direction:column;

}

.kg-newsletter-form input,

.kg-newsletter-form .kg-btn{

width:100%;

}

.kg-footer-grid{

grid-template-columns:1fr;

gap:30px;

text-align:center;

}

.kg-social-links{

justify-content:center;

}

.kg-footer-column p{

margin-inline:auto;

}

.kg-footer-banner-box .kg-buttons,

.kg-final-box .kg-buttons{

justify-content:center;

}

}

@media (max-width:576px){

:root{

--radius:22px;

}

.kg-section-title{

margin-bottom:45px;

}

.kg-section-title h2{

font-size:30px;

line-height:1.2;

}

.kg-section-title p{

font-size:15px;

}

.kg-left h1{

font-size:32px;

}

.kg-left p{

font-size:15px;

}

.kg-stat,

.kg-category-card,

.kg-post-content,

.kg-news-content,

.kg-feature-card,

.kg-counter-card,

.kg-board-card,

.kg-exam-card,

.kg-phone,

.kg-faq-question,

.kg-faq-answer p{

padding:22px;

}

.kg-banner-content h2,

.kg-download-content h2,

.kg-newsletter-content h2,

.kg-final-box h2,

.kg-footer-banner-box h2{

font-size:30px;

}

.kg-banner-content p,

.kg-download-content p,

.kg-newsletter-content p,

.kg-final-box p,

.kg-footer-banner-box p{

font-size:15px;

}

.kg-counter-number{

font-size:40px;

}

.kg-post-image,

.kg-news-image{

height:200px;

}

.kg-scroll-top{

width:50px;

height:50px;

right:18px;

bottom:18px;

font-size:18px;

}

}

::selection{

background:var(--primary);

color:#fff;

}

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#edf1f7;

}

::-webkit-scrollbar-thumb{

background:linear-gradient(180deg,var(--primary),var(--secondary));

border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

background:var(--primary-dark);

}

body.admin-bar .kg-scroll-top{

bottom:60px;

}

body{

-webkit-font-smoothing:antialiased;

-moz-osx-font-smoothing:grayscale;

text-rendering:optimizeLegibility;

}


.kg-topbar{

    position:relative;

    top:auto;
    left:auto;
    width:100%;
    z-index:1;
    background:#ffffff;
    border-bottom:1px solid rgba(0,0,0,.06);

}

.kg-topbar-inner{

    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:74px;

}

.kg-brand{

    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;

}

.kg-brand-logo{

    width:52px;
    height:52px;
    border-radius:16px;
    background:linear-gradient(135deg,#6c4cff,#7d5fff);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:700;
    box-shadow:0 14px 35px rgba(108,76,255,.30);

}

.kg-brand-text h2{

    margin:0;
    color:#171a2f;
    font-size:20px;
    font-weight:700;
    line-height:1.2;

}

.kg-brand-text span{

    display:block;
    margin-top:4px;
    color:#7d8196;
    font-size:13px;

}

.kg-menu-btn{

    width:52px;
    height:52px;
    border:none;
    border-radius:16px;
    background:#f4f5fb;
    cursor:pointer;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:6px;

}

.kg-menu-btn span{

    width:22px;
    height:2px;
    background:#1d2035;
    border-radius:5px;

}

@media(max-width:768px){

    .kg-topbar-inner{

        min-height:68px;

    }

    .kg-brand-logo{

        width:46px;
        height:46px;
        font-size:18px;

    }

    .kg-brand-text h2{

        font-size:18px;

    }

    .kg-brand-text span{

        font-size:12px;

    }

}

