
/*
Theme Name: Eadson Ikobo
Theme URI: https://eadsontechnologies.com/ikobo
Author: Eadson Technologies (Alexander U.O.)
Author URI: https://alexubokwe.eadsontechnologies.com
Description: Custom crypto analysis theme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ikobo
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

:root {

    --bg-main: #0b0d12;
    --bg-card: #0B0B0B;
    --logo-color: #fff;
    --video-feature-bg: #fff;
    --video-feature-hover: #000;
    --button-hover: #fff;

    --text-primary: #e6edf3;
    --text-secondary: #9da7b3;
    --footer-text-color: #fff;
    --heatmap-bg: #0b0b0b;
    --heatmap-text: rgba(255, 255, 255, 0.9);
    --shadow-color: 0 1px 4px rgba(247, 243, 243, 0.3);
    --transition: all 0.3s linear;
    --footer-bg: #020305;
    --copyright-bg: #050608;

}



body[data-theme="light"] {

    --bg-main: #f5f7fa;
    --bg-card: #ffffff;
    --logo-color: #000;
    --video-feature-bg: #000;
    --video-feature-hover: #fff;
    --button-hover: #000;

    --text-primary: #08090a;
    --text-secondary: #57606a;
    --footer-text-color: #fff;
    --heatmap-bg: #ffffff;
    --heatmap-text: rgba(0, 0, 0, 0.85);
    --shadow-color: 0 1px 4px rgba(0, 0, 0, 0.3);
    --footer-bg: #020305;
    --copyright-bg: #050608;
    

}

body {
    background: var(--bg-main);
    color: var(--text-primary);
}

.section-center {
    padding: 2rem 1rem;
}

@media screen and (min-width: 768px) {
    .section-center {
        padding: 2rem 5rem;
    }
}

@media screen and (min-width: 1200px) {
    .section-center {
        padding: 2rem 10rem;
    }
}

.card,
.asset-card {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-color);
    border-radius: 5px;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}
.common-btn {
    background: transparent;
    color: var(--primaryColor);
    font-weight: bold;
    border: 2px solid var(--primaryColor);
    box-shadow: var(--shadow-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.5s ease;
}

.common-btn a {
    text-decoration: none;
    color: var(--primaryColor);
}

.common-btn:hover {
    background: var(--button-hover);
    color: var(--video-feature-hover);
}

.common-btn:hover a {
    color: #fff;
}

.invest-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.subheading,
.heading {
    padding-top: 10px;
    text-align: center;
    color: var(--primaryColor);
}

.invest-card {
    padding: 2rem;
}

.invest-card-header-icon {
    display: flex;
    justify-content: space-between;
}
.invest-card i {
    font-size: 2rem;
}
.invest-card button {
    margin-top: 1rem;
}

.invest-cards-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

@media screen and (min-width: 768px) {
    .invest-cards-parent {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .invest-card {
        flex: 1 1 calc(33.33% - 1rem);
    }
}
/* Theme toggle css */

/* Hide the checkbox */
#themeToggle {
    display: none;
}

/* Toggle container */
.toggle-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60px;
    height: 30px;
    background: #222;
    border-radius: 50px;
    padding: 5px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

/* Icons */
.toggle-label i {
    font-size: 14px;
    z-index: 2;
}

/* Sun icon */
.fa-sun {
    color: #f39c12;
}

/* Moon icon */
.fa-moon {
    color: #fff;
}

/* Toggle circle */
.toggle-label::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    top: 4px;
    left: 4px;
    transition: transform 0.3s ease;
}

/* Checked state */
#themeToggle:checked+.toggle-label {
    background: #ddd;
}

#themeToggle:checked+.toggle-label::before {
    transform: translateX(30px);
}


/* ==================================== Navigation ======================================================= */

nav ul li,
aside ul li {
    list-style: none;
}

nav ul li a,
aside ul li a {
    text-decoration: none;
}

.nav-links {
    display: none;
}

.nav {
    height: 5rem;
    padding: 1rem 0;
    display: grid;
    align-items: center;
    transition: var(--transition);
    z-index: 9999;
}

.nav-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    width: 100%;
    margin: 0 auto;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.nav-header a {
    text-decoration: none;
    color: var(--logo-color);
}
.nav-btn {
    background: transparent;
    border-color: transparent;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    justify-self: end;
}

.logo {
    font-weight: bold;
}

.logo i {
    font-size: 2rem;
}

@media screen and (min-width: 768px ) {
    .nav {
        background: var(--bg-main);
    }
    .nav-btn {
        display: none;
    }

    .nav-links {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
    }

    .nav-links a {
        text-transform: capitalize;
        color: var(--text-primary);
        font-weight: bold;
        transition: var(--transition);
    }

    .nav-links a:hover {
        color: var(--text-secondary);
    }

    .nav-center {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* Fixed Nav */

.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-bottom: 5rem;
    z-index: 9999;
    box-shadow: var(--shadow-color);
    background: var(--bg-main);
}

/* ============================================= Sidebar ================================================== */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-secondary);
    z-index: 10;
    display: grid;
    place-items: center;
    transition: var(--transition);
    transform: translateX(-100%);
}

.show-sidebar {
    transform: translateX(0);
}

.sidebar-links {
    text-align: center;
}

.sidebar-links a{
    font-size: 2rem;
    text-transform: capitalize;
    transition: var(--transition);
    color: var(--text-primary);
    display: inline-block;
    margin-bottom: 1.5rem;
}

.sidebar-links a:hover {
    color: var(--bg-main);
}

.social-icons {
    display: grid;
    margin-top: 3rem;
    width: 20rem;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
}

.social-icon {
    font-size: 1.5rem;
    color: var(--bg-card);
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--text-primary);
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1rem;
    font-size: 3rem;
    background: transparent;
    color: var(--bg-card);
    border: transparent;
    cursor: pointer;

}
/* ============================================= Hero =================================================== */

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    margin-top: 4rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
}

.hero h1 {
    margin: 1rem auto;
    font-size: 1.5rem;
}

.hero button {
    margin-top: 1rem;
}


.heroIcon1,
.heroIcon2,
.heroIcon3,
.heroIcon4 {
    position: absolute;
}

.heroIcon1 {
    top: 2.6rem;
    left: 1rem;
    width: 70px;
    height: 70px;
    background: #fff;
    color: #000;
    display: grid;
    place-items: center;
    border-radius: 50%;
    animation: slideDown 1s ease-in-out infinite alternate;
}

.heroIcon2 {
    right: 1rem;
    bottom: 8rem;
    width: 70px;
    height: 70px;
    background: #fff;
    color: #000;
    display: grid;
    place-items: center;
    border-radius: 50%;
    animation: slideRight 1s ease-in-out infinite alternate;
}

.heroIcon3 {
    left: 4rem;
    bottom: 9rem;
    width: 70px;
    height: 70px;
    background: #fff;
    color: #000;
    display: grid;
    place-items: center;
    border-radius: 50%;
    animation: slideDown1 1s ease-in-out infinite alternate;
}

.heroIcon4 {
    right: 10rem;
    top: 9rem;
    width: 70px;
    height: 70px;
    background: #fff;
    color: #000;
    display: grid;
    place-items: center;
    border-radius: 50%;
    animation: slideRight1 1s ease-in-out infinite alternate;
}

@keyframes slideDown {
    from {
        top: 100px;
    }

    to {
        top: 120px
    }
}

@keyframes slideRight {
    from {
        right: 10px;
    }

    to {
        right: 20px
    }
}

@keyframes slideRight1 {
    from {
        right: 20px;
    }

    to {
        right: 100px
    }
}

@keyframes slideDown1 {
    from {
        bottom: 10px;
    }

    to {
        bottom: 100px
    }
}


@media screen and (min-width: 768px) {
    .hero {
        flex-direction: row;
    }
    .hero-contents,
    .hero-image {
        flex: 1 1 calc(50% - 4rem);
        z-index: -10;
    }
    .hero h1 {
        font-size: 2rem;
    }
}

/* ============================== Features ============================ */

.feature-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    padding: 1rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--lightBg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img {
    width: 32px;
    height: 32px;
}

.feature-text {
    color: var(--gray);
}

.feature-title strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.feature-title-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
    .feature-container {
        background: #ac557d17;
        flex-direction: row;
        padding: 2rem;
        border-radius: 10px;
        margin-top: -5rem;
        z-index: 100;
    }
}


/* =====================About Section==================== */

.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 4rem;
}

.testimonial-image {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
}

.testimonials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-section button {
    margin-top: 1rem;
}



.about-left {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.about-right {
    text-align: center;
}

.about-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    /* prevents it from being too big */
    height: auto;
    object-fit: contain;
}

.about-right button {
    display: inline-block;
    margin-top: 1rem;
}

@media screen and (min-width: 768px) {
    .about-section {
        flex-direction: row;
    }
    .about-left,
    .about-right {
        flex: 1 1 calc(50% - 1rem);
    }

    .about-right .about-image img {
        width: 100%;
    }
}


.highlight {
    text-decoration: underline;
    text-decoration-thickness: 6px;
    text-decoration-color: #3AD6C5;
}


.chart-icon {
    width: 60px;
    height: 60px;
}

.features {
    margin: 1.5rem;
    list-style: none;
    padding: 0;
}

.features li{
    margin: 0.5rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: var(--gray);
    font-size: 0.95rem;
}

.features li::before {
    content: "✔";
    color: var(--primaryColor);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.price-chart img {
    width: 100%;
    border-radius: 1rem;
}

.video-section {
    background: var(--white);
}

.video-parent-container {
    text-align: center;
    padding: 2rem 1rem;
    /* margin: auto; */
}

.video-parent-container h2 {
    margin-bottom: 2.5rem;
}

.video-features {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 50px;
}


.video-feature {
    border: 1px solid var(--video-feature-bg);
    border-radius: 10px;
    padding: 1rem;
    background: transparent;
    color: var(--primaryColor);
    transition: 0.4s ease-in-out;
}


.video-feature i {
    font-size: 60px;
}

.video-feature h3 {
    margin: 0.3rem;
    font-size: 1rem;
}

.video-feature p {
    font-size: 0.9rem;
}

.video-feature:hover {
    background: var(--video-feature-bg);
    color: var(--video-feature-hover);
}

.video-feature:hover p {
    color: var(--video-feature-hover);
}

@media screen and (min-width: 768px) {
    .video-features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .video-feature {
        flex: 1 1 calc(25% - 1.5rem);
    }
}

.video-container {
    /* position: relative; */
    /* max-width: 800px; */
    width: 100%;
    margin: auto;
}

.video-thumbnail {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.video-container img,
.video-container video {
    width: 100%;
    border-radius: 10px;
}

.play-button {
    /* position: absolute; */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primaryColor);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 24px;
    z-index: 4;
    color: var(--white);
}


.card h2,
.exchange-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    color: var(--gray);
}

.card p,
.exchange-card p {
    color: var(--primaryColor);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.card ul {
    list-style: none;
    padding: 0;
}



.card ul li::before {
    content: "✔";
    position: absolute;
    left: 10px;
    color: var(--primaryColor);
    font-weight: bold;
}

.recommended-exchanges,
.related-news {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}


.exchange {
    position: relative;
    padding: 1rem;
}

.exchange-logo {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    margin-bottom: 1.5rem;
}

.exchange-logo i {
    font-size: 2rem;
}

.news-item {
    padding: 1rem;
}

@media screen and (min-width: 768px) {
    .recommended-exchanges,
    .related-news {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .exchange,
    .news-item {
        flex: 1 1 33.33%;
    }

    .exchange button {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}

.exchanges-header, 
.news-header {
    text-align: center;
    margin: 2rem auto;
}

@media screen and (min-width: 768px){
    .exchanges-header, 
    .news-header {
        max-width: 60%;
    }
}
.exchanges-header h2, 
.news-header h2 {
    margin-bottom: 0.5rem;
}


@media screen and (min-width: 768px) {
    .trading-info {
            max-width: 300px;
            flex: 1;
        }
}

.divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.5);
    height: 150px;
}

.product-list {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 2rem;
    flex: 2;
}

.product {
    display: flex;
    flex-direction: column;
    align-content: center;
    color: var(--white);
    cursor: pointer;
}

.icon-circle {
    background: var(--white);
    color: var(--primaryColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-name {
    font-weight: 600;
}

.trading-products {
    background: var(--primaryColor);
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    text-align: center;
    margin-top: 2rem;
}







.divider {
    display: none;
}
@media screen and (min-width: 768px) {
    .divider {
            display: block;
            width: 1px;
            background: rgba(255, 255, 255, 0.5);
            height: 150px;
        }
}

.product-list {
    display: flex;
    /* justify-content: space-evenly; */
    flex-wrap: wrap;
    gap: 2rem;
    flex: 2;
}

.product {
    display: flex;
    flex-direction: column;
    align-content: center;
    color: var(--white);
    cursor: pointer;
}

.icon-circle {
    background: var(--white);
    color: var(--primaryColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-name {
    font-weight: 600;
}


.analyst-section {
    margin-top: 5rem;
}

.analyst-section h1 {
    margin-bottom: 3rem;
}

.live-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
}

.prices-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    width: 100%;
    position: relative;
}

.prices-card::before {
    content: "";
    background: #ac557d17;
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    z-index: -1;
    transform: -3deg;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.price-item:last-child {
    border-bottom: none;
}

.symbol-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.symbol-info i {
    font-size: 40px;
}

.symbol-text {
    display: flex;
    flex-direction: column;
}

.symbol-text strong {
    font-size: 1rem;
    font-weight: 600;
}

.symbol-text small {
    font-size: 0.85rem;
    color: var(--gray);
}

.price-numbers {
    text-align: right;
}

.price-numbers div {
    font-size: 0.95rem;
}

.positive {
    color: #2cb67d;
}

.negative {
    color: #ef476f;
}


.live-text-block h2 {
    font-size: 2rem;
}

.live-text-block p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
    margin: 1rem 0;
}

.why-trade {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 1rem;
}

@media screen and (min-width: 768px) {
    .why-trade {
        flex-direction: row;
    }

    .left-box, 
    .right-box {
        flex: 1 1 calc(50% - 1rem);
    }
}


.left-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primaryColor);
}

.left-box p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.features li::before {
    content: "✔";
    color: var(--primaryColor);
}


.right-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primaryColor);
}

.live-report {
    padding: 2rem;
}

.live-report-header {
    text-align: center;
}

.live-report i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.live-reports-cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

@media screen and (min-width: 768px) {
    .live-reports-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .live-report {
        flex: 1 1 calc(33.33% - 1rem);
    }
}

.cta-banner {
    margin: 2rem auto;
    max-width: 1000px;
    background: var(--white);
    border: 2px solid #effed2;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    gap: 1rem;
}

.cta-banner button {
    margin-top: 1rem;
}

.cta-text {
    font-weight: 1.1rem;
    color: var(--gray);
}

.cta-text .highlight {
    font-weight: bold;
    padding: 0 4px;
}



/* ========================================= Footer ========================================= */

.footer {
    background: var(--footer-bg);
    color: var(--footer-text-color);
}
.footer-contents {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}



.footer-left {
    margin-bottom: 1rem;
}

.footer-left .fa-money-bill-trend-up {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-left span {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.socials-footer {
    margin: 1rem auto;
}

.socials-footer i {
    color: #fff;
    font-size: 1.5rem;
}
.footer-right {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 1rem;
}

.footer-right ul li {
    list-style: none;
}

@media screen and (min-width: 768px) {
    .footer-contents {
        flex-direction: row;
        gap: 10rem;
    }

    .footer-left {
        flex: 1 1 calc(30% - 3rem);
    }

    .footer-right {
        flex: 1 1 calc(70% - 7rem);
    }

    .footer-right {
        flex-direction: row;
    }
}
.copyright {
    background: var(--copyright-bg);
    padding: 10px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.copyright a {
    text-decoration: none;
    color: var(--text-secondary);
}



/* ============================= Single Page CSS ================================ */

/* Single page */

.coin-cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
}

.page-card {
    padding: 1rem;
}

@media screen and (min-width: 768px) {
    .coin-cards {
        flex-direction: row;
    }
    .page-card {
        flex: 1 1 calc(25% - 1rem);
    }
}
.title-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 2rem auto;
}


.single-page-signals {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.market-outlook {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

@media screen and (min-width: 768px) {
    .market-outlook {
        flex-direction: row;
    }
}


.structure,
.trend {
    flex: 1 1 calc(50% - 5rem);
    padding: 1rem;
}

.structure p,
.trend p {
    font-size: 0.75rem;
}

.structure hr, 
.trend hr {
    margin-bottom: 1rem;
}


/* Forex Session  */


.forex-session {
    padding: 1rem;
    text-align: center;
}
.forex-session-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
    .forex-session-container {
        flex-wrap: nowrap;
    }
    .forex-session {
        text-align: left;
    }
}

.forex-session-container .left,
.forex-session-container .right {
    flex: 1;
    min-width: 250px;
    /* background: #1e293b; */
    padding: 5px 20px;
    border-radius: 10px;
}


.forex-session-container .right {
    text-align: center;
}
.forex-session-container .session {
    margin-bottom: 15px;
    padding: 10px;
    /* background: #334155; */
    border-radius: 8px;
}

.forex-session-container .session.active {
    border: 2px solid #22c55e;
}

.forex-session-container select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: none;
}

.forex-session-container .active-session span {
    display: inline-block;
    background: #22c55e;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 5px;
    font-size: 14px;
}

.forex-session-container canvas {
    background: #1e293b;
    border-radius: 50%;
    display: block;
    margin: 10px auto;
}

.forex-session-container .countdown p {
    font-size: 20px;
    margin-top: 15px;
    text-align: center;
}

/* Asset Live Updates */

.live-update {
    margin-top: 15px;
}

.alert-box {
    background: var(--bg-card);
    border-left: 4px solid #00e676;
    box-shadow: var(--shadow-color);
    padding: 12px;
    font-size: 13px;
    white-space: normal;
}

.alert-box:contains("⚠️") {
    border-left-color: #ff1744;
}


/* ======================== Heatmap =========================================*/

#heatmap-container,
#heatmap-tooltip,
#heatmap-legend {
    transition: background 0.3s ease, color 0.3s ease;
}

.heatmap-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 5px;
}

.heatmap-legend {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.heatmap-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.heatmap-legend-box {
    width: 18px;
    height: 12px;
    display: inline-block;
}

.heatmap-container {
    width: 100%;
    max-width: 900px;

    /* Responsive height */
    height: clamp(220px, 50vh, 400px);
    /* aspect-ratio: 16/9; */
}

@media (max-width: 768px) {
    .heatmap-container {
        height: 260px;
    }
}

.heatmap-tooltip {
    position: absolute;
    top: 5px;
    pointer-events: none;
    padding: 8px;
    border-radius: 6px;
    display: none;
    z-index: 9;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.heatmap {
    position: relative;
    border-radius: 10px;
    width: 100%;
    padding: 1.5rem 1rem;
}

#heatmap-canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.heatmap-toggle {
    background: #111;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.55;
}

.heatmap-toggle:hover {
    opacity: 0.95;
}



/* ======================== Frontend Chart Canvas ========================== */

.canvas {
    width: 100% !important;
    height: 300px !important;
}

.toggleable {
    width: 100%;
}

.toggleable>div {
    width: 100% !important;
}

.charts-indicators {
    width: 100%;
    max-width: 100%;
}

#candle-15m,
#candle-1h,
#candle-4h,
#candle-1d,
#macd-15m,
#macd-1h,
#macd-4h,
#macd-1d,
#rsi-15m,
#rsi-1h,
#rsi-4h,
#rsi-1d,
#stoch-15m,
#stoch-1h,
#stoch-4h,
#stoch-1d,
#mfi-15m,
#mfi-1h,
#mfi-4h,
#mfi-1d {
    width: 100%;
}




/* ================================================= SENTIMENT ================================= */

.heatmap-sentiment {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    flex-direction: column;
}

.heatmap, 
.sentiment {
    flex: 1 1 50%;
}

@media screen and (min-width: 768px) {
    .heatmap-sentiment {
        flex-direction: row;
    }
}


.ikorbor-gauge {
    width: 100%;
    /* height: 475px; */
    margin: auto;
    position: relative;
    padding: 1rem 2rem;
    background: var(--bg-card);
    border-radius: 5px;
}

.gauge {
    width: 100%;
}

.gauge-arc {
    fill: none;
    stroke: #ddd;
    stroke-width: 14;
}

.gauge-needle {
    stroke: rgb(240, 179, 179);
    stroke-width: 3;
    transform-origin: 100px 110px;
    transition: transform 0.8s ease;
}

.gauge-center {
    fill: rgb(146, 77, 77);
}

.gauge-labels {
    display: flex;
    justify-content: space-between;
    margin-top: -10px;
    font-weight: bold;
}

.gauge-label.left {
    left: 10px;
}

.gauge-label.right {
    right: 10px;
}


/* ============================================= ARCHIVE PAGE ===================================== */

.asset-archive {
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    padding: 40px 20px;
}

.asset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.asset-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    transition: 0.2s ease;
    text-decoration: none;
    color: var(--text);
}

.asset-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.asset-header {
    display: flex;
    justify-content: space-between;
}

.symbol {
    font-size: 12px;
    color: var(--muted);
}

.filter-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-bar input,
.filter-bar select {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
}

.loadmore{
    text-align: center;
}

#loadMore {
    margin-top: 1rem;
    padding: 0.5rem;
    cursor: pointer;
}

.change {
    margin-left: 8px;
    font-weight: 600;
}

.change.positive,
.change-up {
    color: #16c784;
}

.change.negative,
.change-down {
    color: #ea3943;
}

.change.neutral {
    color: #999;
}

.asset-header img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-left: 8px;
    vertical-align: middle;
}