* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100%;
        position: relative;
    }
    
    * {
        max-width: 100%;
    }
    
    img, svg {
        max-width: 100%;
        height: auto;
    }
}
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #1C1C1C;
    color: #FFFFFF;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    display: flex;
    box-sizing: border-box;
}

.blur-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.blur-backdrop.show {
    opacity: 1;
    pointer-events: all;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.popup {
    background-color: #181818;
    border: 0.026vw solid #2F2F2F;
    border-radius: 1.04vw;
    box-shadow: 0px 0px 120px rgba(0, 0, 0, 0.8);
    padding: 3.5vh 2.5vw;
    min-width: 35vw;
    max-width: 40vw;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    filter: none;
    -webkit-filter: none;
    display: flex;
    flex-direction: column;
    gap: 2.5vh;
    align-items: center;
    text-align: center;
}

.popup-overlay.show .popup {
    transform: scale(1);
}

.popup-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25vw;
    line-height: 1.4em;
    color: #FFFFFF;
    margin: 0;
}

.popup-text {
    font-family: 'Plus Jakarta Display', sans-serif;
    font-weight: 400;
    font-size: 0.83vw;
    line-height: 1.6em;
    color: #A0AEC0;
    margin: 0;
    max-width: 90%;
}

.popup-connect-btn {
    background-color: #0075FF;
    border: none;
    border-radius: 2.29vw;
    padding: 1.2vh 2.5vw;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 0.83vw;
    line-height: 1em;
    color: #FFFFFF;
    cursor: pointer;
    box-shadow: 0px 3.5px 5.5px rgba(0, 0, 0, 0.02);
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4.5vh;
    margin-top: 1vh;
}

.popup-connect-btn:hover {
    background-color: #0066DD;
}

.sidebar {
    width: 13.75vw;
    height: 100vh;
    background-color: #161616;
    display: flex;
    flex-direction: column;
    padding: 2.44vh 1.15vw;
    box-shadow: 0px 0px 120px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(120px);
    gap: 2.6vh;
    flex-shrink: 0;
}
.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 1.04vw;
    padding-left: 2.29vw;
    margin-bottom: 2vh
}
.logo-img {
    width: 1.67vw;
    height: 1.67vw;
    border-radius: 50%;
    object-fit: cover;
}
.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 0.73vw;
    line-height: 1em;
    color: #FFFFFF;
    white-space: nowrap;
}
.sidebar-search {
    width: 100%;
    padding: 0 0.83vw;
    display: none;
}
.sidebar-search .search-input-wrapper {
    padding-left: 0.52vw;
}
.search-input-wrapper {
    display: flex;
    align-items: center;
    background-color: #242424;
    border: 0.026vw solid rgba(226, 232, 240, 0.3);
    border-radius: 2.29vw;
    padding: 0.21vw 0.31vw;
    height: 3.14vh;
    width: 100%;
}
.search-icon {
    width: 0.78vw;
    height: 0.78vw;
    background: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 13.5L10.5 10.5M12 6.75C12 9.6495 9.6495 12 6.75 12C3.8505 12 1.5 9.6495 1.5 6.75C1.5 3.8505 3.8505 1.5 6.75 1.5C9.6495 1.5 12 3.8505 12 6.75Z' stroke='%232D3748' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    margin-right: 0.31vw;
}
.sidebar-search .search-input-wrapper {
    background-color: #242424;
    border: 0.026vw solid rgba(226, 232, 240, 0.3);
}
.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #A0AEC0;
    font-family: 'Plus Jakarta Display', sans-serif;
    font-weight: 400;
    font-size: 0.625vw;
    line-height: 1.5em;
}
.search-input::placeholder {
    color: #A0AEC0;
}
.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 2.36vh;
    padding: 0 0.83vw;
    flex: 1;
    overflow-y: auto;
}
.menu-item {
    background-color: transparent;
    border-radius: 2.29vw;
    padding: 1.26vh 0 1.26vh 2.5vw;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 0.85vw;
    line-height: 1em;
    color: #8A8A8A;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}
.menu-item.active {
    background-color: #242424;
    color: #FFFFFF;
    box-shadow: 0px 3.5px 5.5px rgba(0, 0, 0, 0.02);
    height: 4.25vh;
    padding-left: 2.5vw;
}
.menu-item:hover {
    color: #FFFFFF;
}
.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}

@media (max-width: 768px) {
    .content-wrapper {
        overflow-x: hidden;
        overflow-y: visible;
    }
}
.header {
    width: 100%;
    height: 6.92vh;
    background-color: #1B1B1B;
    border: 0.026vw solid #2F2F2F;
    box-shadow: 0px 0px 120px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(120px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.67vw;
    flex-shrink: 0;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 0.83vw;
}
.nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 0.73vw;
    line-height: 1em;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-link:hover {
    opacity: 0.8;
}
.header-center {
    display: flex;
    align-items: center;
    gap: 0.83vw;
    flex: 1;
    justify-content: center;
}
.header-search {
    width: 11.46vw;
}
.header-search .search-input-wrapper {
    height: 3.14vh;
    display: flex;
    align-items: center;
}
.sol-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.73vw;
    background-color: #242424;
    border: 0.052vw solid rgba(226, 232, 240, 0.3);
    border-radius: 5.21vw;
    padding: 0.69vh 1.15vw;
    height: 3.77vh;
    cursor: pointer;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 0.83vw;
}
.sol-icon-img {
    width: 1.04vw;
    height: 0.91vh;
    display: block;
    flex-shrink: 0;
}
.sol-arrow {
    width: 0.65vw;
    height: 0.32vh;
    display: block;
    flex-shrink: 0;
}
.sol-selector span {
    font-family: 'Plus Jakarta Display', sans-serif;
    font-weight: 400;
    font-size: 0.73vw;
    line-height: 1.5em;
    color: #A0AEC0;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.icon-button {
    width: 1.25vw;
    height: 1.25vw;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.icon-button img {
    width: 100%;
    height: 100%;
    display: block;
}
.connect-wallet-btn {
    background-color: #0075FF;
    border: none;
    border-radius: 2.29vw;
    padding: 1vh 1.25vw;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 0.73vw;
    line-height: 1em;
    color: #FFFFFF;
    cursor: pointer;
    box-shadow: 0px 3.5px 5.5px rgba(0, 0, 0, 0.02);
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.14vh;
}
.connect-wallet-btn:hover {
    background-color: #0066DD;
}
.main-content {
    flex: 1;
    padding: 1.88vh 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.88vh;
    overflow-y: auto;
    width: 100%;
}

@media (max-width: 768px) {
    .main-content {
        overflow-y: visible !important;
        overflow-x: hidden !important;
    }
}
.content-inner {
    width: 100%;
    padding: 0 1vw;
    display: flex;
    flex-direction: column;
    gap: 0.88vh;
    overflow: visible;
}
.analytics-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.04vw;
    margin-bottom: 0.88vh;
    width: 100%;
}
.analytics-card {
    height: 8vh;
    background-color: #181818;
    border: 0.052vw solid #2F2F2F;
    border-radius: 1.04vw;
    box-shadow: 0px 0px 120px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(120px);
    display: flex;
    align-items: center;
    padding: 0.71vh 0.625vw;
    position: relative;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: scale(1);
}
.analytics-card[style*="display: none"] {
    opacity: 0;
    transform: scale(0.95);
}
.token-image {
    width: 3.23vw;
    height: 3.23vw;
    border-radius: 0.625vw;
    object-fit: cover;
    flex-shrink: 0;
}
.token-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.94vw;
    line-height: 1.4em;
    color: #FFFFFF;
    position: absolute;
    left: 4.48vw;
    top: 1.49vh;
}
.token-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 0.52vw;
    line-height: 1em;
    color: #FFFFFF;
    position: absolute;
    right: 1.1vw;
    top: 1.69vh;
}
.token-change {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.6vw;
    line-height: 1.4em;
    color: #01B574;
    position: absolute;
    right: 1.1vw;
    top: 3.18vh;
}
.token-time {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 0.52vw;
    line-height: 1.4em;
    color: #01B574;
    position: absolute;
    left: 4.48vw;
    bottom: 1.34vh;
}
.token-chart {
    position: absolute;
    left: 11.04vw;
    top: 0.79vh;
    width: 4.43vw;
    height: 4.72vh;
    object-fit: contain;
}
.main-section {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.04vw;
    margin-bottom: 0.88vh;
    width: 100%;
}

@media (max-width: 768px) {
    .main-section {
        display: flex;
        flex-direction: column;
        grid-template-columns: none;
    }
}
.chart-card {
    height: 70vh;
    background-color: #181818;
    border: 0.026vw solid #2F2F2F;
    border-radius: 1.04vw;
    box-shadow: 0px 0px 120px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(120px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2vh 1.25vw;
    border-bottom: 1px solid #2F2F2F;
}
.chart-header-left {
    display: flex;
    align-items: center;
    gap: 0.625vw;
}
.chart-avatar {
    width: 2.5vw;
    height: 2.5vw;
    border-radius: 50%;
    object-fit: cover;
}
.chart-token-info {
    display: flex;
    flex-direction: column;
    gap: 0.2vh;
}
.chart-token-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.94vw;
    color: #FFFFFF;
}
.chart-token-pair {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 0.625vw;
    color: #A8A8A8;
}
.chart-header-right {
    display: flex;
    align-items: center;
    gap: 0.625vw;
}
.chart-ctrl-icon {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.4vh 0.4vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chart-ctrl-icon img {
    width: 1.98vw;
    height: auto;
    object-fit: contain;
}
.chart-ctrl-icon:hover {
    opacity: 0.7;
}
.chart-price-info {
    display: flex;
    align-items: baseline;
    gap: 0.5vw;
}
.chart-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.94vw;
    color: #FFFFFF;
}
.chart-change {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 0.73vw;
    color: #01B574;
}
.chart-change.positive {
    color: #01B574;
}
.chart-change.negative {
    color: #C4183C;
}
.chart-time {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 0.52vw;
    color: #A8A8A8;
}
.chart-sol-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 0.625vw;
    color: #A8A8A8;
}
.chart-audit-badge {
    display: flex;
    align-items: center;
    gap: 0.3vw;
    background-color: #FFB800;
    padding: 0.4vh 0.625vw;
    border-radius: 0.52vw;
    margin-left: 0.625vw;
}
.audit-icon {
    font-size: 0.73vw;
}
.audit-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.625vw;
    color: #000000;
}
.chart-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8vh 1.25vw;
    border-bottom: 1px solid #2F2F2F;
}
.chart-toolbar-left,
.chart-toolbar-center,
.chart-toolbar-right {
    display: flex;
    align-items: center;
    gap: 0.5vw;
}
.toolbar-btn {
    background: transparent;
    border: none;
    padding: 0.5vh 0.625vw;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.73vw;
    color: #A7A8AD;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3vw;
    transition: all 0.2s;
    border-radius: 0.21vw;
}
.toolbar-btn img {
    width: 1.46vw;
    height: 1.46vw;
    object-fit: contain;
}
.toolbar-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
}
.toolbar-btn.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}
.toolbar-switch {
    background: transparent;
    border: none;
    padding: 0.5vh 0.625vw;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.73vw;
    color: #A7A8AD;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 0.21vw;
}
.toolbar-switch:hover {
    background-color: rgba(255, 255, 255, 0.05);
}
.toolbar-switch.active {
    color: #00B8D8;
    background-color: rgba(0, 184, 216, 0.1);
}
.chart-max-min {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.73vw;
}
.chart-max-min.max {
    color: rgba(40, 167, 69, 0.89);
}
.chart-max-min.min {
    color: rgba(196, 24, 60, 0.91);
}
.toolbar-icon-btn {
    background: transparent;
    border: none;
    padding: 0.5vh 0.4vw;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.2s;
}
.toolbar-icon-btn img {
    width: 1.93vw;
    height: auto;
    object-fit: contain;
}
.toolbar-icon-btn:hover {
    opacity: 1;
}
.chart-container-wrapper {
    flex: 1;
    display: flex;
    position: relative;
    min-height: 0;
}
.chart-left-toolbar {
    width: 2.5vw; 
    background-color: #1a1a1a;
    border-right: 1px solid #2F2F2F;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8vh 0;
    gap: 0.1vh;
}
.left-tool-btn {
    background: transparent;
    border: none;
    color: #A7A8AD;
    font-size: 0.9em;
    padding: 0.6vh 0;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.left-tool-btn img {
    width: 1.46vw;
    height: 1.46vw;
    object-fit: contain;
    opacity: 0.7;
}
.left-tool-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.left-tool-btn:hover img {
    opacity: 1;
}
.toolbar-divider {
    width: 2vw;
    height: 1px;
    background-color: #434651;
    margin: 0.3vh 0.75vw;
}
.chart-main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.chart-info-bar {
    padding: 0.8vh 1vw;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.68vw;
    color: #A7A8AD;
    display: flex;
    align-items: center;
    gap: 0.4vw;
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(67, 70, 81, 0.3);
}
.info-text {
    color: #A7A8AD;
}
.info-dot {
    color: #D1D4DC;
}
.info-label {
    color: #A7A8AD;
}
.info-value {
    color: #089981;
}
.info-value-green {
    color: #22AB94;
}
.chart-canvas {
    flex: 1;
    position: relative;
    min-height: 0;
}
.tradingview-widget-container {
    flex: 1;
    width: 100%;
    height: 100%;
    min-width: 0;
    position: relative;
    overflow: hidden;
}
#tradingview-widget {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.chart-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8vh 1.25vw;
    border-top: 1px solid #2F2F2F;
}
.chart-bottom-left,
.chart-bottom-right {
    display: flex;
    align-items: center;
    gap: 0.3vw;
}
.timeframe-btn {
    background: transparent;
    border: none;
    padding: 0.5vh 0.4vw;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.73vw;
    color: #A7A8AD;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 0.21vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.timeframe-btn img {
    width: 1.46vw;
    height: 1.46vw;
    object-fit: contain;
}
.timeframe-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}
.chart-timezone {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.73vw;
    color: #A7A8AD;
}
.divider {
    color: #434651;
    margin: 0 0.5vw;
}
.bottom-toggle-btn {
    background: transparent;
    border: none;
    padding: 0.5vh 0.4vw;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.73vw;
    color: #A7A8AD;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 0.21vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bottom-toggle-btn img {
    width: 0.73vw;
    height: 0.73vw;
    object-fit: contain;
}
.bottom-toggle-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
}
.bottom-toggle-btn.active {
    color: #2962FF;
    background-color: rgba(41, 98, 255, 0.1);
}
.updates-card {
    height: 70vh;
    background-color: #181818;
    border: 0.026vw solid #2F2F2F;
    border-radius: 1.04vw;
    box-shadow: 0px 0px 120px rgba(0, 0, 0, 0.5);
    padding: 1.5vh 1.25vw;
    display: flex;
    flex-direction: column;
}
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.08vh;
}
.card-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.94vw;
    line-height: 1.4em;
    color: #FFFFFF;
}
.tabs {
    display: flex;
    gap: 0.52vw;
}
.tab {
    background-color: #151515;
    border: 0.026vw solid rgba(226, 232, 240, 0.3);
    border-radius: 2.29vw;
    padding: 1vh 1.25vw;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 0.73vw;
    line-height: 1em;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s;
}
.tab.active {
    background-color: #FFFFFF;
    color: #181818;
}
.updates-search {
    margin-bottom: 1.57vh;
}
.updates-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.57vh;
    overflow-y: auto;
}
.update-item {
    display: flex;
    flex-direction: column;
    gap: 0.16vh;
    padding-bottom: 1.57vh;
    border-bottom: 0.052vw solid rgba(226, 232, 240, 0.1);
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease, margin-bottom 0.3s ease, padding-bottom 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 0;
}

.update-item.new-update {
    opacity: 0;
    transform: translateY(-20px);
    animation: slideInFromTop 0.5s ease forwards;
}

.update-item.removing-update {
    opacity: 0;
    transform: translateY(20px);
    max-height: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    overflow: hidden;
    border-bottom: none;
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.update-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.83vw;
    line-height: 1.4em;
    color: #FFFFFF;
}
.update-content {
    font-family: 'Plus Jakarta Display', sans-serif;
    font-weight: 400;
    font-size: 0.73vw;
    line-height: 1.5em;
    color: #A0AEC0;
}
.update-time {
    font-family: 'Plus Jakarta Display', sans-serif;
    font-weight: 400;
    font-size: 0.625vw;
    line-height: 1.5em;
    color: #A0AEC0;
    text-align: right;
}
.sentiment-card {
    width: 100%;
    height: 35vh !important;
    background-color: #181818;
    border: 0.026vw solid #2F2F2F;
    border-radius: 1.04vw;
    box-shadow: 0px 0px 120px rgba(0, 0, 0, 0.5);
    padding: 1.5vh 1.25vw;
    display: flex;
    flex-direction: column;
    overflow: visible;
    box-sizing: border-box;
}

@media (min-width: 769px) {
    .sentiment-card {
        height: 35vh !important;
    }
}
.sentiment-card h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.94vw;
    line-height: 1.4em;
    color: #FFFFFF;
    margin-bottom: 1.57vh;
    white-space: nowrap;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
}
.sentiment-table {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.table-header {
    display: grid;
    grid-template-columns: 5.5vw 8.13vw 8.44vw 7.19vw 9.58vw 6.98vw 1fr;
    gap: 1.04vw;
    padding: 1.57vh 2.08vw;
    background-color: #242424;
    border: 0.052vw solid rgba(226, 232, 240, 0.3);
    border-radius: 0.625vw;
    margin-bottom: 1.05vh;
}
.table-header .table-cell {
    font-family: 'Plus Jakarta Display', sans-serif;
    font-weight: 400;
    font-size: 0.73vw;
    line-height: 1.5em;
    color: #A0AEC0;
}
.table-row {
    display: grid;
    grid-template-columns: 5.5vw 8.13vw 8.44vw 7.19vw 9.58vw 6.98vw 1fr;
    gap: 1.04vw;
    padding: 1.05vh 2.08vw;
    align-items: center;
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.table-row.new-row {
    opacity: 0;
    transform: translateY(-20px);
    animation: slideInFromTop 0.5s ease forwards;
}

.table-row.removing-row {
    opacity: 0;
    transform: translateY(20px);
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    overflow: hidden;
}
.table-row .table-cell {
    font-family: 'Plus Jakarta Display', sans-serif;
    font-weight: 400;
    font-size: 0.73vw;
    line-height: 1.5em;
    color: #A0AEC0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.shift-indicator {
    display: inline-block;
    width: 0.31vw;
    height: 0.31vw;
    border-radius: 50%;
    margin-right: 0.21vw;
}
.shift-indicator.green {
    background-color: #70EF50;
}
.shift-indicator.orange {
    background-color: #EFAD50;
}
.shift-indicator.red {
    background-color: #EF5350;
}
::-webkit-scrollbar {
    width: 0.52vw;
}
::-webkit-scrollbar-track {
    background: #1C1C1C;
}
::-webkit-scrollbar-thumb {
    background: #2F2F2F;
    border-radius: 0.26vw;
}
::-webkit-scrollbar-thumb:hover {
    background: #434651;
}

.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 2vh;
    left: 4vw;
    z-index: 1001;
    background-color: #242424;
    border: 1px solid #2F2F2F;
    border-radius: 0.5vw;
    padding: 1.5vh 2vw;
    cursor: pointer;
    box-shadow: 0px 3.5px 5.5px rgba(0, 0, 0, 0.02);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .mobile-menu-btn {
        display: block;
        top: 2vh;
        left: 4vw;
        padding: 1.5vh 3vw;
        border-radius: 1vw;
        z-index: 1001;
    }
    
    .mobile-overlay {
        display: block;
    }
    
    .sidebar {
        position: fixed;
        left: -100%;
        top: 0;
        width: 70vw;
        max-width: 280px;
        height: 100vh;
        z-index: 1000;
        transition: left 0.3s ease;
        padding: 3vh 4vw;
        gap: 3vh;
    }
    
    .sidebar.mobile-open {
        left: 0;
    }
    
    .sidebar-logo {
        padding-left: 0;
        margin-bottom: 2vh;
        gap: 2vw;
    }
    
    .logo-img {
        width: 8vw;
        height: 8vw;
        min-width: 32px;
        min-height: 32px;
    }
    
    .logo-text {
        font-size: clamp(14px, 4vw, 18px);
    }
    
    .sidebar-menu {
        gap: 2vh;
        padding: 0;
    }
    
    .menu-item {
        padding: 2vh 4vw;
        font-size: clamp(14px, 3.5vw, 16px);
        border-radius: 4vw;
        height: auto;
        min-height: 44px;
    }
    
    .menu-item.active {
        padding-left: 4vw;
        height: auto;
        min-height: 44px;
    }
    
    .content-wrapper {
        width: 100%;
        min-height: 100vh;
        overflow-x: hidden !important;
        overflow-y: visible !important;
    }
    
    .header {
        height: auto;
        min-height: auto;
        padding: 1.5vh 3vw;
        flex-direction: column;
        gap: 1.5vh;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        position: relative;
    }
    
    .header-nav {
        display: none;
    }
    
    .header-center {
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2vw;
        justify-content: space-between;
        box-sizing: border-box;
    }
    
    .header-search {
        flex: 1;
        min-width: 0;
        max-width: none;
        box-sizing: border-box;
    }
    
    .header-search .search-input-wrapper {
        height: 44px;
        padding: 0 3vw;
        width: 100%;
    }
    
    .search-icon {
        width: 4.5vw;
        height: 4.5vw;
        min-width: 18px;
        min-height: 18px;
        margin-right: 2.5vw;
    }
    
    .search-input {
        font-size: clamp(14px, 3.8vw, 16px);
    }
    
    .sol-selector {
        padding: 1.2vh 2.5vw;
        height: 44px;
        gap: 1.5vw;
        border-radius: 22px;
        min-width: 70px;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .sol-icon-img {
        width: 5.5vw;
        height: 5.5vw;
        min-width: 22px;
        min-height: 20px;
    }
    
    .sol-arrow {
        width: 3.5vw;
        height: 2.5vh;
        min-width: 14px;
        min-height: 8px;
    }
    
    .sol-selector span {
        font-size: clamp(13px, 3.5vw, 15px);
    }
    
    .header-right {
        order: 2;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .icon-button {
        width: 7vw;
        height: 7vw;
        min-width: 32px;
        min-height: 32px;
        flex-shrink: 0;
    }
    
    .icon-button img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .connect-wallet-btn {
        padding: 1.2vh 3.5vw;
        font-size: clamp(13px, 3.5vw, 15px);
        height: 44px;
        border-radius: 22px;
        flex: 1;
        min-width: 120px;
        max-width: none;
        white-space: nowrap;
    }
    
    .main-content {
        padding: 2vh 0 0 0;
        gap: 2vh;
        width: 100%;
        overflow-x: hidden;
        overflow-y: visible;
        box-sizing: border-box;
    }
    
    .content-inner {
        padding: 0 4vw;
        gap: 2vh;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .analytics-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5vw;
        margin-bottom: 2vh;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .analytics-card {
        height: auto;
        min-height: 90px;
        padding: 2.5vh 2.5vw;
        border-radius: 2.5vw;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2vw;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        position: relative;
    }
    
    .analytics-card .token-image {
        width: 12vw;
        height: 12vw;
        min-width: 48px;
        min-height: 48px;
        max-width: 56px;
        max-height: 56px;
        border-radius: 2vw;
        object-fit: cover;
        flex-shrink: 0;
        position: static !important;
        left: auto !important;
        top: auto !important;
        order: 1;
    }
    
    .analytics-card .token-name {
        font-size: clamp(13px, 3.5vw, 15px);
        font-weight: 700;
        color: #FFFFFF;
        line-height: 1.3;
        margin: 0;
        position: static !important;
        left: auto !important;
        top: auto !important;
        bottom: auto !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex: 0 0 auto;
        max-width: 25vw;
        order: 2;
    }
    
    .analytics-card .token-time {
        font-size: clamp(10px, 2.5vw, 11px);
        font-weight: 500;
        color: #01B574;
        line-height: 1.3;
        margin: 0;
        position: static !important;
        left: auto !important;
        top: auto !important;
        bottom: auto !important;
        flex: 0 0 auto;
        order: 3;
        margin-left: 1vw;
    }
    
    .analytics-card .token-chart {
        width: auto;
        max-width: 22vw;
        min-width: 60px;
        height: 40px;
        min-height: 40px;
        object-fit: contain;
        flex: 0 1 auto;
        position: static !important;
        left: auto !important;
        top: auto !important;
        margin: 0;
        order: 4;
        margin-left: auto;
        margin-right: 1.5vw;
    }
    
    .analytics-card .token-price {
        font-size: clamp(14px, 3.8vw, 16px);
        font-weight: 600;
        color: #FFFFFF !important;
        line-height: 1.2;
        margin: 0;
        position: static !important;
        right: auto !important;
        top: auto !important;
        left: auto !important;
        bottom: auto !important;
        white-space: nowrap;
        text-align: right;
        flex: 0 0 auto;
        min-width: 75px;
        max-width: 90px;
        overflow: hidden;
        text-overflow: ellipsis;
        order: 5;
        display: block;
        padding-right: 1vw;
        box-sizing: border-box;
    }
    
    .analytics-card .token-change {
        font-size: clamp(11px, 3vw, 13px);
        font-weight: 700;
        line-height: 1.3;
        margin: 0;
        position: static !important;
        right: auto !important;
        top: auto !important;
        left: auto !important;
        bottom: auto !important;
        white-space: nowrap;
        text-align: right;
        flex: 0 0 auto;
        min-width: 65px;
        max-width: 85px;
        overflow: hidden;
        text-overflow: ellipsis;
        order: 6;
        display: block;
        padding-right: 1vw;
        box-sizing: border-box;
    }
    
    .analytics-card > * {
        position: static !important;
    }
    
    .analytics-card .token-price,
    .analytics-card .token-change {
        color: #FFFFFF !important;
    }
    
    .analytics-card .token-change[style*="color"] {
        color: inherit !important;
    }
    
    
    .main-section {
        display: flex;
        flex-direction: column;
        gap: 2vh;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .chart-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 400px;
        padding: 2vh 3vw;
        border-radius: 2vw;
        box-sizing: border-box;
        flex-shrink: 0;
        flex-grow: 0;
        order: 1;
        display: flex;
        flex-direction: column;
    }
    
    .chart-card > * {
        flex-shrink: 0;
    }
    
    .chart-header {
        flex-direction: column;
        gap: 1.5vh;
        padding: 2vh 3vw;
        border-bottom: 1px solid #2F2F2F;
    }
    
    .chart-header-left {
        width: 100%;
        gap: 2vw;
        align-items: center;
    }
    
    .chart-avatar {
        width: 12vw;
        height: 12vw;
        min-width: 48px;
        min-height: 48px;
        flex-shrink: 0;
    }
    
    .chart-token-title {
        font-size: clamp(18px, 5vw, 22px);
        font-weight: 700;
    }
    
    .chart-token-pair {
        font-size: clamp(12px, 3vw, 14px);
        color: #A0AEC0;
    }
    
    .chart-header-right {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 2vw;
        align-items: center;
    }
    
    .chart-ctrl-icon {
        width: 10vw;
        height: 10vw;
        min-width: 44px;
        min-height: 44px;
        padding: 1.5vw;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .chart-ctrl-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        min-width: 24px;
        min-height: 24px;
    }
    
    .chart-price-info {
        width: 100%;
        flex-direction: column;
        gap: 1vh;
        align-items: flex-start;
    }
    
    .chart-price {
        font-size: clamp(20px, 6vw, 24px);
        font-weight: 700;
        line-height: 1.2;
    }
    
    .chart-change {
        font-size: clamp(14px, 4vw, 16px);
        font-weight: 600;
    }
    
    .chart-time {
        font-size: clamp(11px, 2.5vw, 12px);
        color: #A0AEC0;
    }
    
    .chart-toolbar {
        flex-direction: column;
        gap: 1.5vh;
        padding: 1.5vh 3vw;
        overflow-x: hidden;
        border-bottom: 1px solid rgba(47, 47, 47, 0.5);
    }
    
    .chart-toolbar-left {
        display: none;
    }
    
    .chart-toolbar-center {
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
        gap: 1.5vw;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 1vh;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
        flex-wrap: wrap;
    }
    
    .chart-toolbar-center::-webkit-scrollbar {
        height: 2px;
    }
    
    .chart-toolbar-right {
        display: none;
    }
    
    .toolbar-btn {
        padding: 1.2vh 2.5vw;
        font-size: clamp(12px, 3vw, 14px);
        min-width: 40px;
        height: 36px;
        border-radius: 1.5vw;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .toolbar-switch {
        padding: 1.2vh 2.5vw;
        font-size: clamp(11px, 2.5vw, 12px);
        min-width: auto;
        height: 36px;
        border-radius: 1.5vw;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .chart-max-min {
        display: none;
    }
    
    .chart-container-wrapper {
        flex-direction: column;
        height: auto;
        min-height: 300px;
    }
    
    .chart-left-toolbar {
        display: none;
    }
    
    .chart-main-wrapper {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 300px;
        flex-shrink: 0;
        box-sizing: border-box;
    }
    
    .chart-info-bar {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5vw;
        padding: 1.5vh 3vw;
        font-size: clamp(9px, 2.2vw, 11px);
        line-height: 1.6;
        overflow-x: hidden;
        border-bottom: 1px solid rgba(47, 47, 47, 0.3);
    }
    
    .chart-info-bar .info-text {
        flex-shrink: 0;
    }
    
    .chart-info-bar .info-dot {
        flex-shrink: 0;
    }
    
    .chart-info-bar .info-label {
        flex-shrink: 0;
        font-weight: 600;
    }
    
    .chart-info-bar .info-value {
        flex-shrink: 0;
    }
    
    .chart-info-bar .info-value-green {
        flex-shrink: 0;
    }
    
    .chart-canvas {
        height: 350px;
        min-height: 350px;
        width: 100%;
        max-width: 100%;
        flex-shrink: 0;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .chart-canvas img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
    
    .chart-bottom-bar {
        flex-direction: column;
        gap: 1.5vh;
        padding: 1.5vh 3vw;
        border-top: 1px solid rgba(47, 47, 47, 0.5);
    }
    
    .chart-bottom-left {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 1.5vw;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5vh;
    }
    
    .chart-bottom-left::-webkit-scrollbar {
        height: 2px;
    }
    
    .chart-bottom-right {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 2vw;
        align-items: center;
    }
    
    .timeframe-btn {
        padding: 1vh 2.5vw;
        font-size: clamp(11px, 2.5vw, 12px);
        min-width: 36px;
        height: 32px;
        border-radius: 1.5vw;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .chart-timezone {
        font-size: clamp(9px, 2.2vw, 11px);
        color: #A0AEC0;
        flex-shrink: 0;
    }
    
    .bottom-toggle-btn {
        padding: 1vh 2.5vw;
        font-size: clamp(11px, 2.5vw, 12px);
        min-width: 36px;
        height: 32px;
        border-radius: 1.5vw;
        flex-shrink: 0;
    }
    
    .divider {
        display: none;
    }
    
    .updates-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 300px;
        padding: 2vh 3vw;
        border-radius: 2vw;
        box-sizing: border-box;
        flex-shrink: 0;
        flex-grow: 0;
        order: 2;
        display: flex;
        flex-direction: column;
    }
    
    .updates-card > * {
        flex-shrink: 0;
    }
    
    .card-header {
        flex-direction: column;
        gap: 2vh;
        margin-bottom: 2vh;
    }
    
    .card-header h2 {
        font-size: 4vw;
        font-size: clamp(16px, 4vw, 18px);
    }
    
    .tabs {
        width: 100%;
        justify-content: flex-start;
        gap: 2vw;
        overflow-x: auto;
    }
    
    .tab {
        padding: 1.5vh 4vw;
        font-size: clamp(14px, 3.5vw, 16px);
        min-width: 80px;
        height: 44px;
        white-space: nowrap;
    }
    
    .updates-search {
        margin-bottom: 2vh;
    }
    
    .updates-search .search-input-wrapper {
        height: 44px;
        padding: 0 3vw;
    }
    
    .updates-list {
        gap: 2vh;
        flex: 1;
        overflow-y: auto;
        min-height: 200px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .update-item {
        padding: 2vh 3vw;
        border-radius: 2vw;
        gap: 1vh;
    }
    
    .update-title {
        font-size: clamp(14px, 3.5vw, 16px);
    }
    
    .update-content {
        font-size: clamp(14px, 3.5vw, 16px);
    }
    
    .update-time {
        font-size: 3vw;
        font-size: clamp(12px, 3vw, 14px);
    }
    
    .sentiment-card {
        width: 100%;
        height: auto;
        min-height: 300px;
        padding: 2vh 3vw;
        border-radius: 2vw;
    }
    
    .sentiment-card h2 {
        font-size: 4vw;
        font-size: clamp(16px, 4vw, 18px);
        margin-bottom: 2vh;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 1vh;
        padding: 2vh 3vw;
        border-radius: 2vw;
    }
    
    .table-header {
        display: none;
    }
    
    .table-row {
        flex-direction: column;
        border: 1px solid #2F2F2F;
        margin-bottom: 2vh;
        background-color: #242424;
    }
    
    .table-row .table-cell {
        display: flex;
        justify-content: space-between;
        padding: 1vh 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: clamp(14px, 3.5vw, 16px);
        white-space: normal;
    }
    
    .table-row .table-cell:last-child {
        border-bottom: none;
    }
    
    .table-row .table-cell::before {
        content: attr(data-label);
        font-weight: 600;
        color: #FFFFFF;
        margin-right: 2vw;
    }
    
    .shift-indicator {
        width: 2vw;
        height: 2vw;
        min-width: 8px;
        min-height: 8px;
        margin-right: 1vw;
    }
    
    .popup {
        min-width: 80vw;
        max-width: 90vw;
        min-height: auto;
        padding: 4vh 5vw;
        border-radius: 3vw;
        gap: 3vh;
    }
    
    .popup-title {
        font-size: clamp(18px, 5vw, 22px);
    }
    
    .popup-text {
        font-size: clamp(14px, 3.8vw, 16px);
        max-width: 100%;
    }
    
    .popup-connect-btn {
        font-size: clamp(14px, 3.8vw, 16px);
        padding: 1.5vh 5vw;
        min-height: 48px;
        border-radius: 24px;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .analytics-cards {
        grid-template-columns: 1fr;
        gap: 2vh;
    }
    
    .chart-canvas {
        height: 250px;
        min-height: 250px;
    }
    
    .chart-toolbar-left,
    .chart-toolbar-center,
    .chart-toolbar-right {
        gap: 1.5vw;
    }
    
    .toolbar-btn {
        padding: 1.5vh 2.5vw;
        font-size: 3vw;
        font-size: clamp(12px, 3vw, 14px);
    }
}
