body {
    margin: 0;
    background: #070707;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.ke-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.ke-header {
    background: #050505;
    border-bottom: 1px solid #d4a017;
}

.ke-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.ke-logo {
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
}

.ke-nav ul {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ke-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.ke-nav a:hover {
    color: #f5b21b;
}

.ke-main {
    padding: 28px 0;
}

.ke-footer {
    border-top: 1px solid #222;
    padding: 28px 0;
    color: #aaa;
}

.ke-breaking {
    background: #111;
    border-bottom: 1px solid #242424;
}

.ke-breaking .ke-container {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
}

.ke-breaking span {
    background: #f5b21b;
    color: #111;
    font-weight: 900;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
}

.ke-breaking strong {
    color: #e8e8e8;
    font-size: 14px;
}

.ke-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 22px;
    padding: 22px 0 16px;
}

.ke-hero-card {
    background: linear-gradient(135deg, #101010, #191919 55%, #332300);
    border: 1px solid #2a2a2a;
    border-radius: 26px;
    padding: 34px;
    min-height: 320px;
}

.ke-label {
    display: inline-block;
    background: #f5b21b;
    color: #111;
    font-weight: 900;
    font-size: 12px;
    padding: 8px 13px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.ke-hero-card h1 {
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.12;
}

.ke-hero-card h1 a,
.ke-news-card h3 a {
    color: #fff;
    text-decoration: none;
}

.ke-hero-card p {
    color: #cfcfcf;
    font-size: 17px;
    line-height: 1.7;
    max-width: 780px;
}

.ke-read-more {
    display: inline-block;
    margin-top: 16px;
    background: #f5b21b;
    color: #111;
    text-decoration: none;
    font-weight: 900;
    padding: 12px 18px;
    border-radius: 12px;
}

.ke-side-card {
    background: #101010;
    border: 1px solid #262626;
    border-radius: 24px;
    padding: 26px;
}

.ke-side-card h2 {
    margin-top: 0;
    color: #fff;
}

.ke-side-card li {
    color: #ddd;
    margin-bottom: 12px;
}

.ke-category-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 0 28px;
}

.ke-category-strip a {
    background: #121212;
    color: #fff;
    border: 1px solid #333;
    padding: 10px 15px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
}

.ke-category-strip a:hover {
    border-color: #f5b21b;
    color: #f5b21b;
}

.ke-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.ke-section-head h2 {
    color: #fff;
    font-size: 26px;
    margin: 0;
}

.ke-section-head a {
    color: #f5b21b;
    text-decoration: none;
    font-weight: 800;
}

.ke-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ke-news-card {
    background: #101010;
    border: 1px solid #262626;
    border-radius: 22px;
    padding: 22px;
}

.ke-news-card span {
    color: #f5b21b;
    font-size: 12px;
    font-weight: 900;
}

.ke-news-card h3 {
    font-size: 20px;
    line-height: 1.35;
    margin: 10px 0;
}

.ke-news-card p {
    color: #bdbdbd;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .ke-header-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0;
        gap: 14px;
    }

    .ke-nav ul {
        flex-wrap: wrap;
        gap: 12px;
    }

    .ke-hero-grid {
        grid-template-columns: 1fr;
    }

    .ke-hero-card h1 {
        font-size: 30px;
    }

    .ke-news-grid {
        grid-template-columns: 1fr;
    }
}

/* Header v1.1 */
.ke-header {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(5,5,5,.96);
    backdrop-filter: blur(12px);
}

.ke-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 26px;
    font-weight: 900;
}

.ke-brand img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid #d4a017;
}

.ke-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    background: #121212;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 10px;
}

.ke-menu-toggle span {
    display: block;
    height: 3px;
    background: #fff;
    margin: 6px 0;
    border-radius: 3px;
}

.ke-search input {
    background: #111;
    border: 1px solid #333;
    color: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    outline: none;
}

.ke-search input:focus {
    border-color: #f5b21b;
}

@media (min-width: 901px) {
    .ke-nav {
        display: flex;
        align-items: center;
        gap: 22px;
    }
}

@media (max-width: 900px) {
    .ke-header-inner {
        flex-direction: row;
        align-items: center;
    }

    .ke-brand {
        font-size: 22px;
    }

    .ke-brand img {
        width: 46px;
        height: 46px;
    }

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

    .ke-nav {
        display: none;
        width: 100%;
        background: #0b0b0b;
        border: 1px solid #252525;
        border-radius: 18px;
        padding: 16px;
        margin-top: 14px;
    }

    .ke-nav.is-open {
        display: block;
    }

    .ke-nav ul {
        display: block;
    }

    .ke-nav li {
        border-bottom: 1px solid #222;
    }

    .ke-nav li:last-child {
        border-bottom: 0;
    }

    .ke-nav a {
        display: block;
        padding: 13px 4px;
        font-size: 16px;
    }

    .ke-search {
        margin-top: 14px;
    }

    .ke-search input {
        width: 100%;
    }
}

/* Social Box */
.ke-social-box {
    margin: 34px auto;
    background: linear-gradient(135deg, #101010, #181818 60%, #2b1c00);
    border: 1px solid #2a2a2a;
    border-radius: 26px;
    padding: 28px;
}

.ke-social-box h2 {
    color: #fff;
    margin: 14px 0 8px;
    font-size: 28px;
}

.ke-social-box p {
    color: #cfcfcf;
    line-height: 1.7;
}

.ke-social-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.ke-social-grid a {
    background: #0b0b0b;
    color: #fff;
    border: 1px solid #333;
    border-radius: 14px;
    padding: 14px 12px;
    text-align: center;
    font-weight: 900;
    text-decoration: none;
}

.ke-social-grid a:hover {
    background: #f5b21b;
    color: #111;
    border-color: #f5b21b;
}

@media (max-width: 900px) {
    .ke-social-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Slider Engine */
.ke-hero-slider {
    display: grid;
    grid-template-columns: 2fr 0.9fr;
    gap: 22px;
    padding: 22px 0 16px;
}

.ke-slider-main {
    position: relative;
    min-height: 390px;
}

.ke-slide {
    display: none;
    background: linear-gradient(135deg, #101010, #191919 55%, #332300);
    border: 1px solid #2a2a2a;
    border-radius: 28px;
    padding: 38px;
    min-height: 390px;
    box-shadow: 0 26px 70px rgba(0,0,0,.35);
}

.ke-slide.is-active {
    display: block;
}

.ke-slide h1 {
    margin: 0 0 14px;
    font-size: 44px;
    line-height: 1.1;
}

.ke-slide h1 a {
    color: #fff;
    text-decoration: none;
}

.ke-slide p {
    color: #cfcfcf;
    font-size: 17px;
    line-height: 1.7;
    max-width: 760px;
}

.ke-slider-sidebar {
    background: #101010;
    border: 1px solid #262626;
    border-radius: 24px;
    padding: 22px;
}

.ke-slider-sidebar h2 {
    color: #fff;
    margin: 0 0 16px;
}

.ke-slider-sidebar button {
    display: block;
    width: 100%;
    background: #080808;
    color: #ddd;
    border: 1px solid #2c2c2c;
    border-radius: 14px;
    padding: 13px 14px;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 800;
    cursor: pointer;
}

.ke-slider-sidebar button.is-active,
.ke-slider-sidebar button:hover {
    background: #f5b21b;
    color: #111;
    border-color: #f5b21b;
}

@media (max-width: 900px) {
    .ke-hero-slider {
        grid-template-columns: 1fr;
    }

    .ke-slide {
        min-height: auto;
        padding: 30px 22px;
    }

    .ke-slide h1 {
        font-size: 32px;
    }

    .ke-slider-sidebar {
        display: none;
    }
}

/* Dynamic News Images */
.ke-slide-image {
    margin: -10px -10px 22px;
    border-radius: 22px;
    overflow: hidden;
    max-height: 320px;
}

.ke-slide-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.ke-news-thumb {
    display: block;
    margin: -6px -6px 16px;
    border-radius: 18px;
    overflow: hidden;
}

.ke-news-thumb img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}

.ke-news-card:hover .ke-news-thumb img {
    transform: scale(1.04);
}

@media (max-width: 900px) {
    .ke-slide-image img {
        height: 220px;
    }

    .ke-news-thumb img {
        height: 190px;
    }
}

/* Category Blocks */
.ke-category-blocks {
    margin: 34px auto;
}

.ke-section-head span {
    color: #aaa;
    font-weight: 700;
}

.ke-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ke-category-box {
    background: #101010;
    border: 1px solid #262626;
    border-radius: 22px;
    padding: 20px;
}

.ke-category-box-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #242424;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.ke-category-box-head h3 {
    color: #fff;
    margin: 0;
    font-size: 20px;
}

.ke-category-box-head a {
    color: #f5b21b;
    font-weight: 900;
    text-decoration: none;
}

.ke-mini-post {
    padding: 12px 0;
    border-bottom: 1px solid #202020;
}

.ke-mini-post:last-child {
    border-bottom: 0;
}

.ke-mini-post a {
    display: block;
    color: #fff;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: none;
}

.ke-mini-post a:hover {
    color: #f5b21b;
}

.ke-mini-post span {
    display: block;
    color: #999;
    font-size: 12px;
    margin-top: 6px;
}

@media (max-width: 1000px) {
    .ke-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .ke-category-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.ke-footer {
    margin-top: 50px;
    background: #050505;
    border-top: 1px solid #d4a017;
    padding: 42px 0 20px;
}

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

.ke-footer h3,
.ke-footer h4 {
    color: #fff;
    margin: 0 0 14px;
}

.ke-footer h3 {
    font-size: 28px;
}

.ke-footer p {
    color: #aaa;
    line-height: 1.7;
    max-width: 520px;
}

.ke-footer a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin: 9px 0;
    font-weight: 700;
}

.ke-footer a:hover {
    color: #f5b21b;
}

.ke-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: #777;
    border-top: 1px solid #1f1f1f;
    margin-top: 28px;
    padding-top: 18px;
    font-size: 13px;
}

@media (max-width: 800px) {
    .ke-footer-grid {
        grid-template-columns: 1fr;
    }

    .ke-footer-bottom {
        flex-direction: column;
    }
}

/* Single Post */
.ke-single-main {
    padding: 34px 0 60px;
}

.ke-single {
    max-width: 860px;
}

.ke-single-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.ke-single-meta a,
.ke-single-meta span {
    background: #121212;
    color: #f5b21b;
    border: 1px solid #303030;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.ke-single h1 {
    color: #fff;
    font-size: 44px;
    line-height: 1.12;
    margin: 0 0 24px;
}

.ke-single-cover {
    border-radius: 24px;
    overflow: hidden;
    margin: 0 0 28px;
    border: 1px solid #262626;
}

.ke-single-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.ke-single-content {
    color: #e7e7e7;
    font-size: 18px;
    line-height: 1.85;
}

.ke-single-content p {
    margin-bottom: 22px;
}

.ke-single-content a {
    color: #f5b21b;
}

@media(max-width: 800px) {
    .ke-single h1 {
        font-size: 32px;
    }

    .ke-single-content {
        font-size: 17px;
    }
}

body.single{
    background:#070707;
}

body.single .site-content,
body.single main,
body.single article{
    background:#070707;
}

body.single .ke-single{
    background:#111;
    border:1px solid #232323;
    border-radius:24px;
    padding:48px;
    margin:40px auto;
}

body.single h1{
    color:#fff !important;
}

body.single .ke-single-content{
    color:#e5e5e5 !important;
}

body.single .ke-single-content p{
    color:#d7d7d7 !important;
}

body.single img{
    border-radius:18px;
}

/* Related Posts */
.ke-related {
    margin-top: 42px;
    border-top: 1px solid #262626;
    padding-top: 28px;
}

.ke-related h2 {
    color: #fff;
    margin: 0 0 18px;
    font-size: 26px;
}

.ke-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ke-related-card {
    background: #080808;
    border: 1px solid #282828;
    border-radius: 18px;
    padding: 18px;
}

.ke-related-card span {
    display: block;
    color: #f5b21b;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 8px;
}

.ke-related-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
}

.ke-related-card a {
    color: #fff;
    text-decoration: none;
}

.ke-related-card a:hover {
    color: #f5b21b;
}

@media(max-width: 800px) {
    .ke-related-grid {
        grid-template-columns: 1fr;
    }
}

.ke-share{
    display:flex;
    align-items:center;
    gap:12px;
    margin:30px 0;
    padding:18px;
    background:#111;
    border:1px solid #2b2b2b;
    border-radius:16px;
}

.ke-share span{
    color:#fff;
    font-weight:800;
}

.ke-share a{
    text-decoration:none;
    background:#1b1b1b;
    color:#fff;
    padding:10px 18px;
    border-radius:10px;
    font-weight:700;
    transition:.2s;
}

.ke-share a:hover{
    background:#f5b21b;
    color:#111;
}

/* Archive Pages */
.ke-archive-main {
    padding: 34px 0 60px;
}

.ke-archive-head {
    background: linear-gradient(135deg, #101010, #1b1b1b 60%, #2d1f00);
    border: 1px solid #2b2b2b;
    border-radius: 24px;
    padding: 34px;
    margin-bottom: 28px;
}

.ke-archive-head span {
    display: inline-block;
    color: #111;
    background: #f5b21b;
    font-weight: 900;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 12px;
}

.ke-archive-head h1 {
    color: #fff;
    margin: 16px 0 8px;
    font-size: 38px;
}

.ke-archive-head p {
    color: #ccc;
    max-width: 760px;
    line-height: 1.7;
}

.ke-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ke-archive-card {
    background: #101010;
    border: 1px solid #262626;
    border-radius: 22px;
    padding: 20px;
}

.ke-archive-thumb {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
}

.ke-archive-thumb img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.ke-archive-card span {
    color: #f5b21b;
    font-size: 12px;
    font-weight: 900;
}

.ke-archive-card h2 {
    font-size: 21px;
    line-height: 1.35;
    margin: 10px 0;
}

.ke-archive-card h2 a {
    color: #fff;
    text-decoration: none;
}

.ke-archive-card p {
    color: #bbb;
    line-height: 1.65;
}

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

    .ke-archive-head h1 {
        font-size: 30px;
    }
}

/* Market Ticker */
.ke-market-bar {
    background:#0b0b0b;
    border-bottom:1px solid #202020;
}

.ke-market-inner {
    display:flex;
    gap:16px;
    overflow-x:auto;
    padding:10px 0;
    white-space:nowrap;
}

.ke-market-inner span {
    color:#ddd;
    font-size:13px;
    font-weight:800;
}

.ke-market-inner b {
    color:#f5b21b;
}

.ke-market-inner em {
    font-style:normal;
    margin-left:4px;
}

.ke-market-inner em.up {
    color:#25d366;
}

.ke-market-inner em.down {
    color:#ff4d4d;
}

/* Hero Slider v2 */
.ke-slider-sidebar button span {
    display: block;
    color: #f5b21b;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 4px;
}

.ke-slider-sidebar button.is-active span,
.ke-slider-sidebar button:hover span {
    color: #111;
}

.ke-slide {
    position: relative;
    overflow: hidden;
}

.ke-slide:after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 4px;
    background: linear-gradient(90deg, #f5b21b, #7a5200);
}

.ke-slide h1 a:hover {
    color: #f5b21b;
}

/* Trend News */
.ke-trend-section {
    margin: 34px auto;
}

.ke-trend-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ke-trend-card {
    display: flex;
    gap: 14px;
    background: #101010;
    border: 1px solid #262626;
    border-radius: 20px;
    padding: 18px;
}

.ke-trend-card strong {
    color: #f5b21b;
    font-size: 28px;
    line-height: 1;
}

.ke-trend-card span {
    color: #888;
    font-size: 12px;
    font-weight: 900;
}

.ke-trend-card h3 {
    margin: 8px 0 0;
    font-size: 18px;
    line-height: 1.35;
}

.ke-trend-card h3 a {
    color: #fff;
    text-decoration: none;
}

.ke-trend-card h3 a:hover {
    color: #f5b21b;
}

@media(max-width: 1000px) {
    .ke-trend-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 650px) {
    .ke-trend-grid {
        grid-template-columns: 1fr;
    }
}

/* Trend section fix */
.ke-section-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:22px;
}

.ke-section-head h2{
    color:#111 !important;
    font-size:34px;
    font-weight:900;
    margin:0;
}

.ke-section-head span{
    color:#666 !important;
    font-size:15px;
    font-weight:700;
}

@media(max-width:768px){
    .ke-section-head{
        display:block;
    }

    .ke-section-head span{
        display:block;
        margin-top:8px;
    }
}

/* Most Read */
.ke-most-read {
    margin: 34px auto;
}

.ke-most-read-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.ke-most-read-card {
    background: #101010;
    border: 1px solid #262626;
    border-radius: 18px;
    padding: 16px;
    display: flex;
    gap: 12px;
}

.ke-most-read-card strong {
    color: #f5b21b;
    font-size: 28px;
    line-height: 1;
}

.ke-most-read-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.35;
}

.ke-most-read-card h3 a {
    color: #fff;
    text-decoration: none;
}

.ke-most-read-card h3 a:hover {
    color: #f5b21b;
}

.ke-most-read-card span {
    color: #888;
    font-size: 12px;
    font-weight: 800;
}

@media(max-width:1000px){
    .ke-most-read-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:650px){
    .ke-most-read-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium Top Bar */

.ke-topbar{
    background:#0b0b0b;
    border-bottom:1px solid #1f1f1f;
    font-size:13px;
}

.ke-topbar .ke-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:42px;
}

.ke-topbar span{
    color:#f5b21b;
    font-weight:800;
}

.ke-social{
    display:flex;
    gap:10px;
}

.ke-social a{
    color:#d6d6d6;
    text-decoration:none;
    font-weight:700;
    transition:.2s;
}

.ke-social a:hover{
    color:#f5b21b;
}

@media(max-width:768px){

    .ke-topbar .ke-container{
        flex-direction:column;
        justify-content:center;
        padding:8px 0;
        gap:8px;
    }

}

/* Premium topbar force fix */
.ke-header .ke-topbar{
    display:block !important;
    width:100% !important;
    background:#090909 !important;
    border-bottom:1px solid #252525 !important;
}

.ke-header .ke-topbar .ke-container{
    width:min(1180px, calc(100% - 32px)) !important;
    margin:0 auto !important;
    min-height:38px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
}

.ke-header .ke-topbar span{
    color:#f5b21b !important;
    font-size:13px !important;
    font-weight:900 !important;
}

.ke-header .ke-social{
    display:flex !important;
    gap:14px !important;
}

.ke-header .ke-social a{
    color:#fff !important;
    font-size:13px !important;
    font-weight:800 !important;
    text-decoration:none !important;
}

.ke-header .ke-social a:hover{
    color:#f5b21b !important;
}

@media(max-width:768px){
    .ke-header .ke-topbar .ke-container{
        flex-direction:column !important;
        gap:6px !important;
        padding:8px 0 !important;
    }
}

/* Mobile header compact fix */
@media(max-width:768px){
    .ke-header .ke-topbar{
        display:none !important;
    }

    .ke-header-inner{
        min-height:92px !important;
        padding:18px 0 !important;
    }

    .ke-brand{
        font-size:28px !important;
    }

    .ke-brand img{
        width:64px !important;
        height:64px !important;
        border-radius:16px !important;
    }

    .ke-menu-toggle{
        width:58px !important;
        height:58px !important;
    }

    .ke-market-inner{
        padding:12px 0 !important;
        font-size:14px !important;
    }
}

/* Live Broadcast Alert */
.ke-live-alert{
    background:linear-gradient(90deg,#b00000,#ff2a2a,#b00000);
    border-bottom:1px solid #ff6b6b;
}

.ke-live-alert-inner{
    min-height:52px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
}

.ke-live-alert strong{
    color:#fff;
    font-size:15px;
    font-weight:900;
    letter-spacing:.3px;
}

.ke-live-alert a{
    display:inline-block;
    background:#fff;
    color:#111;
    text-decoration:none;
    font-weight:900;
    padding:9px 14px;
    border-radius:999px;
    margin-left:8px;
}

.ke-live-alert a:hover{
    background:#f5b21b;
}

@media(max-width:768px){
    .ke-live-alert-inner{
        flex-direction:column;
        align-items:flex-start;
        padding:12px 0;
    }

    .ke-live-alert a{
        margin:6px 6px 0 0;
    }
}

/* Fix hamburger icon visibility */
.ke-menu-toggle{
    display:none;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
}
.ke-menu-toggle span{
    display:block !important;
    width:26px !important;
    height:3px !important;
    background:#fff !important;
    border:0 !important;
    border-radius:3px !important;
    margin:0 !important;
}
@media(max-width:900px){
    .ke-menu-toggle{
        display:flex !important;
    }
}

/* Fix mobile horizontal overflow */
html,
body{
    max-width:100%;
    overflow-x:hidden;
}

.ke-header,
.ke-live-alert,
.ke-market-bar,
.ke-main,
.ke-container{
    max-width:100%;
    overflow-x:hidden;
}

.ke-market-inner,
.ke-category-strip{
    max-width:100%;
    overflow-x:auto;
}

/* Fix mobile menu dropdown placement */
@media(max-width:900px){
    .ke-header-inner{
        flex-wrap:wrap !important;
    }
    .ke-nav{
        flex-basis:100% !important;
        width:100% !important;
        order:3 !important;
        margin-top:14px !important;
    }
    .ke-nav.is-open{
        display:block !important;
    }
}

/* Mobile dropdown menu polish */
@media(max-width:900px){
    .ke-nav{
        padding:18px !important;
    }
    .ke-nav ul{
        display:flex !important;
        flex-direction:column !important;
        gap:8px !important;
        margin:0 0 16px 0 !important;
        padding:0 !important;
        list-style:none !important;
    }
    .ke-nav li{
        border-bottom:0 !important;
    }
    .ke-nav a{
        display:block !important;
        padding:13px 14px !important;
        background:#111 !important;
        border:1px solid #242424 !important;
        border-radius:14px !important;
        color:#fff !important;
        font-weight:800 !important;
        text-decoration:none !important;
    }
    .ke-nav a:hover{
        border-color:#f5b21b !important;
        color:#f5b21b !important;
    }
    .ke-search{
        margin-top:0 !important;
    }
}

/* Mobile menu compact grid */
@media(max-width:900px){
    .ke-nav ul{
        display:grid !important;
        grid-template-columns:1fr 1fr !important;
        gap:10px !important;
    }
    .ke-nav a{
        padding:11px 12px !important;
        font-size:15px !important;
        text-align:center !important;
        border-radius:13px !important;
    }
    .ke-search input{
        height:48px !important;
        font-size:15px !important;
    }
}

/* Mobile menu tighter spacing */
@media(max-width:900px){
    .ke-nav{
        padding:14px !important;
    }
    .ke-nav ul{
        gap:8px !important;
        margin-bottom:12px !important;
    }
    .ke-nav a{
        padding:9px 10px !important;
        font-size:14px !important;
        border-radius:12px !important;
    }
    .ke-search input{
        height:44px !important;
        font-size:14px !important;
        padding:10px 14px !important;
    }
}

/* KriptoEfsanesi v3.0 News Card Premium Polish */
.ke-news-card{
    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg,#121212 0%,#0b0b0b 100%);
    border-color:rgba(245,178,27,.18);
    box-shadow:0 18px 45px rgba(0,0,0,.22);
    transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}

.ke-news-card:hover{
    transform:translateY(-4px);
    border-color:rgba(245,178,27,.48);
    box-shadow:0 24px 60px rgba(0,0,0,.34);
}

.ke-news-card h3 a{
    color:#fff;
    text-decoration:none;
}

.ke-news-card h3 a:hover{
    color:#f5b21b;
}

.ke-news-card p{
    margin-bottom:0;
}

@media(max-width:900px){
    .ke-news-card{
        border-radius:20px;
        padding:18px;
    }
}

/* KriptoEfsanesi v3.0 Single Post Mobile Fix */
@media(max-width:800px){
    body.single .ke-single{
        width:auto !important;
        max-width:100% !important;
        margin:24px 14px !important;
        padding:24px 18px !important;
        border-radius:22px !important;
        overflow:hidden !important;
    }

    body.single .ke-single h1{
        font-size:clamp(30px, 8vw, 38px) !important;
        line-height:1.14 !important;
        overflow-wrap:anywhere !important;
    }

    body.single .ke-single-content{
        max-width:100% !important;
        overflow:hidden !important;
    }

    body.single .ke-single-content p,
    body.single .ke-single-content h2,
    body.single .ke-single-content h3{
        overflow-wrap:anywhere !important;
    }
}

/* KriptoEfsanesi v3.0 Share Buttons Mobile Fix */
@media(max-width:800px){
    .ke-share{
        display:grid !important;
        grid-template-columns:1fr 1fr !important;
        gap:10px !important;
        padding:14px !important;
        overflow:hidden !important;
    }

    .ke-share span{
        grid-column:1 / -1 !important;
    }

    .ke-share a{
        display:block !important;
        text-align:center !important;
        padding:11px 10px !important;
        font-size:15px !important;
        white-space:nowrap !important;
    }
}

/* KriptoEfsanesi v3.0 Market Bar Mobile Safe Padding */
@media(max-width:800px){
    .ke-market-bar{
        overflow:hidden !important;
    }

    .ke-market-inner{
        overflow-x:auto !important;
        padding:10px 16px !important;
        scroll-padding-left:16px !important;
        -webkit-overflow-scrolling:touch;
    }

    .ke-market-inner span{
        flex:0 0 auto !important;
    }
}

/* KriptoEfsanesi v3.0 Category Strip Mobile Safe Scroll */
@media(max-width:800px){
    .ke-category-strip{
        overflow-x:auto !important;
        overflow-y:hidden !important;
        padding:0 16px 24px !important;
        scroll-padding-left:16px !important;
        -webkit-overflow-scrolling:touch;
    }

    .ke-category-strip a{
        flex:0 0 auto !important;
    }
}

/* KriptoEfsanesi v3.1 Premium Section Head */
.ke-section-head-premium{
    align-items:flex-end;
    padding:18px 0 6px;
    border-top:1px solid rgba(245,178,27,.18);
}

.ke-section-kicker{
    display:block;
    color:#f5b21b;
    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:6px;
}

.ke-section-head-premium p{
    color:#bdbdbd;
    margin:6px 0 0;
    line-height:1.5;
}

@media(max-width:800px){
    .ke-section-head-premium{
        align-items:flex-start;
        gap:12px;
    }
}

/* KriptoEfsanesi v3.1 Premium Section Head Strong */
.ke-section-head-premium{
    background:linear-gradient(135deg,#101010,#0b0b0b) !important;
    border:1px solid rgba(245,178,27,.22) !important;
    border-radius:22px !important;
    padding:18px !important;
    margin:10px 0 20px !important;
    box-shadow:0 18px 45px rgba(0,0,0,.24) !important;
}

.ke-section-head-premium h2{
    font-size:30px !important;
}

@media(max-width:800px){
    .ke-section-head-premium{
        display:block !important;
    }

    .ke-section-head-premium a{
        display:inline-block !important;
        margin-top:12px !important;
    }
}

/* KriptoEfsanesi v3.1 Hero Mobile Premium Focus */
@media(max-width:800px){
    .ke-slide{
        padding:28px 24px !important;
        min-height:unset !important;
        border-radius:26px !important;
    }

    .ke-slide h1{
        font-size:clamp(38px, 9vw, 48px) !important;
        line-height:1.08 !important;
        letter-spacing:-.03em !important;
        margin-bottom:18px !important;
    }

    .ke-slide p{
        font-size:18px !important;
        line-height:1.78 !important;
        color:#d8d8d8 !important;
    }
}
/* KriptoEfsanesi v3.1 Hero Category Dock */
.ke-hero-area{
    padding:22px 0 10px;
}
.ke-hero-area .ke-hero-slider{
    padding:0 0 14px;
}
.ke-hero-area .ke-category-strip{
    padding:0 0 20px;
    margin-top:-2px;
}
@media(max-width:800px){
    .ke-hero-area{
        padding:18px 0 4px;
    }
    .ke-hero-area .ke-category-strip{
        padding:0 16px 18px !important;
        margin:0 -16px;
    }
}

/* KriptoEfsanesi v3.2 Homepage Flow Fix */
.home .ke-main{
    background:#070707 !important;
    padding-top:0 !important;
}

.home .ke-breaking{
    margin:0 !important;
}

.ke-hero-area{
    background:#070707 !important;
    padding:24px 0 8px !important;
}

.ke-hero-area .ke-hero-slider{
    padding:0 0 14px !important;
}

.ke-hero-area .ke-category-strip{
    background:#070707 !important;
    padding:0 0 18px !important;
    margin:0 !important;
}

.home .ke-section-head-premium{
    margin-top:10px !important;
}

@media(max-width:800px){
    .ke-hero-area{
        padding:20px 0 4px !important;
    }

    .ke-hero-area .ke-category-strip{
        padding:0 16px 16px !important;
        margin:0 -16px !important;
    }
}

/* KriptoEfsanesi v3.2 Son Haberler Visibility Fix */
.ke-section-head-premium h2{
    color:#ffffff !important;
    opacity:1 !important;
    visibility:visible !important;
}

.ke-section-head-premium{
    background:linear-gradient(135deg,#101010,#070707) !important;
}

.ke-section-head-premium p{
    color:#d6d6d6 !important;
}

.ke-section-head-premium a{
    color:#f5b21b !important;
}

/* KriptoEfsanesi v3.2 Premium News Cards Compact */
.ke-news-card{
    border-color:rgba(245,178,27,.18) !important;
    background:linear-gradient(180deg,#101010,#080808) !important;
}

.ke-news-card span{
    display:inline-block;
    margin-bottom:10px;
    letter-spacing:.02em;
}

.ke-news-card h3{
    margin:6px 0 12px !important;
}

.ke-news-card h3 a{
    color:#ffffff !important;
    text-decoration:none !important;
}

.ke-news-card p{
    margin:0 !important;
    color:#cfcfcf !important;
}

@media(max-width:800px){
    .ke-news-grid{
        gap:14px !important;
    }

    .ke-news-card{
        padding:18px !important;
        border-radius:20px !important;
    }

    .ke-news-card h3{
        font-size:23px !important;
        line-height:1.24 !important;
    }

    .ke-news-card p{
        font-size:16px !important;
        line-height:1.65 !important;
    }
}

/* KriptoEfsanesi v3.2 Most Read Visibility Polish */
.ke-most-read .ke-section-head h2{
    color:#ffffff !important;
    opacity:1 !important;
}

.ke-most-read .ke-section-head span{
    color:#cfcfcf !important;
    opacity:1 !important;
}

.ke-most-read-card{
    border-color:rgba(245,178,27,.18) !important;
    background:linear-gradient(180deg,#101010,#080808) !important;
    box-shadow:0 14px 36px rgba(0,0,0,.22);
}

.ke-most-read-card strong{
    font-size:34px !important;
    color:#f5b21b !important;
}

@media(max-width:800px){
    .ke-most-read{
        margin:28px auto !important;
    }

    .ke-most-read-grid{
        grid-template-columns:1fr !important;
        gap:14px !important;
    }

    .ke-most-read-card{
        padding:18px !important;
        border-radius:20px !important;
    }
}

/* KriptoEfsanesi v3.3 News Meta + Read Link */
.ke-news-meta{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:10px;
    flex-wrap:wrap;
}

.ke-news-meta span{
    background:#151515;
    border:1px solid rgba(245,178,27,.20);
    color:#cfcfcf !important;
    border-radius:999px;
    padding:6px 10px;
    font-size:12px;
    font-weight:900;
}

.ke-news-meta .ke-news-cat{
    color:#f5b21b !important;
}

.ke-card-read{
    display:inline-block;
    margin-top:14px;
    color:#f5b21b;
    text-decoration:none;
    font-weight:900;
}

.ke-card-read:hover{
    color:#fff;
}

/* KriptoEfsanesi v3.4 Premium Hero Layout */
.ke-slide{
    display:grid !important;
    grid-template-columns:1.15fr .85fr;
    gap:32px;
    align-items:center;
}

.ke-slide-copy{
    min-width:0;
}

.ke-slide-image img{
    width:100%;
    height:100%;
    display:block;
    border-radius:22px;
    object-fit:cover;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}

@media(max-width:900px){
    .ke-slide{
        grid-template-columns:1fr !important;
    }

    .ke-slide-image{
        order:2;
        margin-top:22px;
    }

    .ke-slide-copy{
        order:1;
    }
}

/* KriptoEfsanesi Footer Premium Polish */
.ke-footer{
    margin-top:36px !important;
    background:linear-gradient(180deg,#080808 0%,#030303 100%) !important;
    border-top:1px solid rgba(245,178,27,.24) !important;
    padding:34px 0 18px !important;
}

.ke-footer-grid{
    align-items:flex-start !important;
}

.ke-footer p{
    margin:0 !important;
    color:#c6c6c6 !important;
}

.ke-footer a{
    color:#d0d0d0 !important;
}

.ke-footer-bottom{
    margin-top:24px !important;
    padding-top:16px !important;
    border-top:1px solid rgba(255,255,255,.08) !important;
    color:#9a9a9a !important;
    align-items:center !important;
}

@media(max-width:800px){
    .ke-footer{
        margin-top:28px !important;
        padding:28px 0 18px !important;
    }

    .ke-footer h3{
        font-size:24px !important;
    }

    .ke-footer-bottom{
        text-align:center !important;
        align-items:center !important;
        gap:6px !important;
    }
}

/* KriptoEfsanesi v3.5 Premium Footer */
.ke-footer-premium{
    margin-top:34px !important;
    padding:0 !important;
    background:linear-gradient(180deg,#080808 0%,#020202 100%) !important;
    border-top:1px solid rgba(245,178,27,.35) !important;
}

.ke-footer-premium-inner{
    display:grid !important;
    grid-template-columns:1.4fr 1fr !important;
    gap:34px !important;
    padding:34px 0 26px !important;
}

.ke-footer-brand{
    display:flex !important;
    gap:18px !important;
    align-items:flex-start !important;
}

.ke-footer-logo{
    width:54px !important;
    height:54px !important;
    border-radius:18px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    background:#f5b21b !important;
    color:#070707 !important;
    font-weight:1000 !important;
    border:1px solid rgba(255,255,255,.18) !important;
    box-shadow:0 16px 36px rgba(245,178,27,.16) !important;
}

.ke-footer-links{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:22px !important;
}

.ke-footer-premium h3,
.ke-footer-premium h4{
    color:#fff !important;
}

.ke-footer-premium a{
    color:#cfcfcf !important;
    font-weight:800 !important;
}

.ke-footer-premium-bottom{
    border-top:1px solid rgba(255,255,255,.08) !important;
    padding:15px 0 18px !important;
    display:flex !important;
    justify-content:space-between !important;
    gap:12px !important;
    color:#9b9b9b !important;
    font-size:13px !important;
}

@media(max-width:800px){
    .ke-footer-premium-inner{
        grid-template-columns:1fr !important;
        padding:28px 0 20px !important;
    }

    .ke-footer-brand{
        flex-direction:column !important;
    }

    .ke-footer-links{
        grid-template-columns:1fr 1fr !important;
    }

    .ke-footer-premium-bottom{
        flex-direction:column !important;
        text-align:center !important;
        align-items:center !important;
    }
}

/* KriptoEfsanesi v3.5 Footer Real Logo */
.ke-footer-logo{
    overflow:hidden !important;
    background:transparent !important;
    padding:0 !important;
}

.ke-footer-logo img{
    width:100% !important;
    height:100% !important;
    display:block !important;
    object-fit:cover !important;
    border-radius:18px !important;
}

/* KriptoEfsanesi v3.5 Footer Final Touch */
.ke-footer-logo{
    width:64px !important;
    height:64px !important;
}


/* KriptoEfsanesi v3.6 Cinematic Intro */
#ke-intro{
    position:fixed;
    inset:0;
    z-index:999999;
    background:radial-gradient(circle at center,#101010 0%,#030303 58%,#000 100%);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    overflow:hidden;
}

#ke-intro:before{
    content:"";
    position:absolute;
    inset:-30%;
    background:linear-gradient(115deg,transparent 35%,rgba(245,178,27,.18) 48%,transparent 62%);
    animation:keIntroLight 1.9s ease forwards;
}

.ke-intro-orbit{
    position:absolute;
    width:210px;
    height:210px;
    border:1px solid rgba(245,178,27,.28);
    border-radius:50%;
    box-shadow:0 0 60px rgba(245,178,27,.12);
    animation:keIntroOrbit 1.8s ease forwards;
}

.ke-intro-eagle{
    width:118px;
    height:118px;
    border-radius:28px;
    overflow:hidden;
    background:#050505;
    border:1px solid rgba(245,178,27,.35);
    box-shadow:0 24px 80px rgba(0,0,0,.55),0 0 42px rgba(245,178,27,.18);
    animation:keIntroEagle 1.8s cubic-bezier(.2,.9,.2,1) forwards;
}

.ke-intro-eagle img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    filter:grayscale(1) contrast(1.18);
}

.ke-intro-title{
    position:relative;
    z-index:2;
    margin-top:18px;
    color:#fff;
    font-size:24px;
    font-weight:1000;
    letter-spacing:.04em;
    opacity:0;
    transform:translateY(14px);
    animation:keIntroTitle .9s ease .75s forwards;
}

.ke-intro-line{
    width:0;
    height:2px;
    margin-top:12px;
    background:linear-gradient(90deg,transparent,#f5b21b,transparent);
    animation:keIntroLine .8s ease 1s forwards;
}

#ke-intro.is-done{
    animation:keIntroOut .45s ease forwards;
}

@keyframes keIntroEagle{
    0%{opacity:0;transform:translateX(-120px) scale(.72) rotate(-8deg);}
    55%{opacity:1;transform:translateX(0) scale(1.08) rotate(0deg);}
    100%{opacity:1;transform:translateX(0) scale(1) rotate(0deg);}
}

@keyframes keIntroTitle{
    to{opacity:1;transform:translateY(0);}
}

@keyframes keIntroLine{
    to{width:180px;}
}

@keyframes keIntroOrbit{
    0%{opacity:0;transform:scale(.72) rotate(0deg);}
    100%{opacity:1;transform:scale(1) rotate(180deg);}
}

@keyframes keIntroLight{
    0%{transform:translateX(-45%) rotate(0deg);}
    100%{transform:translateX(45%) rotate(0deg);}
}

@keyframes keIntroOut{
    to{opacity:0;visibility:hidden;pointer-events:none;}
}

@media(max-width:800px){
    .ke-intro-eagle{
        width:96px;
        height:96px;
        border-radius:24px;
    }

    .ke-intro-orbit{
        width:176px;
        height:176px;
    }

    .ke-intro-title{
        font-size:21px;
    }
}


/* KriptoEfsanesi v3.6 Final Responsive Pack */

/* Windows / Desktop */
@media(min-width:1181px){
    .ke-container{
        width:min(1180px, calc(100% - 48px)) !important;
    }

    .ke-hero-slider{
        gap:26px !important;
    }

    .ke-news-grid,
    .ke-archive-grid{
        gap:20px !important;
    }
}

/* Tablet */
@media(min-width:769px) and (max-width:1180px){
    .ke-container{
        width:min(100%, calc(100% - 36px)) !important;
    }

    .ke-hero-slider{
        grid-template-columns:1fr !important;
    }

    .ke-slider-sidebar{
        display:grid !important;
        grid-template-columns:repeat(2,1fr) !important;
        gap:10px !important;
    }

    .ke-news-grid,
    .ke-archive-grid{
        grid-template-columns:repeat(2,1fr) !important;
    }

    .ke-footer-premium-inner{
        grid-template-columns:1fr !important;
    }
}

/* Mobile */
@media(max-width:768px){
    .ke-container{
        width:calc(100% - 28px) !important;
    }

    .ke-main{
        padding-top:0 !important;
    }

    .ke-breaking{
        margin:0 !important;
    }

    .ke-slide{
        padding:22px 18px !important;
        border-radius:22px !important;
    }

    .ke-slide h1{
        font-size:clamp(30px, 8vw, 40px) !important;
        line-height:1.1 !important;
    }

    .ke-slide p{
        font-size:16px !important;
        line-height:1.65 !important;
    }

    .ke-slide-image img,
    .ke-news-thumb img,
    .ke-archive-thumb img{
        max-height:230px !important;
        object-fit:cover !important;
    }

    .ke-section-head,
    .ke-section-head-premium{
        flex-direction:column !important;
        align-items:flex-start !important;
    }

    .ke-news-grid,
    .ke-archive-grid,
    .ke-most-read-grid{
        grid-template-columns:1fr !important;
        gap:14px !important;
    }

    .ke-news-card,
    .ke-archive-card,
    .ke-most-read-card{
        border-radius:20px !important;
    }

    .ke-footer-links{
        grid-template-columns:1fr 1fr !important;
        gap:16px !important;
    }

    .ke-footer-premium-bottom{
        font-size:12px !important;
    }
}

/* Small Mobile */
@media(max-width:420px){
    .ke-container{
        width:calc(100% - 22px) !important;
    }

    .ke-slide h1{
        font-size:30px !important;
    }

    .ke-read-more,
    .ke-card-read{
        width:100% !important;
        text-align:center !important;
    }

    .ke-footer-links{
        grid-template-columns:1fr !important;
    }
}

/* Final header responsive fix - 2026-07-02 */
@media (min-width:901px){
    .ke-header-inner{
        gap:14px !important;
    }

    .ke-brand{
        flex-shrink:0 !important;
        font-size:30px !important;
        max-width:280px !important;
    }

    .ke-nav{
        flex:1 !important;
        min-width:0 !important;
        gap:14px !important;
    }

    .ke-nav ul{
        gap:13px !important;
        flex-wrap:nowrap !important;
    }

    .ke-nav a{
        font-size:15px !important;
        line-height:1.1 !important;
        white-space:nowrap !important;
    }

    .ke-search{
        flex-shrink:0 !important;
    }

    .ke-search input{
        width:145px !important;
    }
}

@media (max-width:900px){
    .ke-header .ke-topbar{
        display:block !important;
    }

    .ke-header .ke-topbar .ke-container{
        display:flex !important;
        flex-direction:column !important;
        align-items:flex-start !important;
        gap:8px !important;
        padding:10px 0 !important;
    }

    .ke-header .ke-social{
        display:flex !important;
        flex-wrap:wrap !important;
        gap:8px !important;
        width:100% !important;
        justify-content:flex-start !important;
    }

    .ke-header .ke-social a{
        margin:0 !important;
        padding:7px 10px !important;
        font-size:13px !important;
    }

    .ke-breaking .ke-container{
        flex-direction:column !important;
        align-items:flex-start !important;
        gap:8px !important;
    }

    .ke-breaking span{
        display:inline-flex !important;
        width:auto !important;
        max-width:max-content !important;
        white-space:nowrap !important;
    }
}

/* Mobile section header button alignment fix - 2026-07-02 */
@media (max-width:900px){
    .ke-section-head{
        flex-direction:column !important;
        align-items:flex-start !important;
        gap:12px !important;
    }

    .ke-section-head a{
        align-self:flex-start !important;
        margin-left:0 !important;
        max-width:100% !important;
        white-space:normal !important;
    }
}

/* Mobile hero read button center fix - 2026-07-02 */
@media (max-width:900px){
    .ke-read-more{
        display:block !important;
        width:fit-content !important;
        max-width:100% !important;
        margin:18px auto 0 !important;
        text-align:center !important;
        box-sizing:border-box !important;
    }
}

/* Mobile card read button premium */
@media (max-width:900px){
    .ke-card-read{
        display:block !important;
        width:fit-content !important;
        margin:22px auto 0 !important;
        padding:12px 22px !important;
        background:#f5b21b !important;
        color:#111 !important;
        border-radius:14px !important;
        font-weight:800 !important;
        text-decoration:none !important;
    }
}

/* Mobile social box premium alignment */
@media (max-width:900px){
    .ke-social-box{
        width:min(100% - 28px, 680px) !important;
        margin:34px auto !important;
        padding:28px !important;
        box-sizing:border-box !important;
        overflow:hidden !important;
        border-radius:26px !important;
    }

    .ke-social-grid{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:12px !important;
        width:100% !important;
    }

    .ke-social-grid a{
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        width:100% !important;
        min-height:56px !important;
        box-sizing:border-box !important;
        margin:0 !important;
        border-radius:16px !important;
        text-align:center !important;
        font-size:17px !important;
        font-weight:900 !important;
    }
}

/* Strong mobile social card fix */
@media (max-width:900px){
    section.ke-container.ke-social-box{
        display:block !important;
        width:calc(100% - 32px) !important;
        max-width:calc(100% - 32px) !important;
        margin-left:auto !important;
        margin-right:auto !important;
        padding:22px 16px !important;
    }

    section.ke-container.ke-social-box .ke-social-grid{
        display:flex !important;
        flex-direction:column !important;
        width:100% !important;
        max-width:100% !important;
    }

    section.ke-container.ke-social-box .ke-social-grid a{
        width:100% !important;
        max-width:100% !important;
    }
}

/* ============================
   KriptoEfsanesi Social Premium v2
   ============================ */

@media (max-width:900px){

    .ke-social-box{
        background:linear-gradient(135deg,#0d0d0d,#171717 65%,#2a1a00) !important;
        border:1px solid rgba(245,178,27,.35) !important;
        border-radius:28px !important;
        padding:28px 20px !important;
        margin:36px 16px !important;
        overflow:hidden !important;
        box-sizing:border-box !important;
    }

    .ke-social-box h2{
        font-size:26px !important;
        line-height:1.2 !important;
        margin-bottom:14px !important;
    }

    .ke-social-box p{
        color:#bdbdbd !important;
        line-height:1.7 !important;
        margin-bottom:24px !important;
    }

    .ke-social-grid{
        display:flex !important;
        flex-direction:column !important;
        gap:14px !important;
    }

    .ke-social-grid a{
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        min-height:64px !important;
        width:100% !important;
        border:1px solid rgba(245,178,27,.25) !important;
        border-radius:18px !important;
        background:#0b0b0b !important;
        color:#fff !important;
        font-size:18px !important;
        font-weight:800 !important;
        text-decoration:none !important;
        transition:.25s;
        box-sizing:border-box !important;
    }

    .ke-social-grid a:hover{
        background:#111 !important;
        border-color:#f5b21b !important;
        color:#f5b21b !important;
    }

    /* Beyaz şerit temizliği */
    .ke-social-box + *{
        margin-top:0 !important;
    }

    section + section{
        border-top:0 !important;
    }

}

/* Social premium final layout */
.ke-social-premium{
    background:linear-gradient(135deg,#0d0d0d,#171717 65%,#2a1a00) !important;
    border:1px solid rgba(245,178,27,.35) !important;
    box-shadow:0 20px 60px rgba(0,0,0,.35) !important;
}

.ke-social-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.ke-social-item{
    display:flex;
    align-items:center;
    gap:14px;
    background:#0b0b0b;
    border:1px solid rgba(245,178,27,.24);
    border-radius:18px;
    padding:16px;
    color:#fff;
    text-decoration:none;
    box-sizing:border-box;
}

.ke-social-item strong{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:#f5b21b;
    color:#111;
    font-size:20px;
    flex-shrink:0;
}

.ke-social-item span{
    display:flex;
    flex-direction:column;
    gap:4px;
    min-width:0;
    flex:1;
}

.ke-social-item b{
    color:#fff;
    font-size:16px;
}

.ke-social-item small{
    color:#aaa;
    font-size:13px;
    line-height:1.35;
}

.ke-social-item em{
    color:#f5b21b;
    font-style:normal;
    font-weight:900;
    font-size:22px;
}

@media(max-width:900px){
    .ke-social-premium{
        width:calc(100% - 32px) !important;
        max-width:calc(100% - 32px) !important;
        margin:34px auto !important;
        padding:24px 16px !important;
    }

    .ke-social-list{
        grid-template-columns:1fr !important;
    }
}

/* Official-like social icons final */
.ke-social-icon{
    width:52px;
    height:52px;
    border-radius:14px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
}

.ke-icon-youtube{
    background:#ff0000;
}

.ke-icon-youtube::before{
    content:"";
    width:0;
    height:0;
    border-top:11px solid transparent;
    border-bottom:11px solid transparent;
    border-left:18px solid #fff;
    margin-left:4px;
}

.ke-icon-x{
    background:#111;
}

.ke-icon-x::before{
    content:"𝕏";
    color:#fff;
    font-size:30px;
    font-weight:900;
    line-height:1;
}

.ke-icon-instagram{
    background:radial-gradient(circle at 30% 110%,#fdf497 0%,#fdf497 18%,#fd5949 42%,#d6249f 62%,#285AEB 100%);
}

.ke-icon-instagram::before{
    content:"";
    width:26px;
    height:26px;
    border:4px solid #fff;
    border-radius:9px;
}

.ke-icon-instagram::after{
    content:"";
    position:absolute;
    width:7px;
    height:7px;
    background:#fff;
    border-radius:50%;
    right:14px;
    top:13px;
}

.ke-icon-whatsapp{
    background:#25D366;
}

.ke-icon-whatsapp::before{
    content:"☎";
    color:#fff;
    font-size:28px;
    font-weight:900;
    transform:rotate(-18deg);
}

.ke-icon-telegram{
    background:#229ED9;
}

.ke-icon-telegram::before{
    content:"";
    width:0;
    height:0;
    border-top:12px solid transparent;
    border-bottom:12px solid transparent;
    border-right:28px solid #fff;
    transform:rotate(-35deg);
    margin-left:-2px;
}

.ke-social-item strong{
    display:none !important;
}

@media(max-width:900px){
    .ke-social-icon{
        width:54px;
        height:54px;
        border-radius:15px;
    }
}

/* KriptoEfsanesi Nitro Banner */
.ke-nitro-banner{
    margin:28px auto 22px;
    display:grid;
    grid-template-columns:1.25fr .75fr;
    gap:22px;
    align-items:center;
    background:radial-gradient(circle at 85% 40%,rgba(245,178,27,.24),transparent 34%),linear-gradient(135deg,#0c0c0c,#171717 62%,#2b1a00);
    border:1px solid rgba(245,178,27,.34);
    border-radius:28px;
    padding:30px;
    box-shadow:0 24px 70px rgba(0,0,0,.42);
    overflow:hidden;
}

.ke-nitro-copy span{
    display:inline-flex;
    background:#f5b21b;
    color:#111;
    font-weight:900;
    border-radius:999px;
    padding:9px 14px;
    margin-bottom:14px;
}

.ke-nitro-copy h2{
    color:#fff;
    font-size:34px;
    line-height:1.14;
    margin:0 0 12px;
}

.ke-nitro-copy p{
    color:#cfcfcf;
    font-size:16px;
    line-height:1.7;
    max-width:680px;
    margin:0 0 18px;
}

.ke-nitro-copy a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#f5b21b;
    color:#111;
    text-decoration:none;
    font-weight:900;
    border-radius:14px;
    padding:13px 18px;
}

.ke-nitro-art{
    display:flex;
    justify-content:center;
}

.ke-nitro-art img{
    width:100%;
    max-width:310px;
    border-radius:24px;
    filter:drop-shadow(0 18px 35px rgba(245,178,27,.22));
}

@media(max-width:900px){
    .ke-nitro-banner{
        width:calc(100% - 32px);
        max-width:calc(100% - 32px);
        grid-template-columns:1fr;
        padding:24px 18px;
        margin:24px auto 22px;
        text-align:left;
        box-sizing:border-box;
    }

    .ke-nitro-copy h2{
        font-size:28px;
    }

    .ke-nitro-art img{
        max-width:240px;
    }
}


/* Header toolbar final repair - 2026-07-02 */
.ke-header{
    position:sticky !important;
    top:0 !important;
    z-index:999 !important;
    background:#050505 !important;
}

.ke-header-inner{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:16px !important;
    min-height:72px !important;
}

.ke-brand{
    flex:0 0 auto !important;
    max-width:300px !important;
    min-width:260px !important;
    display:flex !important;
    align-items:center !important;
    gap:12px !important;
    white-space:nowrap !important;
}

.ke-brand span{
    font-size:28px !important;
    line-height:1 !important;
}

.ke-nav{
    flex:1 1 auto !important;
    min-width:0 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:14px !important;
}

.ke-nav ul{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:13px !important;
    flex-wrap:nowrap !important;
    min-width:0 !important;
}

.ke-nav li{
    flex:0 0 auto !important;
}

.ke-nav a{
    font-size:15px !important;
    line-height:1.1 !important;
    white-space:nowrap !important;
}

.ke-search{
    flex:0 0 auto !important;
    max-width:150px !important;
}

.ke-search input{
    width:150px !important;
    max-width:150px !important;
    height:38px !important;
    font-size:14px !important;
}

@media(max-width:1100px) and (min-width:901px){
    .ke-brand{
        min-width:230px !important;
        max-width:250px !important;
    }

    .ke-brand span{
        font-size:24px !important;
    }

    .ke-nav ul{
        gap:9px !important;
    }

    .ke-nav a{
        font-size:13px !important;
    }

    .ke-search input{
        width:120px !important;
    }
}

@media(max-width:900px){
    .ke-header .ke-topbar{
        display:block !important;
    }

    .ke-header .ke-topbar .ke-container{
        display:flex !important;
        flex-direction:column !important;
        align-items:flex-start !important;
        gap:8px !important;
        padding:10px 0 !important;
    }

    .ke-header .ke-social{
        display:flex !important;
        flex-wrap:wrap !important;
        gap:10px !important;
    }

    .ke-header-inner{
        flex-wrap:wrap !important;
        min-height:96px !important;
        padding:18px 0 !important;
    }

    .ke-brand{
        min-width:0 !important;
        max-width:calc(100% - 82px) !important;
    }

    .ke-brand span{
        font-size:32px !important;
    }

    .ke-menu-toggle{
        display:flex !important;
        margin-left:auto !important;
    }

    .ke-nav{
        display:none !important;
        flex-basis:100% !important;
        width:100% !important;
        margin-top:14px !important;
        padding:14px !important;
        border:1px solid #242424 !important;
        border-radius:18px !important;
        background:#090909 !important;
        box-sizing:border-box !important;
    }

    .ke-nav.is-open{
        display:block !important;
    }

    .ke-nav ul{
        display:grid !important;
        grid-template-columns:1fr 1fr !important;
        gap:8px !important;
        margin:0 0 12px !important;
        padding:0 !important;
    }

    .ke-nav a{
        display:block !important;
        padding:10px 8px !important;
        border:1px solid #242424 !important;
        border-radius:12px !important;
        background:#111 !important;
        text-align:center !important;
        font-size:14px !important;
        white-space:normal !important;
    }

    .ke-search{
        max-width:none !important;
        width:100% !important;
    }

    .ke-search input{
        width:100% !important;
        max-width:100% !important;
    }
}


/* Emergency desktop header recovery */
@media(min-width:901px){
    .ke-header-inner{
        display:flex !important;
        align-items:center !important;
        gap:14px !important;
        min-height:72px !important;
    }

    .ke-brand{
        min-width:0 !important;
        max-width:300px !important;
        flex:0 0 auto !important;
        overflow:hidden !important;
    }

    .ke-brand img{
        width:48px !important;
        height:48px !important;
    }

    .ke-brand span{
        font-size:26px !important;
        line-height:1 !important;
        white-space:nowrap !important;
    }

    .ke-nav{
        flex:1 1 auto !important;
        min-width:0 !important;
        display:flex !important;
        align-items:center !important;
        justify-content:flex-end !important;
        gap:12px !important;
    }

    .ke-nav ul{
        display:flex !important;
        flex-wrap:nowrap !important;
        align-items:center !important;
        justify-content:flex-end !important;
        gap:12px !important;
        min-width:0 !important;
    }

    .ke-nav a{
        white-space:nowrap !important;
        font-size:14px !important;
        line-height:1.1 !important;
    }

    .ke-search{
        display:none !important;
    }
}

@media(min-width:901px) and (max-width:1180px){
    .ke-brand span{
        font-size:22px !important;
    }

    .ke-nav ul{
        gap:8px !important;
    }

    .ke-nav a{
        font-size:13px !important;
    }
}
