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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    padding: 20px;
}

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

header {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    padding: 20px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
}

.chart-container {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 60vh;
    min-height: 500px;
    margin-bottom: 30px;
}

canvas {
    max-height: 100%;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin-top: 20px;
}

/* Catalysts Section */
.catalysts-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.catalysts-section h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 3px solid #22c55e;
    padding-bottom: 10px;
}

.catalyst-group {
    margin-bottom: 25px;
}

.catalyst-group:last-child {
    margin-bottom: 0;
}

.catalyst-group h3 {
    color: #22c55e;
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.catalyst-group ul {
    list-style: none;
    padding-left: 0;
}

.catalyst-group li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #555;
}

.catalyst-group li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.catalyst-group li strong {
    color: #333;
}

/* Info Feeds Section */
.info-feeds {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feed-section {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feed-section h2 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #22c55e;
    padding-bottom: 8px;
}

/* Twitter Feed */
.feed-container {
    min-height: 500px;
}

/* Link Grid */
.link-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.info-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #22c55e;
}

.link-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.link-content {
    flex: 1;
}

.link-title {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    margin-bottom: 4px;
}

.link-desc {
    font-size: 0.85rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .catalysts-section {
        order: 1;
    }

    .info-feeds {
        order: 2;
    }
}

@media (max-width: 768px) {
    .chart-container {
        padding: 15px;
        height: 50vh;
        min-height: 350px;
    }

    header h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .catalysts-section,
    .feed-section {
        padding: 15px;
    }

    .catalyst-group li {
        font-size: 0.9rem;
    }

    .link-grid {
        grid-template-columns: 1fr;
    }

    .feed-container {
        min-height: 400px;
    }
}
