#wrapper, #container, #container_wr, #content, .container, .wrapper, .inner {
    padding: 0 !important; margin: 0 !important; max-width: 100% !important;
    width: 100% !important; border: none !important; box-shadow: none !important;
}
body {
    background-color: #0f172a !important; 
    color: #f8fafc;
    font-family: 'Pretendard', sans-serif;
    padding: 0 !important; 
    margin: 0 !important; 
    overflow-x: hidden;
    box-sizing: border-box;
}
*, *::before, *::after { box-sizing: inherit; }

.main-wrapper { padding: 40px 50px; }

.top-brand-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 45px; 
    letter-spacing: 8px; 
    color: #0ea5e9;
    margin-bottom: 5px; 
    font-weight: 900;
    display: flex; 
    align-items: center; 
    gap: 15px; 
    padding-left: 20px;
    text-transform: uppercase;
}
.top-brand-title::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(to right, rgba(14,165,233,0.5), transparent);
}

.energy-card {
    background: #1a1f3a; 
    border: 1px solid #2a3458;
    border-radius: 4px; 
    padding: 40px; 
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    width: 100%; 
    position: relative; 
    overflow: hidden; 
    backdrop-filter: blur(10px);
}

.card-header {
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start;
    flex-wrap: wrap; 
    gap: 20px;
}

.coin-title-row {
    display: flex; 
    align-items: center; 
    gap: 14px;
}
.coin-title { font-size: 22px; font-weight: 900; letter-spacing: -0.5px; color: #fff; }

.live-indicator {
    width: 10px; 
    height: 10px; 
    background: #0ea5e9; 
    border-radius: 50%;
    animation: pulse-blue 2s infinite; flex-shrink: 0;
}
@keyframes pulse-blue {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.3; }
}

.search-container {
    display: flex; 
    align-items: center; 
    gap: 12px;
    background: #040b1b; 
    padding: 8px 10px 8px 20px;
    border-radius: 5px; 
    border: 1px solid #2a3458;
    width: fit-content;
    margin-bottom: 35px;
}
.search-input {
    height:35px;
    background: transparent; 
    border: none; 
    color: #fff; 
    outline: none;
    font-family: 'JetBrains Mono', monospace; 
    font-weight: 700; 
    font-size: 15px; 
    width: 140px;
}
.search-btn {
    background: #0486c2; 
    color: #fff; 
    padding: 5px 22px; 
    border-radius: 4px;
    font-weight: 900; 
    font-size: 14px; 
    cursor: pointer; 
    border: none;
    transition: background 0.2s, transform 0.2s; 
    text-transform: uppercase;
}
.search-btn:hover { background: #0284c7; transform: scale(1.02); }

.funding-box {
    background: rgba(0,0,0,0.4); 
    border: 1px solid #2a3458;
    padding: 24px; 
    border-radius: 5px; 
    text-align: right; 
    min-width: 280px;
}
.funding-box-label { 
    font-size: 11px; 
    font-weight: 900; 
    color: #64748b; 
    letter-spacing: 1px; 
    margin-bottom: 10px; 
}
.funding-box-val { font-family: 'JetBrains Mono', monospace; font-size: 36px; font-weight: 900; }
.funding-box-sub { font-size: 10px; color: #334155; margin-top: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }

.funding-viewport {
    width: 100%; 
    height: 130px; 
    background: #010409;
    border-radius: 6px; 
    overflow: hidden; 
    display: flex;
    border: 2px solid #1e293b; 
    margin: 10px 0;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.7);
}
.bar-short {
    height: 100%; background: linear-gradient(to right, #7f1d1d, #f43f5e);
    display: flex; align-items: center; justify-content: flex-start; padding-left: 35px;
    flex-shrink: 0;
}
.bar-long {
    height: 100%; background: linear-gradient(to left, #064e3b, #10b981);
    display: flex; align-items: center; justify-content: flex-end; padding-right: 35px;
    flex-shrink: 0;
}
.energy-label { font-family: 'JetBrains Mono', monospace; font-size: 40px; font-weight: 900; text-shadow: 0 4px 15px rgba(0,0,0,0.8); }

.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-box {
    background: rgba(2,6,23,0.4); 
    border: 1px solid #2a3458;
    padding: 10px 25px; 
    border-radius: 5px; 
    transition: background 0.3s, border-color 0.3s;
}
.stat-box:hover { background: rgba(2,6,23,0.6); border-color: rgba(14,165,233,0.2); }
.stat-box-center { text-align: center; }
.stat-box-right  { text-align: right; }

.stat-title { font-size: 12px; font-weight: 900; color: #64748b; letter-spacing: 1px; margin-bottom: 10px; }
.stat-val-lg  { 
    font-size: 18px; 
    font-weight: 900; 
}
.stat-val-xl  { 
    font-size: 18px; 
    font-weight: 900; 
}
.stat-val-timer { 
    font-family: 'JetBrains Mono', monospace; 
    font-size: 21px; 
    font-weight: 900; 
    color: #f59e0b; 
}

.card-footer {
    margin-top: 20px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05); 
    padding-top: 20px;
}
.refresh-btn {
    background: #040b1b; 
    color: #fff; 
    padding: 10px 18px;
    border-radius: 4px; 
    font-weight: 900; 
    font-size: 13px; 
    cursor: pointer;
    border: 1px solid #2a3458; 
    transition: background 0.2s, color 0.2s;
    display: flex; 
    align-items: center; 
    gap: 6px;
}
.refresh-btn:hover { 
    background: #0b1a3d; 
    color: #e2e8f0; 
}
.footer-time { 
    font-family: 'JetBrains Mono', monospace; 
    font-size: 10px; 
    color: #50627c; 
    font-weight: 700; 
    text-transform: uppercase; 
}