body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}

.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
}

.chart-container {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.chart-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.chart-box {
    flex: 1;
    min-height: 400px;
}

h2 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

@media (max-width: 768px) {
    .chart-row {
        flex-direction: column;
    }
}

.futures-premium-container {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.futures-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.premium-display {
    text-align: center;
    margin-bottom: 20px;
}

.premium-value {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
}

.premium-symbol {
    font-size: 24px;
    color: #666;
}

.premium-gauge {
    height: 8px;
    background: #eee;
    border-radius: 4px;
    position: relative;
    margin: 30px 0;
}

.gauge-fill {
    height: 100%;
    background: #28a745;
    border-radius: 4px;
    transition: width 0.3s ease, background-color 0.3s ease;
    width: 0%;
}

.gauge-markers {
    position: relative;
    height: 20px;
}

.marker {
    position: absolute;
    transform: translateX(-50%);
    font-size: 12px;
    color: #666;
}

.marker.danger {
    color: #dc3545;
}

.premium-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.detail-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.detail-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.detail-value {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.premium-alert {
    text-align: center;
    padding: 10px;
    margin: 15px 0;
    border-radius: 5px;
    display: none;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    display: block;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.tweets-container {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tweet {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.tweet:last-child {
    border-bottom: none;
}

.tweet-date {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.tweet-text {
    font-size: 14px;
    color: #333;
}

.tweets-list{
    display: flex;
    gap: 30px;
    justify-content: start;
}

.hidden{
    display: none;
}

.timeline-container {
    background: white;
    padding: 2rem 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin-bottom: 20px;
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-item {
    position: relative;
    padding: .5rem 0 .5rem 3rem;
    margin-left: 1rem;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: .75rem;
    height: 1rem;
    width: 1rem;
    background: #4a90e2;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #4a90e2;
}

.timeline-item:last-child {
    border-left: 2px solid transparent;
}

.timeline-number {
    font-weight: bold;
    color: #4a90e2;
    margin-right: 0.5rem;
}

.timeline-content {
    color: #2d3748;
    font-size: 1.1rem;
    line-height: 1.5;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #333;
    padding: 0.25rem 0;
    transition: transform 0.3s ease-in-out;
    transform: translateY(-100%);
    z-index: 1;
    max-width: 1400px;
}

nav.visible {
    transform: translateY(0);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: start;
    gap: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;

}

nav a:hover {
    background-color: #555;
}

section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-family: Arial, sans-serif;
}

section:nth-child(odd) {
    background-color: #f0f0f0;
}

section:nth-child(even) {
    background-color: #e0e0e0;
}

@media (max-width: 768px) {
    nav{
        display: none !important;
    }

}