:root{
    --bg:#f4f7fb;
    --card:#ffffff;
    --border:#e5edf6;
    --text:#152235;
    --soft:#708197;
    --blue:#2563eb;
    --shadow:0 15px 40px rgba(15,23,42,.06);
}

a{ text-decoration:none; color:inherit; }
img{ max-width:100%; display:block; }

.news-page{
    max-width:1300px;
    margin:26px auto 70px;
    padding:0 18px;
    position:relative;
}

.news-layout{
    display:flex;
    align-items:flex-start;
    gap:22px;
    width:100%;
}

main{
    flex:1;
    min-width:0;
}

.sidebar{
    width:385px;
    min-width:385px;
    position: sticky;
    top: 24px; 
    align-self: flex-start;
    z-index: 50;
    height: auto; 
    max-height: calc(100vh - 48px); 
    display: flex;
}

.side-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:30px;
    padding:24px;
    box-shadow:var(--shadow);
    width: 100%;
    height: auto; 
    max-height: calc(100vh - 48px); 
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.comments-list {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow-y: auto;
    flex: 1; 
    padding-right: 5px;
}

.comments-list::-webkit-scrollbar { width: 5px; }
.comments-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }

.news-hero{
    position:relative;
    border-radius:30px;
    overflow:hidden;
    min-height:320px; 
    background:#000;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    margin-bottom:22px;
}

.news-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.4) 100%);
    z-index:1;
}

.news-cover{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:5;
    padding:24px; 
}

body.dark .side-card{
    background:#16252d;
    border-color:#243843;
    box-shadow:0 12px 30px rgba(0,0,0,.38);
}

body.dark .content-card{
    background:#16252d;
    border-color:#243843;
    box-shadow:0 12px 30px rgba(0,0,0,.38);
}

body.dark .news-content{
    color:#d8e3ed;
}

body.dark .news-content p,
body.dark .news-content span,
body.dark .news-content div,
body.dark .news-content li,
body.dark .news-content strong,
body.dark .news-content em,
body.dark .news-content b{
    opacity:1;
}

body.dark .news-content *{
    background-color:transparent !important;
}
.categorynews{
    position:relative;
    z-index:6;
    width:max-content;
    height:28px;
    padding:0 12px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:10px;
    font-weight:900;
    letter-spacing:.8px;
    margin-bottom:12px;
    text-transform:uppercase;
    backdrop-filter:blur(10px);
}

.kat-rozet{ background:rgba(23,163,74,.2); border:1px solid rgba(23,163,74,.3); color:#7ff0a8; }
.kat-guncelleme{ background:rgba(45,108,255,.2); border:1px solid rgba(45,108,255,.3); color:#8eb7ff; }
.kat-habbo{ background:rgba(255,196,0,.2); border:1px solid rgba(255,196,0,.3); color:#ffd76d; }

.news-title{
    position:relative;
    z-index:6;
    font-size:clamp(22px, 3vw, 36px); 
    line-height:1.1;
    letter-spacing:-1px;
    margin-bottom:8px;
    color:#fff;
    max-width:900px;
    text-shadow:0 5px 15px rgba(0,0,0,.5);
}

.news-excerpt{
    position:relative;
    z-index:6;
    font-size:13px;
    line-height:1.6;
    max-width:720px;
    color:rgba(255,255,255,.85);
    margin-bottom: 10px;
}

.hero-bottom{
    position:relative;
    z-index:6;
    margin-top:16px;
}

.author-card{ display:flex; align-items:center; gap:12px; }
.author-avatar{
    width:48px; height:48px;
    border-radius:14px;
    overflow:hidden;
    position:relative;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.15);
    flex-shrink:0;
    backdrop-filter:blur(10px);
}
.author-avatar img{ width:70px; position:absolute; left:50%; top:-4px; transform:translateX(-50%); }
.author-name{ font-size:15px; margin-bottom:4px; color:#fff; font-weight:700; }
.author-meta{ display:flex; align-items:center; gap:8px; flex-wrap:wrap; }

.meta-pill{
    height:28px;
    padding:0 10px;
    border-radius:10px;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    display:flex;
    align-items:center;
    gap:5px;
    font-size:11px;
    font-weight:700;
    color:#fff;
}
.meta-pill img{ width:12px; height:12px; object-fit:contain; }

.news-badges{ position:relative; z-index:6; margin-top:14px; }
.badges-grid{ display:flex; flex-wrap:wrap; gap:8px; }
.badge-card{
    position:relative; width:45px; height:45px; border-radius:12px;
    background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(12px); display:flex; align-items:center; justify-content:center;
    transition:.16s ease; cursor:pointer;
}
.badge-card:hover{ transform:translateY(-2px); background:rgba(255,255,255,.2); }
.badge-card img{ width:28px; height:28px; object-fit:contain; }

.content-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:30px;
    padding:34px;
    box-shadow:var(--shadow);
}

.news-content{ color:#334155; font-size:15px; line-height:2.1; }
body.dark .news-content{ color:#d8e3ed; }
.news-content img{ width:100%; border-radius:22px; margin:24px 0; }

.side-title{ display:flex; align-items:center; gap:12px; margin-bottom:15px; flex-shrink: 0; }
.side-icon{
    width:42px; height:42px; border-radius:12px;
    background:#f3f7fd; border:1px solid #e4edf7;
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
body.dark .side-icon{ background:#182230; border-color:#2c3c50; }
.side-icon img{ width:20px; height:20px; }
.side-title span{ display:block; color:var(--soft); font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.8px; }
.side-title strong{ display:block; font-size:18px; font-weight:900; letter-spacing:-0.5px; }

.comment-profile{ display:flex; align-items:center; gap:12px; margin-bottom:12px; padding:10px; border-radius:18px; background:#f8fbff; border:1px solid #e5edf7; }
body.dark .comment-profile{ background:#182230; border-color:#2c3c50; }
.comment-profile-avatar img{ width:70px; position:absolute; left:50%; top:-4px; transform:translateX(-50%); }

.comment-form{ margin-bottom: 15px; flex-shrink: 0; }
.comment-textarea-box{ display:flex; align-items:flex-start; gap:10px; margin-bottom:10px; }
.comment-mini-avatar img{ width:92px; position:absolute; left:50%; top:-4px; transform:translateX(-50%); }
.comment-form textarea{ width:100%; min-height:80px; height:80px; resize:none; border:none; outline:none; border-radius:16px; background:#f8fafc; border:1px solid #e4ecf5; padding:12px; font-size:13px; line-height:1.6; font-weight:500; color:#243244; box-sizing: border-box; }
body.dark .comment-form textarea{ background:#182230; border-color:#2b3c50; color:#f1f5f9; }
.comment-submit{ width:100%; height:44px; border:none; outline:none; border-radius:14px; background:#2563eb; color:#fff; font-size:13px; font-weight:900; cursor:pointer; display:flex; align-items:center; justify-content:center; gap:8px; }
.comment-profile-avatar,
.comment-mini-avatar,
.comment-avatar{
    width:62px;
    height:62px;

    border-radius:18px;

    overflow:hidden;

    position:relative;

    flex-shrink:0;

    background-size:cover;
    background-position:center;

    border:1px solid rgba(255,255,255,.72);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.55),
        0 4px 12px rgba(0,0,0,.10);
}

body.dark .comment-profile-avatar,
body.dark .comment-mini-avatar,
body.dark .comment-avatar{
    border-color:rgba(255,255,255,.08);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.03),
        0 6px 16px rgba(0,0,0,.28);
}
.comment-item{ background:#f8fbff; border:1px solid #e4edf7; border-radius:20px; padding:14px; margin-bottom: 2px; }
body.dark .comment-item{ background:#182230; border-color:#2b3c50; }
.comment-top{ display:flex; align-items:center; gap:10px; margin-bottom:8px; }
.comment-avatar img{ width:92px; position:absolute; left:50%; top:-4px; transform:translateX(-50%); }
.comment-author{ font-size:14px; font-weight:900; }
.comment-date{ display:flex; align-items:center; gap:4px; color:var(--soft); font-size:11px; font-weight:700; }
.comment-date img{ width:12px; height:12px; }
.comment-text{ padding-left:58px; margin-top:-4px; line-height:1.6; color:#1e293b; font-size:13px; font-weight:500; word-break:break-word; }
body.dark .comment-text{ color:#f1f5f9; }

.guest-comment-box{ background:#f8fbff; border:1px solid #e5edf7; border-radius:20px; padding:14px; display:flex; gap:12px; margin-bottom:12px; flex-shrink: 0; }
body.dark .guest-comment-box{ background:#182230; border-color:#2b3c50; }
.guest-comment-icon{ width:44px; height:44px; border-radius:12px; background:#2563eb; color:#fff; display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.guest-comment-content strong{ display:block; font-size:14px; font-weight:900; margin-bottom:4px; }
.guest-comment-content p{ font-size:12px; line-height:1.5; color:var(--soft); margin:0; }

@media(max-width:1150px){
    .news-layout{ flex-direction:column; }
    .sidebar{ position:relative; top:auto; width:100%; min-width:100%; height: auto; }
    .side-card{ height:auto; }
    .comments-list{ overflow-y: visible; }
}

@media(max-width:768px){
    .hero-content, .content-card, .side-card{ padding:18px; }
    .comment-textarea-box{ flex-direction:column; }
    .comment-text{ padding-left:0; margin-top:8px; }
    .news-title{ font-size:24px; }
}




.nova-body{
    margin:0;
    background:#eef3f7;
    font-family:'Inter',sans-serif;
}

.nova-wrapper{
    width:100%;
    max-width:1600px;
    margin:50px auto;
    padding:0 128px;
    box-sizing:border-box;
}

.nova-section{
    margin-bottom:40px;
}

.nova-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:22px;
}

.nova-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:.25s;
}

.nova-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.nova-top{
    height:110px;
    background:url('/uploads/gorsel.webp') center/cover no-repeat;
    position:relative;
}

.nova-head-plate{
    position:absolute;
    left:50%;
    bottom:-38px;
    transform:translateX(-50%);
    width:110px;
    height:110px;
    border-radius:50%;
    overflow:hidden;
    background:url('/uploads/stars.webp') center/cover no-repeat;
    box-shadow:
        inset 0 0 0 2px rgba(255,255,255,0.9),
        0 10px 22px rgba(0,0,0,0.25);
}

.nova-head-plate::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(255,255,255,0.12);
}

.nova-head-plate img{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-42%);
    height:140px;
    filter:drop-shadow(0 8px 14px rgba(0,0,0,0.35));
    transition:.25s;
}

.nova-card:hover .nova-head-plate img{
    transform:translate(-50%,-42%) scale(1.06);
}

.nova-content{
    padding:55px 12px 16px;
    text-align:center;
}

.nova-username{
    font-family:'Outfit';
    font-size:15px;
    font-weight:700;
    color:#0f172a;
}

.nova-motto{
    font-size:12px;
    color:#64748b;
    margin-top:3px;
}

.nova-empty{
    padding:20px;
    border-radius:12px;
    background:#fff;
    text-align:center;
    color:#64748b;
    font-size:13px;
    box-shadow:0 6px 15px rgba(0,0,0,0.05);
}

.nova-section-head{
    display:flex;
    width:100%;
    box-sizing:border-box;
    align-items:center;
    gap:12px;
    padding:10px 16px;
    margin-bottom:18px;
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    box-shadow:0 4px 14px rgba(15,23,42,0.06);
    transition:.2s ease;
}

.nova-section-head::after{
    content:'';
    flex:1;
    height:1px;
    margin-left:10px;
    background:rgba(0,0,0,0.06);
    border-radius:999px;
}

.nova-section-head:hover{
    transform:translateY(-1px);
    box-shadow:0 8px 24px rgba(15,23,42,0.08);
}

.nova-section-icon{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.7);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    position:relative;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.4),
        0 2px 10px rgba(0,0,0,0.08);
}

.nova-section-icon::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.65);
    pointer-events:none;
}

.nova-section-icon img{
    width:30px;
    height:30px;
    object-fit:contain;
    display:block;
    filter:drop-shadow(0 2px 4px rgba(0,0,0,0.18));
}

.nova-section-title{
    font-family:'Outfit';
    font-size:20px;
    font-weight:700;
    letter-spacing:-0.3px;
    line-height:1;
}

body.dark .nova-body{
    background:#0f172a;
}

body.dark .nova-card{
    background:#1e293b;
}

body.dark .nova-username{
    color:#f1f5f9;
}

body.dark .nova-motto{
    color:#94a3b8;
}

body.dark .nova-empty{
    background:#1e293b;
    color:#94a3b8;
}

body.dark .nova-section-head{
    background:#16242d;

    border:1px solid #243843;

    box-shadow:
        0 10px 28px rgba(0,0,0,.34);

    position:relative;
    overflow:hidden;
}
body.dark .nova-section-head::before{
    content:'';

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(59,130,246,.08),
            transparent 45%
        );

    pointer-events:none;
}
body.dark .nova-section-head::after{
    background:
        linear-gradient(
            90deg,
            rgba(96,165,250,.22),
            rgba(96,165,250,.03)
        );
}


body.dark .nova-section-icon::before{
    border:1px solid rgba(255,255,255,.04);
}

body.dark .nova-section-head::after{
    opacity:.9;
}
body.dark .card-rank,
body.dark .info-header,
body.dark .side-title strong{
    color:#edf6ff;
}


body.dark .card-desc,
body.dark .hero-desc,
body.dark .info-content,
body.dark .side-title span{
    color:#9db4c2;
}


body.dark .nova-section-head{
    background:#16242d;
    border:1px solid #243843;

    box-shadow:
        0 10px 28px rgba(0,0,0,.34);

    position:relative;
    overflow:hidden;
}


body.dark .nova-section-icon{
    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.05),
        0 8px 18px rgba(0,0,0,.28);

    position:relative;
}

body.dark .nova-section-icon::after{
    content:'';

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            rgba(0,0,0,.18),
            rgba(0,0,0,.18)
        );

    border-radius:12px;

    pointer-events:none;
}


body.dark .nova-section-title{
    filter:
        brightness(1.15)
        saturate(1.1);

    text-shadow:
        0 2px 10px rgba(0,0,0,.35);
}

@media(max-width:768px){

    .nova-wrapper{
        margin:30px auto;
    }

    .nova-grid{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }

    .nova-head-plate{
        width:95px;
        height:95px;
    }

    .nova-head-plate img{
        height:120px;
    }

    .nova-section-title{
        font-size:17px;
    }
}


.career-modal{
    position:fixed;
    inset:0;

    background:rgba(3,8,15,0.72);

    backdrop-filter:blur(8px);

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:99999;

    opacity:0;
    visibility:hidden;

    transition:.2s;
}

.career-modal.active{
    opacity:1;
    visibility:visible;
}

.career-modal-box{
    width:100%;
    max-width:540px;

    background:#fff;

    border-radius:22px;

    padding:22px;

    position:relative;

    border:1px solid #e8eef5;

    box-shadow:
        0 30px 80px rgba(0,0,0,0.22);
}


body.dark .career-modal-box{
    background:#16252d;
    border-color:#243843;
}

.career-modal-close{
    position:absolute;

    right:18px;
    top:18px;

    width:42px;
    height:42px;

    border:none;

    border-radius:14px;

    background:#eef4f8;

    cursor:pointer;
}

body.dark .career-modal-close{
    background:#1f313b;
    color:#fff;
}

.career-modal-title{
    font-size:22px;
    font-weight:700;

    margin-bottom:4px;
}
.career-modal-desc{
    color:#6b7b88;

    margin-bottom:18px;

    font-size:14px;
}
body.dark .career-modal-desc{
    color:#9fb6c3;
}

.career-form-group{
    margin-bottom:13px;
}
.career-form-group label{
    display:block;

    margin-bottom:7px;

    font-size:12px;
    font-weight:700;
}

.career-input,
.career-textarea{
    width:100%;

    background:#f8fbfd;

    border:1px solid #dde7ef;

    border-radius:12px;

    padding:12px 14px;

    outline:none;

    font-family:inherit;

    font-size:14px;
}


body.dark .career-input,
body.dark .career-textarea{
    background:#1b2a32;
    border-color:#314550;
    color:#fff;
}

.career-textarea{
    resize:none;
    min-height:95px;
}

.career-submit-btn{
    width:100%;
    height:48px;

    border:none;

    border-radius:12px;

    background:#3498db;

    color:#fff;

    font-size:14px;
    font-weight:700;

    cursor:pointer;

    margin-top:6px;
}


.career-alert{
    position:fixed;

    right:20px;
    bottom:20px;

    padding:16px 20px;

    border-radius:16px;

    z-index:999999;

    font-weight:700;

    backdrop-filter:blur(8px);
}

.career-alert.success{
    background:#22c55e;
    color:#fff;
}

.career-alert.error{
    background:#ef4444;
    color:#fff;
}
.career-page{
    max-width:1300px;
    margin:40px auto;
    padding:0 14px;
}


.career-hero{
    position:relative;
    overflow:hidden;

    border-radius:22px;

    padding:38px;

    margin-bottom:26px;

    background-color:#f8fafc;

    background-image:
        linear-gradient(rgba(248,250,252,0.94), rgba(248,250,252,0.94)),
        url('/uploads/newsbg.webp');

    background-size:900px;
    background-repeat:repeat;

    border:1px solid #e7edf4;

    box-shadow:
        0 12px 30px rgba(15,23,42,0.08);
}

body.dark .career-hero{

    background-color:#16252d;

    background-image:
        linear-gradient(
            rgba(22,37,45,0.93),
            rgba(22,37,45,0.93)
        ),
        url('/uploads/newsbg.webp');

    border-color:#243843;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.42);
}

.career-hero::before{
    content:'';

    position:absolute;

    width:320px;
    height:320px;

    border-radius:50%;

    right:-120px;
    top:-120px;

    background:rgba(52,152,219,0.08);

    filter:blur(10px);
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 16px;

    border-radius:12px;

    background:#ffffff;

    border:1px solid #e4ebf3;

    font-size:13px;
    font-weight:700;

    color:#3498db;

    margin-bottom:18px;
}

body.dark .hero-badge{
    background:#1d2c34;
    border-color:#304650;
    color:#7cc9ff;
}

.hero-title{
    font-size:44px;
    font-weight:700;

    color:#17212b;

    margin-bottom:14px;
}

body.dark .hero-title{
    color:#fff;
}

.hero-desc{
    max-width:760px;

    color:#617282;

    font-size:15px;
    line-height:1.9;
}

body.dark .hero-desc{
    color:#9eb4c0;
}


.career-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:24px;
}



.career-sidebar{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.career-card{
    position:relative;

    overflow:hidden;

    border-radius:18px;

    padding:14px 16px;

    background:#fff;

    border:1px solid #e9edf3;

    box-shadow:
        0 4px 14px rgba(15,23,42,0.045);

    transition:.18s ease;

    cursor:pointer;
}

body.dark .career-card{
    background:#16252d;
    border-color:#243843;

    box-shadow:
        0 10px 24px rgba(0,0,0,0.38);
}

.career-card:hover{
    transform:translateY(-4px);
}

.career-card::before{
    content:'';

    position:absolute;

    inset:0;

    opacity:.06;
}

.career-gold::before{
    background:#f1c40f;
}

.career-red::before{
    background:#e74c3c;
}

.career-blue::before{
    background:#3498db;
}

.career-green::before{
    background:#2ecc71;
}

.career-purple::before{
    background:#9b59b6;
}

.career-cyan::before{
    background:#00bcd4;
}

.career-dark::before{
    background:#34495e;
}

.card-top{
    position:relative;
    z-index:2;

    display:flex;
    align-items:center;

    gap:12px;
}
.card-icon-wrap{
    width:45px;
    height:45px;

    border-radius:18px;

    background:#f4f8fc;

    border:1px solid #e2eaf2;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.9),
        0 4px 10px rgba(15,23,42,0.05);
}
body.dark .card-icon-wrap{
    background:#1b2a32;
    border-color:#314550;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 6px 14px rgba(0,0,0,0.28);
}

.card-icon-wrap img{
    width:35px;
    height:35px;

    object-fit:contain;

    filter:
        drop-shadow(0 3px 6px rgba(0,0,0,0.25));
}

.card-content{
    flex:1;
}

.card-rank{
    font-size:18px;
    font-weight:700;

    letter-spacing:-0.4px;

    color:#17212b;

    margin-bottom:4px;

    line-height:1.1;
}

body.dark .card-rank{
    color:#fff;
}

.card-desc{
    color:#6b7b88;

    font-size:13px;

    line-height:1.45;
}

body.dark .card-desc{
    color:#9fb6c3;
}

.card-bottom{
    position:relative;
    z-index:2;

    margin-top:14px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.card-status{
    display:flex;
    align-items:center;
    gap:7px;

    font-size:12px;
    font-weight:700;

    color:#22c55e;
}

.card-status-dot{
    width:10px;
    height:10px;

    border-radius:50%;

    background:#22c55e;

    box-shadow:
        0 0 12px #22c55e;
}

.card-button{
    height:38px;

    padding:0 16px;

    border:none;

    border-radius:11px;

    background:#3498db;

    color:#fff;

    font-size:12px;
    font-weight:700;

    cursor:pointer;

    transition:.16s;

    box-shadow:
        0 4px 10px rgba(52,152,219,0.18);
}

.card-button:hover{
    transform:translateY(-1px);

    background:#2d8ed0;
}
.career-right{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.info-box{
    background:#fff;

    border-radius:20px;

    border:1px solid #e8eef5;

    overflow:hidden;

    box-shadow:
        0 10px 24px rgba(15,23,42,0.06);
}

body.dark .info-box{
    background:#16252d;
    border-color:#243843;

    box-shadow:
        0 10px 24px rgba(0,0,0,0.38);
}

.info-header{
    display:flex;
    align-items:center;
    gap:12px;

    padding:18px 22px;

    border-bottom:1px solid #edf2f7;

    font-size:21px;
    font-weight:700;

    color:#17212b;
}

body.dark .info-header{
    border-color:#243843;
    color:#fff;
}

.info-header i{
    color:#3498db;
}

.info-content{
    padding:22px;

    color:#5f7282;

    line-height:1.9;

    font-size:14px;
}

body.dark .info-content{
    color:#9fb6c3;
}


.info-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;

    margin-top:18px;
}

.info-tag{
    padding:10px 14px;

    border-radius:12px;

    background:#f4f8fc;

    border:1px solid #e5edf5;

    font-size:12px;
    font-weight:700;

    color:#4b6070;
}

body.dark .info-tag{
    background:#1c2b33;
    border-color:#314550;
    color:#cfe2eb;
}

.info-icon-box{
    width:52px;
    height:52px;

    min-width:52px;

    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:16px;

    background:
        linear-gradient(
            145deg,
            #223443,
            #18252d
        );

    border:1px solid #314550;

    box-shadow:
        0 10px 18px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.04);

    overflow:hidden;
}

.info-icon-box::before{
    content:'';

    position:absolute;

    top:0;
    left:0;
    right:0;

    height:2px;

    background:
        linear-gradient(
            90deg,
            #3b82f6,
            #60a5fa,
            #3b82f6
        );

    opacity:.95;
}

.info-icon-box::after{
    content:'';

    position:absolute;

    width:80px;
    height:80px;

    background:
        radial-gradient(
            circle,
            rgba(59,130,246,0.16),
            transparent 70%
        );

    top:-35px;
    right:-35px;
}

.info-icon-box img{
    width:26px;
    height:26px;

    object-fit:contain;

    position:relative;
    z-index:3;

    image-rendering:auto;

    filter:
        drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}

.info-header{
    display:flex;
    align-items:center;
    gap:16px;

    padding:22px 24px;

    border-bottom:1px solid #edf2f7;

    font-size:21px;
    font-weight:700;

    color:#17212b;
}

body.dark .info-header{
    border-color:#243843;
    color:#fff;
}

.career-popup-alert{
    position:fixed;

    top:25px;
    right:25px;

    width:370px;
    max-width:calc(100% - 30px);

    background:rgba(15,23,42,0.92);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    border-radius:22px;

    padding:18px;

    z-index:9999999;

    display:flex;
    align-items:flex-start;
    gap:16px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.45);

    transform:translateY(-25px);

    opacity:0;

    transition:.28s ease;
}

.career-popup-alert.active{
    opacity:1;
    transform:translateY(0);
}

.career-popup-icon{
    width:52px;
    height:52px;

    min-width:52px;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(239,68,68,0.14);

    border:1px solid rgba(239,68,68,0.25);

    color:#ff6b6b;

    font-size:20px;
}

.career-popup-alert{
    position:fixed;

    top:25px;
    right:25px;

    width:370px;
    max-width:calc(100% - 30px);

    background:#ffffff;

    border:1px solid #e5edf5;

    backdrop-filter:blur(18px);

    border-radius:22px;

    padding:18px;

    z-index:9999999;

    display:flex;
    align-items:flex-start;
    gap:16px;

    box-shadow:
        0 20px 50px rgba(15,23,42,0.12);

    transform:translateY(-25px);

    opacity:0;

    transition:.28s ease;
}

body.dark .career-popup-alert{
    background:rgba(15,23,42,0.92);

    border-color:rgba(255,255,255,0.08);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.45);
}

.career-popup-alert.active{
    opacity:1;
    transform:translateY(0);
}

.career-popup-icon{
    width:52px;
    height:52px;

    min-width:52px;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(239,68,68,0.10);

    border:1px solid rgba(239,68,68,0.18);

    color:#ef4444;

    font-size:20px;
}

.career-popup-title{
    color:#17212b;

    font-size:16px;
    font-weight:700;

    margin-bottom:5px;
}

body.dark .career-popup-title{
    color:#fff;
}

.career-popup-text{
    color:#5f7282;

    font-size:14px;

    line-height:1.6;
}

body.dark .career-popup-text{
    color:#b8c7d9;
}

@media(max-width:1000px){

    .career-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .career-hero{
        padding:28px;
    }

    .hero-title{
        font-size:33px;
        line-height:1.2;
    }

    .card-top{
        align-items:flex-start;
    }

    .card-rank{
        font-size:22px;
    }

    .card-bottom{
        flex-direction:column;
        align-items:flex-start;
        gap:14px;
    }

    .card-button{
        width:100%;
    }

}
