body {
    background-color: #0a0a0a;
    color: #e5e5e5;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.card {
    background-color: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card:hover {
    transform: translateY(-5px);
    border-color: #0284c7;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(2, 132, 199, 0.1);
    color: #38bdf8;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}
.tradingview-widget-container {
    height: 400px;
    border-radius: 0.5rem;
    overflow: hidden;
}
.post-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.75;
}
.post-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #f9f9f9;
}
.post-content p {
    margin-bottom: 1.5rem;
    color: #d4d4d4;
}
.post-content code {
    font-family: 'Roboto Mono', monospace;
    background-color: rgba(55, 65, 81, 0.5);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: #121212;
    z-index: 1000;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}
.mobile-menu.active {
    transform: translateX(0);
}
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 999;
}
.mobile-menu-overlay.active {
    display: block;
}

/* Improved spacing for Research Insights */
#blog .card {
    margin-bottom: 1.5rem;
}

#blog .grid {
    gap: 1.5rem;
}

/* Desktop-like mobile view */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .tradingview-widget-container {
        height: 300px;
    }
    
    /* Force desktop-like layout on mobile */
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .grid-cols-1, .grid-cols-2, .grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    .card {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}










/* Tambahkan class untuk filter button */
.filter-btn {
    background-color: #1e293b;
    color: #cbd5e1;
    border: none;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #0ea5e9;
    color: white;
}

/* Chart container */
.chart-container {
    position: relative;
    height: 100%;
}

/* Desktop-like mobile view */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .grid-cols-1, .grid-cols-2, .grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    .card {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .chart {
        height: 250px !important;
    }
}
